/* =========================================================================
   Nordipack Shop — theme styles
   Tokens from the design handoff. Flat design: 1px borders, no shadows.
   ========================================================================= */

:root {
	--np-blue: #0416FF;
	--np-blue-hover: #0312CC;
	--np-pastel: #D3E4FF;
	--np-ice: #F8FBFF;
	--np-ink: #0F0F11;
	--np-white: #FFFFFF;
	--np-line: #E5E8F0;
	--np-line-strong: #C9CFDE;
	--np-muted: #667085;
	--np-muted-light: #98A0B3;
	--np-soft: #F7F9FD;
	--np-success: #157347;
	--np-error: #D64545;
	--np-ring: 0 0 0 3px #D3E4FF;
	--np-font: 'Poppins', Arial, sans-serif;
}

/* ---- Base ------------------------------------------------------------- */

html {
	color-scheme: light;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body.np {
	margin: 0;
	font-family: var(--np-font);
	font-size: 14px;
	line-height: 1.6;
	color: var(--np-ink);
	background: var(--np-white);
}

body.np img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* The hidden attribute must always win over component display rules
   (drawer uses display:flex, newsletter form display:grid, etc.). */
body.np [hidden] {
	display: none !important;
}

/* Low specificity on purpose: component rules (buttons, links) must win. */
a {
	color: inherit;
	text-decoration: none;
}

body.np a:focus-visible,
body.np button:focus-visible,
body.np input:focus-visible,
body.np select:focus-visible,
body.np textarea:focus-visible {
	outline: none;
	box-shadow: var(--np-ring);
	border-radius: 6px;
}

body.np h1,
body.np h2,
body.np h3,
body.np h4 {
	line-height: 1.2;
	font-weight: 600;
	margin: 0 0 12px;
}

body.np h1 {
	font-size: 42px;
	letter-spacing: -1.2px;
}

body.np h2 {
	font-size: 28px;
	letter-spacing: -0.5px;
}

body.np h3 {
	font-size: 17px;
}

.screen-reader-text {
	position: absolute !important;
	clip-path: inset(50%);
	width: 1px;
	height: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 999;
	clip-path: none;
	width: auto;
	height: auto;
	background: var(--np-white);
	border: 1px solid var(--np-line);
	padding: 10px 14px;
	border-radius: 6px;
}

.np-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 28px;
}

.np-container--narrow {
	max-width: 1240px;
}

/* ---- Buttons ----------------------------------------------------------- */

.np-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 18px;
	border-radius: 6px;
	font-family: var(--np-font);
	font-size: 14px;
	font-weight: 500;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color .15s, border-color .15s, color .15s;
}

.np-btn--primary {
	background: var(--np-blue);
	border-color: var(--np-blue);
	color: var(--np-white);
}

.np-btn--primary:hover {
	background: var(--np-blue-hover);
	border-color: var(--np-blue-hover);
	color: var(--np-white);
}

.np-btn--dark {
	background: var(--np-ink);
	border-color: var(--np-ink);
	color: var(--np-white);
}

.np-btn--dark:hover {
	background: var(--np-blue);
	border-color: var(--np-blue);
	color: var(--np-white);
}

.np-btn--secondary {
	background: var(--np-white);
	border-color: var(--np-ink);
	color: var(--np-ink);
}

.np-btn--secondary:hover {
	background: var(--np-ice);
}

.np-btn--ghost {
	background: var(--np-white);
	border-color: var(--np-line);
	color: var(--np-ink);
}

.np-btn--ghost:hover {
	border-color: var(--np-blue);
	color: var(--np-blue);
}

.np-btn--tall {
	height: 48px;
	font-size: 15px;
}

.np-btn:disabled {
	background: #C3C9D8;
	border-color: #C3C9D8;
	color: var(--np-white);
	cursor: not-allowed;
}

/* ---- Forms -------------------------------------------------------------- */

body.np input[type="text"],
body.np input[type="email"],
body.np input[type="tel"],
body.np input[type="search"],
body.np input[type="password"],
body.np input[type="number"],
body.np select,
body.np textarea {
	width: 100%;
	height: 44px;
	padding: 0 14px;
	border: 1px solid var(--np-line);
	border-radius: 6px;
	background: var(--np-white);
	font-family: var(--np-font);
	font-size: 14px;
	color: var(--np-ink);
	color-scheme: light;
}

body.np textarea {
	height: auto;
	padding: 12px 14px;
	resize: vertical;
}

body.np input::placeholder,
body.np textarea::placeholder {
	color: var(--np-muted-light);
}

body.np input:focus,
body.np select:focus,
body.np textarea:focus {
	outline: none;
	border-color: var(--np-blue);
	box-shadow: var(--np-ring);
}

body.np input:disabled,
body.np select:disabled,
body.np textarea:disabled {
	background: var(--np-soft);
	color: var(--np-muted);
}

.np-field {
	margin-bottom: 16px;
}

.np-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
}

.np-form-row--2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.np-check {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 4px 0 20px;
	font-size: 14px;
}

.np-check input {
	width: auto;
	height: auto;
	accent-color: var(--np-blue);
}

.np-hp {
	position: absolute !important;
	left: -9999px;
}

.np-notice {
	border: 1px solid var(--np-line);
	border-radius: 8px;
	padding: 14px 16px;
	margin-bottom: 20px;
	font-weight: 500;
}

.np-notice--success {
	border-color: #cfe8d8;
	background: #f7fff9;
	color: var(--np-success);
}

.np-notice--error {
	border-color: #f3cdcd;
	background: #fff7f7;
	color: var(--np-error);
}

/* ---- Header -------------------------------------------------------------- */

.np-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--np-white);
	border-bottom: 1px solid var(--np-line);
}

.np-header-inner {
	max-width: 1320px;
	margin: 0 auto;
	height: 72px;
	padding: 0 28px;
	display: grid;
	grid-template-columns: 170px 1fr 360px auto;
	align-items: center;
	gap: 22px;
}

/* body.np prefix needed to outrank the base `body.np img { height: auto }` rule */
body.np .np-logo img {
	height: 28px;
	width: auto;
	max-width: none;
}

.np-hamburger {
	display: none;
	width: 40px;
	height: 40px;
	border: 1px solid var(--np-line);
	border-radius: 50%;
	background: var(--np-white);
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--np-ink);
}

.np-nav-list {
	display: flex;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: 500;
}

.np-nav-list a:hover,
.np-nav-list .current-menu-item > a,
.np-nav-list .current_page_item > a {
	color: var(--np-blue);
}

.np-search {
	height: 42px;
	background: var(--np-ice);
	border: 1px solid var(--np-line);
	border-radius: 6px;
	display: flex;
	align-items: center;
	padding: 0 14px;
	gap: 10px;
	color: var(--np-muted);
}

.np-search input,
body.np .np-search input[type="search"] {
	border: 0;
	background: transparent;
	height: 40px;
	padding: 0;
	font-size: 14px;
}

body.np .np-search input:focus,
body.np .np-search input[type="search"]:focus,
body.np .np-search input:focus-visible {
	box-shadow: none;
	border: 0;
	background: transparent;
	outline: none;
}

.np-search:focus-within {
	border-color: var(--np-blue);
	box-shadow: var(--np-ring);
}

.np-header-icons {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
}

/* Language switcher: compact bordered pill matching the icon buttons */
body.np .np-lang select {
	height: 40px;
	width: auto;
	padding: 0 8px;
	border: 1px solid var(--np-line);
	border-radius: 20px;
	background: var(--np-white);
	font-size: 13px;
	font-weight: 500;
	color: var(--np-ink);
	cursor: pointer;
}

body.np .np-lang select:hover {
	border-color: var(--np-blue);
	color: var(--np-blue);
}

.np-drawer-lang .np-lang select {
	width: 100%;
	border-radius: 6px;
}

.np-icon-btn {
	position: relative;
	width: 40px;
	height: 40px;
	border: 1px solid var(--np-line);
	border-radius: 50%;
	background: var(--np-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--np-ink);
	transition: border-color .15s, color .15s;
}

.np-icon-btn:hover {
	border-color: var(--np-blue);
	color: var(--np-blue);
}

.np-icon-btn:focus-visible {
	border-radius: 50%;
}

.np-cart-count {
	position: absolute;
	top: -5px;
	right: -5px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 9px;
	background: var(--np-blue);
	color: var(--np-white);
	font-size: 11px;
	font-weight: 600;
	line-height: 18px;
	text-align: center;
}

.np-cart-count[data-count="0"] {
	display: none;
}

/* ---- Mobile drawer -------------------------------------------------------- */

.np-drawer {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: var(--np-white);
	padding: 16px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.np-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 56px;
}

.np-drawer-close {
	width: 44px;
	height: 44px;
	border: 1px solid var(--np-line);
	border-radius: 50%;
	background: var(--np-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.np-drawer-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* The drawer nav also matches the fallback menu markup (.np-nav-list),
   which is horizontal in the header — force the vertical drawer layout here. */
.np-drawer-nav .np-nav-list {
	display: block;
}

.np-drawer-list > li > a,
.np-drawer-nav .np-nav-list > li > a {
	display: block;
	padding: 14px 4px;
	font-size: 17px;
	font-weight: 600;
	border-bottom: 1px solid var(--np-line);
}

.np-drawer-list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 8px 12px;
}

.np-drawer-list .sub-menu a {
	display: block;
	padding: 10px 4px;
	color: var(--np-muted);
}

.np-drawer-cart {
	width: 100%;
}

.np-drawer-meta {
	display: flex;
	gap: 20px;
	font-weight: 600;
}

.np-drawer-locale {
	color: var(--np-muted);
	font-size: 13px;
	margin: 0;
}

.np-drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 50;
	background: rgba(15, 15, 17, .4);
}

/* ---- Footer ---------------------------------------------------------------- */

.np-footer {
	background: var(--np-ink);
	color: var(--np-white);
	padding: 44px 0 28px;
}

.np-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(4, 1fr);
	gap: 34px;
}

.np-footer-brand > p {
	color: rgba(255, 255, 255, .72);
	margin: 14px 0;
}

body.np .np-logo--white img {
	height: 30px;
	width: auto;
	max-width: none;
}

.np-newsletter {
	background: rgba(255, 255, 255, .08);
	border-radius: 10px;
	padding: 18px;
}

.np-newsletter strong {
	font-size: 14px;
	font-weight: 500;
}

.np-newsletter-form {
	display: grid;
	grid-template-columns: 1fr 44px;
	gap: 8px;
	margin-top: 12px;
}

body.np .np-newsletter-form input[type="email"] {
	background: var(--np-white);
	color: var(--np-ink);
	border: 0;
	height: 44px;
	box-sizing: border-box;
}

.np-newsletter-form button {
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 6px;
	background: var(--np-blue);
	color: var(--np-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.np-newsletter-form button:hover {
	background: var(--np-blue-hover);
}

.np-newsletter-thanks {
	display: block;
	margin-top: 12px;
	color: rgba(255, 255, 255, .85);
	font-weight: 500;
}

.np-footer-col h4 {
	margin: 0 0 14px;
	font-size: 15px;
	color: var(--np-white);
}

.np-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.np-footer-links a {
	display: block;
	margin: 9px 0;
	color: rgba(255, 255, 255, .72);
	font-size: 14px;
}

.np-footer-links a:hover {
	color: var(--np-white);
}

.np-copyright {
	margin-top: 36px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .16);
	font-size: 13px;
	color: rgba(255, 255, 255, .55);
}

/* ---- Shared page elements ----------------------------------------------------- */

.np-eyebrow {
	display: inline-flex;
	background: var(--np-white);
	border: 1px solid var(--np-line);
	border-radius: 4px;
	padding: 7px 10px;
	font-size: 12px;
	font-weight: 600;
	color: var(--np-blue);
	text-transform: uppercase;
	letter-spacing: .5px;
}

.np-lead {
	font-size: 16px;
	line-height: 1.6;
	color: var(--np-muted);
	max-width: 640px;
}

.np-section {
	padding: 46px 0;
}

.np-band {
	background: var(--np-ice);
	border-top: 1px solid var(--np-line);
	border-bottom: 1px solid var(--np-line);
}

.np-section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	margin-bottom: 24px;
}

.np-section-head h2 {
	margin: 0;
}

.np-section-head p {
	margin: 0;
	color: var(--np-muted);
	max-width: 460px;
}

.np-breadcrumb {
	padding: 18px 0;
	color: var(--np-muted);
	font-size: 13px;
}

.np-breadcrumb a:hover {
	color: var(--np-blue);
}

.np-chip-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 20px 0 28px;
}

.np-chip {
	border: 1px solid var(--np-line);
	background: var(--np-white);
	border-radius: 6px;
	padding: 9px 12px;
	font-weight: 500;
	font-size: 13px;
}

.np-chip:hover {
	border-color: var(--np-blue);
	color: var(--np-blue);
}

/* ---- Homepage hero ----------------------------------------------------------- */

.np-hero {
	background: linear-gradient(180deg, var(--np-ice), var(--np-white));
	border-bottom: 1px solid var(--np-line);
}

.np-hero-inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 34px 28px;
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 40px;
	align-items: center;
}

.np-hero-copy h1 {
	margin: 26px 0 14px;
}

.np-cta-row {
	display: flex;
	gap: 12px;
	margin-top: 28px;
}

.np-hero-photos {
	display: grid;
	grid-template-columns: 1.1fr .85fr;
	gap: 16px;
}

.np-hero-photo {
	position: relative;
	margin: 0;
	border-radius: 12px;
	border: 1px solid var(--np-line);
	overflow: hidden;
	min-height: 320px;
	background: var(--np-ice);
}

.np-hero-photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.np-hero-photo figcaption {
	position: absolute;
	left: 20px;
	bottom: 20px;
	background: var(--np-white);
	border: 1px solid var(--np-line);
	border-radius: 4px;
	padding: 7px 10px;
	font-size: 12px;
	font-weight: 600;
}

.np-hero-photo-stack {
	display: grid;
	gap: 16px;
}

.np-hero-photo--small {
	min-height: 152px;
}

/* ---- Category cards (homepage) ------------------------------------------------- */

.np-cat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.np-cat-card {
	background: var(--np-white);
	border: 1px solid var(--np-line);
	border-radius: 10px;
	overflow: hidden;
	transition: border-color .15s, transform .15s;
}

.np-cat-card:hover {
	border-color: var(--np-blue);
	transform: translateY(-2px);
}

.np-cat-card-link {
	display: block;
	height: 100%;
}

.np-cat-img {
	height: 140px;
	background: var(--np-ice);
	overflow: hidden;
}

.np-cat-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.np-cat-body {
	padding: 16px;
}

.np-cat-body h3 {
	margin: 0 0 8px;
}

.np-cat-body p {
	margin: 0;
	color: var(--np-muted);
	font-size: 14px;
	line-height: 1.5;
	min-height: 42px;
}

.np-cat-more {
	display: inline-block;
	margin-top: 16px;
	font-size: 14px;
	font-weight: 600;
	color: var(--np-blue);
}

.np-custom-strip {
	border: 1px solid var(--np-line);
	border-radius: 12px;
	padding: 26px 30px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 20px;
	align-items: center;
	background: var(--np-white);
}

.np-custom-strip h2 {
	font-size: 24px;
	margin: 0;
}

.np-custom-strip p {
	margin: 8px 0 0;
	color: var(--np-muted);
	max-width: 760px;
}

/* ---- Product cards (WooCommerce loop) -------------------------------------------- */

body.np ul.products {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

body.np ul.products.columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

body.np ul.products.columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

/* Neutralize WooCommerce core float/width layout so cards fill their grid track.
   Woo's strongest selector is `.woocommerce-page ul.products[class*="columns-"] li.product`
   (0,4,2) — these compound body selectors outrank it at (0,4,3)+. */
body.np ul.products li.product,
body.np .woocommerce ul.products[class*="columns-"] li.product,
body.np.woocommerce ul.products[class*="columns-"] li.product,
body.np.woocommerce-page ul.products[class*="columns-"] li.product {
	float: none;
	width: auto;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

body.np ul.products::before,
body.np ul.products::after {
	display: none;
}

li.np-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--np-white);
	border: 1px solid var(--np-line);
	border-radius: 10px;
	overflow: hidden;
	transition: border-color .15s, transform .15s;
}

li.np-product-card:hover {
	border-color: var(--np-blue);
	transform: translateY(-2px);
}

li.np-product-card:focus-within {
	box-shadow: var(--np-ring);
}

.np-product-img {
	position: relative;
	display: block;
	height: 190px;
	background: var(--np-ice);
	overflow: hidden;
}

.np-product-img img {
	width: 100%;
	height: 190px;
	object-fit: cover;
}

.np-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	border-radius: 6px;
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.np-badge--blue {
	background: var(--np-blue);
	color: var(--np-white);
}

.np-badge--light {
	background: var(--np-white);
	color: var(--np-blue);
	border: 1px solid var(--np-pastel);
}

.np-product-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 16px;
}

.np-product-title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	margin: 0 0 10px;
}

.np-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 12px;
}

.np-meta span {
	font-size: 12px;
	background: var(--np-ice);
	border: 1px solid var(--np-line);
	border-radius: 5px;
	padding: 5px 7px;
	color: var(--np-muted);
	font-weight: 500;
}

.np-product-price {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.3px;
	margin-bottom: 14px;
}

.np-product-price small {
	display: block;
	font-size: 12px;
	color: var(--np-muted);
	font-weight: 500;
	margin-top: 3px;
	letter-spacing: 0;
}

.np-product-cta {
	margin-top: auto;
	width: 100%;
	height: 40px;
}

/* ---- Category / shop archive ------------------------------------------------------ */

.np-cat-hero {
	background: linear-gradient(180deg, var(--np-ice), var(--np-white));
	border-top: 1px solid var(--np-line);
	border-bottom: 1px solid var(--np-line);
}

.np-cat-hero-inner {
	display: grid;
	grid-template-columns: 1fr 410px;
	gap: 36px;
	align-items: center;
	padding-top: 30px;
	padding-bottom: 30px;
}

.np-cat-hero-inner--noimg {
	grid-template-columns: 1fr;
}

.np-cat-hero-inner h1 {
	font-size: 36px;
	letter-spacing: -0.8px;
	margin: 14px 0 10px;
}

.np-cat-hero-img {
	height: 235px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--np-line);
	background: var(--np-white);
}

.np-cat-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.np-category-rail {
	border-bottom: 1px solid var(--np-line);
	background: var(--np-white);
}

.np-category-rail-inner {
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	gap: 8px;
	align-items: center;
	overflow-x: auto;
	padding: 12px 28px;
}

.np-category-rail a {
	white-space: nowrap;
	border: 1px solid var(--np-line);
	border-radius: 6px;
	background: var(--np-white);
	padding: 9px 12px;
	font-weight: 500;
	font-size: 13px;
}

.np-category-rail a:hover {
	border-color: var(--np-blue);
	color: var(--np-blue);
}

.np-category-rail a.is-active {
	background: var(--np-ink);
	color: var(--np-white);
	border-color: var(--np-ink);
}

.np-shop-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 26px;
	padding: 34px 0 48px;
}

.np-sidebar {
	align-self: start;
	position: sticky;
	top: 92px;
}

.np-filter-box {
	border: 1px solid var(--np-line);
	border-radius: 8px;
	background: var(--np-white);
	margin-bottom: 14px;
	overflow: hidden;
}

.np-filter-title {
	padding: 14px 16px;
	font-weight: 600;
	border-bottom: 1px solid var(--np-line);
	background: var(--np-soft);
}

.np-category-list {
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.np-category-list a {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 9px 10px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
}

.np-category-list a span {
	color: var(--np-muted);
}

.np-category-list a:hover {
	background: var(--np-ice);
	color: var(--np-blue);
}

.np-category-list a.is-active {
	background: var(--np-blue);
	color: var(--np-white);
}

.np-category-list a.is-active span {
	color: rgba(255, 255, 255, .8);
}

.np-support-card {
	border: 1px solid var(--np-line);
	border-radius: 8px;
	background: var(--np-ice);
	padding: 16px;
}

.np-support-card h3 {
	margin: 0 0 8px;
	font-size: 16px;
}

.np-support-card p {
	margin: 0 0 14px;
	color: var(--np-muted);
	line-height: 1.55;
}

.np-support-card .np-btn {
	height: 38px;
}

.np-content-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.np-content-head h2 {
	margin: 0;
	font-size: 23px;
}

.np-result-text {
	color: var(--np-muted);
	margin-top: 4px;
	font-size: 13px;
}

.np-sort {
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	color: var(--np-muted);
	font-size: 13px;
	font-weight: 500;
}

body.np .np-sort select {
	height: 40px;
	width: auto;
	min-width: 180px;
}

.np-seo-block {
	margin-top: 24px;
	background: var(--np-ice);
	border: 1px solid var(--np-line);
	border-radius: 8px;
	padding: 22px;
	line-height: 1.7;
	color: var(--np-muted);
}

.np-seo-block strong {
	color: var(--np-ink);
}

.np-no-results {
	text-align: center;
	border: 1px solid var(--np-line);
	border-radius: 10px;
	background: var(--np-ice);
	padding: 48px 24px;
}

.np-no-results-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	border: 1px solid var(--np-line);
	border-radius: 50%;
	background: var(--np-white);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--np-muted);
}

.np-no-results p {
	color: var(--np-muted);
	margin: 6px 0 20px;
}

/* Pagination */
body.np .woocommerce-pagination,
body.np .np-page .pagination {
	margin-top: 28px;
	text-align: center;
}

body.np .woocommerce-pagination ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	gap: 6px;
}

body.np .woocommerce-pagination li a,
body.np .woocommerce-pagination li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 8px;
	border: 1px solid var(--np-line);
	border-radius: 6px;
	background: var(--np-white);
	font-weight: 500;
}

body.np .woocommerce-pagination li span.current {
	background: var(--np-blue);
	border-color: var(--np-blue);
	color: var(--np-white);
}

body.np .woocommerce-pagination li a:hover {
	border-color: var(--np-blue);
	color: var(--np-blue);
}

/* ---- Single product ------------------------------------------------------------------ */

.np-product-layout {
	display: grid;
	grid-template-columns: 1.02fr .98fr;
	gap: 38px;
	padding: 4px 0 44px;
}

.np-gallery {
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: 12px;
	align-items: start;
}

.np-gallery:has(> .np-main-image:only-child) {
	grid-template-columns: 1fr;
}

.np-thumbs {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.np-thumb {
	border: 1px solid var(--np-line);
	border-radius: 6px;
	overflow: hidden;
	height: 72px;
	background: var(--np-white);
	padding: 0;
	cursor: pointer;
}

.np-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.np-thumb.is-active {
	border-color: var(--np-blue);
	box-shadow: var(--np-ring);
}

.np-main-image {
	border: 1px solid var(--np-line);
	border-radius: 8px;
	overflow: hidden;
	background: var(--np-ice);
	height: 520px;
}

.np-main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Accordion */
.np-accordion {
	margin-top: 22px;
	border-top: 1px solid #D7DAE2;
}

.np-acc-item {
	border-bottom: 1px solid #D7DAE2;
}

.np-acc-heading {
	margin: 0;
	font-size: inherit;
}

.np-acc-head {
	width: 100%;
	background: transparent;
	border: 0;
	padding: 22px 2px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	text-align: left;
	font-family: var(--np-font);
	font-size: 18px;
	font-weight: 600;
	color: var(--np-ink);
	cursor: pointer;
}

.np-plus {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border: 2px solid var(--np-ink);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
}

.np-acc-body {
	display: none;
	padding: 0 4px 24px;
	color: var(--np-muted);
	line-height: 1.7;
}

.np-acc-item.is-open .np-acc-body {
	display: block;
}

.np-acc-item.is-open .np-plus {
	background: var(--np-ink);
	color: var(--np-white);
}

.np-spec-table,
.np-price-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	color: var(--np-ink);
}

.np-spec-table td,
.np-price-table th,
.np-price-table td {
	padding: 10px 0;
	border-bottom: 1px solid var(--np-line);
	text-align: left;
}

.np-spec-table td:first-child,
.np-price-table th {
	color: var(--np-muted);
	font-weight: 500;
}

/* Info column */
.np-label-row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.np-label {
	border: 1px solid var(--np-line);
	background: var(--np-white);
	border-radius: 5px;
	padding: 5px 9px;
	font-weight: 600;
	font-size: 12px;
	color: var(--np-muted);
}

.np-label--blue {
	background: var(--np-blue);
	border-color: var(--np-blue);
	color: var(--np-white);
}

.np-label--green {
	color: var(--np-success);
	border-color: #cfe8d8;
	background: #f7fff9;
}

.np-product-heading {
	font-size: 31px;
	letter-spacing: -0.4px;
	margin: 0 0 10px;
}

.np-product-info .np-lead {
	font-size: 14px;
	margin: 0 0 16px;
}

.np-price-box {
	border: 1px solid var(--np-line);
	border-radius: 7px;
	background: var(--np-ice);
	padding: 15px 16px;
	margin-bottom: 16px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: center;
}

.np-price-big {
	font-size: 25px;
	font-weight: 600;
	letter-spacing: -0.3px;
}

.np-price-box small {
	display: block;
	font-size: 12px;
	color: var(--np-muted);
	font-weight: 500;
	margin-top: 2px;
}

.np-stock {
	font-weight: 600;
	color: var(--np-success);
}

.np-stock--out {
	color: var(--np-error);
}

/* Quantity tiers */
.np-choice-section {
	border: 1px solid var(--np-line);
	border-radius: 7px;
	background: var(--np-white);
	margin-bottom: 13px;
	overflow: hidden;
}

.np-choice-title {
	padding: 13px 15px;
	font-weight: 600;
	background: var(--np-soft);
	border-bottom: 1px solid var(--np-line);
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.np-choice-title span {
	font-size: 12px;
	color: var(--np-muted);
	font-weight: 500;
}

.np-choice-body {
	padding: 15px;
}

.np-qty-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 9px;
}

.np-qty-option {
	border: 1px solid var(--np-line);
	border-radius: 6px;
	background: var(--np-white);
	padding: 12px 10px;
	cursor: pointer;
	text-align: left;
	font-family: var(--np-font);
	color: var(--np-ink);
	transition: border-color .15s;
}

.np-qty-option:hover {
	border-color: var(--np-blue);
}

.np-qty-option.is-active {
	border-color: var(--np-blue);
	box-shadow: var(--np-ring);
}

.np-qty-option strong {
	display: block;
	font-size: 15px;
}

.np-qty-option span {
	display: block;
	font-size: 12px;
	color: var(--np-muted);
	margin-top: 3px;
}

.np-qty-option b {
	display: block;
	font-size: 13px;
	margin-top: 6px;
}

.np-summary {
	border: 1px solid var(--np-line);
	border-radius: 7px;
	background: var(--np-soft);
	padding: 15px;
	margin-bottom: 13px;
}

.np-summary-row {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	color: #303542;
}

.np-summary-row--total {
	border-top: 1px solid var(--np-line);
	margin-top: 8px;
	padding-top: 12px;
	font-size: 18px;
	font-weight: 600;
	color: var(--np-ink);
}

.np-cta-row {
	display: flex;
	gap: 10px;
}

.np-tier-form .np-cta-row {
	display: grid;
	grid-template-columns: 1fr 48px;
	margin-top: 0;
}

.np-add-to-cart {
	width: 100%;
}

.np-wish-btn {
	height: 48px;
	width: 48px;
	border: 1px solid var(--np-line);
	border-radius: 6px;
	background: var(--np-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--np-ink);
}

.np-wish-btn:hover {
	border-color: var(--np-blue);
	color: var(--np-blue);
}

.np-note {
	font-size: 12px;
	color: var(--np-muted);
	line-height: 1.55;
	margin-top: 10px;
}

/* Related products band */
body.np section.related.products {
	background: var(--np-ice);
	border-top: 1px solid var(--np-line);
	padding: 34px 0 48px;
}

body.np section.related.products > h2 {
	max-width: 1240px;
	margin: 0 auto 15px;
	padding: 0 28px;
	font-size: 22px;
}

body.np section.related.products ul.products {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 28px;
}

/* Fallback (non-tiered) add to cart form */
body.np form.cart:not(.np-tier-form) {
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 16px 0;
}

body.np form.cart:not(.np-tier-form) .quantity input.qty {
	width: 110px;
	height: 48px;
	text-align: center;
}

body.np form.cart:not(.np-tier-form) .single_add_to_cart_button {
	flex: 1;
}

/* ---- WooCommerce generic elements ------------------------------------------------------ */

body.np .woocommerce a.button,
body.np .woocommerce button.button,
body.np .woocommerce input.button,
body.np a.button,
body.np button.button,
body.np .button.wp-element-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 18px;
	border-radius: 6px;
	background: var(--np-ink);
	border: 1px solid var(--np-ink);
	color: var(--np-white);
	font-family: var(--np-font);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color .15s, border-color .15s;
}

body.np .woocommerce a.button:hover,
body.np .woocommerce button.button:hover,
body.np a.button:hover,
body.np button.button:hover {
	background: var(--np-blue);
	border-color: var(--np-blue);
	color: var(--np-white);
}

body.np .woocommerce a.button.alt,
body.np .woocommerce button.button.alt,
body.np button#place_order,
body.np .wc-proceed-to-checkout a.checkout-button {
	background: var(--np-blue);
	border-color: var(--np-blue);
	color: var(--np-white);
}

body.np .woocommerce a.button.alt:hover,
body.np .woocommerce button.button.alt:hover,
body.np button#place_order:hover,
body.np .wc-proceed-to-checkout a.checkout-button:hover {
	background: var(--np-blue-hover);
	border-color: var(--np-blue-hover);
}

body.np .wc-proceed-to-checkout a.checkout-button {
	width: 100%;
	height: 50px;
	font-size: 15px;
}

body.np button#place_order {
	width: 100%;
	height: 50px;
	font-size: 15px;
}

/* Notices */
body.np .woocommerce-message,
body.np .woocommerce-info,
body.np .woocommerce-error {
	list-style: none;
	border: 1px solid var(--np-line);
	border-radius: 8px;
	background: var(--np-ice);
	padding: 14px 16px;
	margin: 0 0 20px;
	font-weight: 500;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

body.np .woocommerce-message {
	border-color: #cfe8d8;
	background: #f7fff9;
}

body.np .woocommerce-error {
	border-color: #f3cdcd;
	background: #fff7f7;
	color: var(--np-error);
	flex-direction: column;
	align-items: flex-start;
}

body.np .woocommerce-message .button,
body.np .woocommerce-info .button {
	height: 38px;
	order: 2;
}

/* Form rows (checkout, account) */
body.np .woocommerce form .form-row {
	margin-bottom: 16px;
	padding: 0;
}

body.np .woocommerce form .form-row label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
}

body.np .woocommerce form .form-row .required {
	color: var(--np-error);
	text-decoration: none;
}

body.np .woocommerce form .form-row.woocommerce-invalid input,
body.np .woocommerce form .form-row.woocommerce-invalid select {
	border-color: var(--np-error);
	box-shadow: 0 0 0 3px rgba(214, 69, 69, .15);
}

body.np .select2-container--default .select2-selection--single {
	height: 44px;
	border: 1px solid var(--np-line);
	border-radius: 6px;
}

body.np .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 42px;
	padding-left: 14px;
	font-size: 14px;
}

body.np .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 42px;
}

/* Quantity stepper */
body.np .quantity {
	display: inline-flex;
}

body.np .quantity input.qty {
	height: 40px;
	width: 90px;
	text-align: center;
	padding: 0 6px;
}

/* ---- Cart page ---------------------------------------------------------------------------- */

.woocommerce-cart .np-wc-page .woocommerce {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 26px;
	align-items: start;
}

.woocommerce-cart .np-wc-page .woocommerce-notices-wrapper,
.woocommerce-cart .np-wc-page > .woocommerce > .woocommerce-error,
.woocommerce-cart .np-wc-page > .woocommerce > .woocommerce-message {
	grid-column: 1 / -1;
}

.woocommerce-cart .np-wc-page form.woocommerce-cart-form {
	grid-column: 1;
	min-width: 0;
}

.woocommerce-cart .np-wc-page .cart-collaterals {
	grid-column: 2;
	position: sticky;
	top: 92px;
}

body.np table.shop_table {
	width: 100%;
	border-collapse: collapse;
	border: 0;
	font-size: 14px;
}

body.np form.woocommerce-cart-form table.shop_table thead {
	display: none;
}

body.np form.woocommerce-cart-form table.shop_table tr.woocommerce-cart-form__cart-item {
	display: grid;
	width: 100%;
	grid-template-columns: 90px minmax(0, 1fr) auto auto 36px;
	grid-template-rows: auto auto;
	gap: 2px 16px;
	align-items: center;
	border: 1px solid var(--np-line);
	border-radius: 10px;
	padding: 14px;
	margin-bottom: 12px;
	background: var(--np-white);
}

/* Explicit cell placement: thumb | name + unit price | qty | line total | remove */
body.np form.woocommerce-cart-form td.product-thumbnail {
	grid-column: 1;
	grid-row: 1 / span 2;
}

body.np form.woocommerce-cart-form td.product-name {
	grid-column: 2;
	grid-row: 1;
	align-self: end;
}

body.np form.woocommerce-cart-form td.product-price {
	grid-column: 2;
	grid-row: 2;
	align-self: start;
}

body.np form.woocommerce-cart-form td.product-quantity {
	grid-column: 3;
	grid-row: 1 / span 2;
}

body.np form.woocommerce-cart-form td.product-subtotal {
	grid-column: 4;
	grid-row: 1 / span 2;
}

body.np form.woocommerce-cart-form td.product-remove {
	grid-column: 5;
	grid-row: 1 / span 2;
	justify-self: end;
}

/* Quantity changes submit automatically via JS — hide the manual update button */
body.np form.woocommerce-cart-form button[name="update_cart"] {
	display: none;
}

body.np form.woocommerce-cart-form table.shop_table,
body.np form.woocommerce-cart-form table.shop_table tbody,
body.np form.woocommerce-cart-form table.shop_table tr {
	display: block;
	width: 100%;
}

body.np form.woocommerce-cart-form table.shop_table td {
	border: 0;
	padding: 0;
	background: transparent;
}

body.np form.woocommerce-cart-form td.product-thumbnail img {
	width: 90px;
	height: 84px;
	object-fit: cover;
	border: 1px solid var(--np-line);
	border-radius: 8px;
	background: var(--np-ice);
}

body.np form.woocommerce-cart-form td.product-name {
	font-weight: 600;
}

body.np form.woocommerce-cart-form td.product-name a {
	display: block;
}

body.np form.woocommerce-cart-form td.product-price {
	color: var(--np-muted);
	font-size: 13px;
	white-space: nowrap;
}

body.np form.woocommerce-cart-form td.product-subtotal {
	font-weight: 700;
	white-space: nowrap;
}

body.np form.woocommerce-cart-form td.product-remove a.remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid var(--np-line);
	border-radius: 50%;
	color: var(--np-muted) !important;
	font-size: 18px;
	line-height: 1;
	background: var(--np-white);
}

body.np form.woocommerce-cart-form td.product-remove a.remove:hover {
	border-color: var(--np-error);
	color: var(--np-error) !important;
	background: var(--np-white);
}

body.np form.woocommerce-cart-form td.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	border: 1px solid var(--np-line);
	border-radius: 10px;
	padding: 14px;
	background: var(--np-soft);
}

body.np form.woocommerce-cart-form .coupon {
	display: flex;
	gap: 8px;
	align-items: center;
}

body.np form.woocommerce-cart-form .coupon label {
	display: none;
}

body.np form.woocommerce-cart-form .coupon input#coupon_code {
	width: 160px;
	height: 42px;
}

/* Cart totals / order summary panel.
   Compound selector needed: Woo core sets `.woocommerce .cart-collaterals
   .cart_totals { float: right; width: 48% }` which must lose here. */
body.np .cart_totals,
body.np .cart-collaterals .cart_totals,
body.np.woocommerce-page .cart-collaterals .cart_totals {
	float: none;
	width: 100%;
	border: 1px solid var(--np-line);
	border-radius: 10px;
	background: var(--np-soft);
	padding: 18px;
}

body.np .cart_totals h2 {
	font-size: 18px;
	margin: 0 0 12px;
}

body.np .cart_totals table.shop_table,
body.np .cart_totals table.shop_table tbody {
	display: block;
	width: 100%;
}

body.np .cart_totals table.shop_table tr {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--np-line);
}

body.np .cart_totals table.shop_table th,
body.np .cart_totals table.shop_table td {
	border: 0;
	padding: 0;
	text-align: left;
	font-weight: 500;
	color: #303542;
	background: transparent;
}

body.np .cart_totals table.shop_table td {
	text-align: right;
}

body.np .cart_totals table.shop_table tr.order-total {
	border-bottom: 0;
}

body.np .cart_totals tr.order-total th,
body.np .cart_totals tr.order-total td {
	border-bottom: 0;
	font-size: 17px;
	font-weight: 700;
	color: var(--np-ink);
}

/* Shipping row in the totals panel: label on top, full-width radio cards below */
body.np .cart_totals table.shop_table tr.woocommerce-shipping-totals {
	display: block;
	width: 100%;
	padding: 10px 0;
	border-bottom: 1px solid var(--np-line);
}

body.np .cart_totals table.shop_table tr.woocommerce-shipping-totals th,
body.np .cart_totals table.shop_table tr.woocommerce-shipping-totals td {
	display: block;
	width: 100%;
	text-align: left;
	border-bottom: 0;
	padding: 4px 0;
}

body.np .cart_totals td ul#shipping_method li {
	display: flex;
	align-items: center;
	gap: 8px;
}

body.np .cart_totals td ul#shipping_method label {
	margin: 0;
	font-weight: 500;
}

body.np .cart_totals .woocommerce-shipping-destination {
	font-size: 12px;
	color: var(--np-muted);
	margin: 8px 0 0;
}

body.np .wc-proceed-to-checkout {
	padding: 16px 0 0;
}

.np-continue-link {
	display: block;
	text-align: center;
	margin-top: 12px;
	font-weight: 600;
	color: var(--np-blue);
}

/* Cart empty */
body.np .cart-empty.woocommerce-info {
	grid-column: 1 / -1;
}

body.np .return-to-shop {
	grid-column: 1 / -1;
}

/* ---- Checkout ------------------------------------------------------------------------------- */

.np-steps {
	list-style: none;
	display: flex;
	gap: 8px;
	margin: 0 0 24px;
	padding: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--np-muted);
}

.np-steps li {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--np-line);
	border-radius: 6px;
	background: var(--np-white);
	padding: 9px 12px;
}

.np-steps li.is-active {
	border-color: var(--np-blue);
	color: var(--np-blue);
	background: var(--np-ice);
}

.np-steps li + li::before {
	content: "›";
	margin-right: 8px;
	color: var(--np-muted-light);
	display: none;
}

.woocommerce-checkout .np-wc-page form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	grid-template-rows: auto auto auto 1fr;
	gap: 0 26px;
	align-items: start;
}

/* Validation notices span both columns on top */
.woocommerce-checkout .np-wc-page form.checkout > .woocommerce-NoticeGroup {
	grid-column: 1 / -1;
	grid-row: 1;
}

.woocommerce-checkout .np-wc-page form.checkout #customer_details {
	grid-column: 1;
	grid-row: 2 / span 3;
	min-width: 0;
	width: 100%;
}

.woocommerce-checkout .np-wc-page form.checkout #customer_details .col-1,
.woocommerce-checkout .np-wc-page form.checkout #customer_details .col-2 {
	float: none;
	width: 100%;
	border: 1px solid var(--np-line);
	border-radius: 10px;
	background: var(--np-white);
	padding: 20px;
	margin-bottom: 16px;
}

.woocommerce-checkout .np-wc-page form.checkout h3 {
	font-size: 18px;
	margin: 0 0 14px;
}

.woocommerce-checkout .np-wc-page form.checkout #order_review_heading {
	grid-column: 2;
	grid-row: 2;
	margin: 0 0 12px;
	font-size: 18px;
}

.woocommerce-checkout .np-wc-page form.checkout #order_review {
	grid-column: 2;
	grid-row: 3 / span 2;
	align-self: start;
	width: 100%;
	position: sticky;
	top: 92px;
	border: 1px solid var(--np-line);
	border-radius: 10px;
	background: var(--np-soft);
	padding: 18px;
}

body.np table.woocommerce-checkout-review-order-table th,
body.np table.woocommerce-checkout-review-order-table td {
	border: 0;
	border-bottom: 1px solid var(--np-line);
	padding: 10px 0;
	text-align: left;
	background: transparent;
	font-weight: 500;
	color: #303542;
}

body.np table.woocommerce-checkout-review-order-table td.product-total,
body.np table.woocommerce-checkout-review-order-table tr > td:last-child {
	text-align: right;
}

body.np table.woocommerce-checkout-review-order-table tr.order-total th,
body.np table.woocommerce-checkout-review-order-table tr.order-total td {
	border-bottom: 0;
	font-size: 17px;
	font-weight: 700;
	color: var(--np-ink);
}

/* Payment methods as radio cards */
body.np #payment {
	background: transparent;
	border-radius: 0;
}

body.np #payment ul.payment_methods {
	list-style: none;
	margin: 16px 0;
	padding: 0;
	border: 0;
	display: grid;
	gap: 9px;
}

body.np #payment ul.payment_methods li {
	border: 1px solid var(--np-line);
	border-radius: 6px;
	background: var(--np-white);
	padding: 12px;
}

body.np #payment ul.payment_methods li label {
	font-weight: 600;
	margin: 0 0 0 4px;
	display: inline;
}

body.np #payment ul.payment_methods li input[type="radio"] {
	width: auto;
	height: auto;
	accent-color: var(--np-blue);
}

body.np #payment div.payment_box {
	background: var(--np-ice);
	border-radius: 6px;
	color: var(--np-muted);
	font-size: 13px;
	margin-top: 10px;
	padding: 10px 12px;
}

body.np #payment div.payment_box::before {
	display: none;
}

/* Shipping methods */
body.np ul#shipping_method {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

body.np ul#shipping_method li {
	border: 1px solid var(--np-line);
	border-radius: 6px;
	background: var(--np-white);
	padding: 10px 12px;
}

body.np ul#shipping_method input[type="radio"] {
	width: auto;
	height: auto;
	accent-color: var(--np-blue);
}

/* ---- My account (light touch) ---------------------------------------------------------------- */

body.np .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 8px;
	border: 1px solid var(--np-line);
	border-radius: 8px;
}

body.np .woocommerce-MyAccount-navigation ul li a {
	display: block;
	padding: 9px 10px;
	border-radius: 6px;
	font-weight: 500;
}

body.np .woocommerce-MyAccount-navigation ul li.is-active a,
body.np .woocommerce-MyAccount-navigation ul li a:hover {
	background: var(--np-blue);
	color: var(--np-white);
}

body.np .np-wc-page .woocommerce-MyAccount-content {
	border: 1px solid var(--np-line);
	border-radius: 10px;
	padding: 20px;
}

.woocommerce-account .np-wc-page .woocommerce {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 26px;
	align-items: start;
}

.woocommerce-account.woocommerce-checkout .np-wc-page .woocommerce {
	display: block;
}

/* ---- Generic pages, 404, contact, sitemap ----------------------------------------------------- */

.np-page {
	padding: 34px 28px 48px;
}

.np-page-title {
	font-size: 34px;
	margin-bottom: 20px;
}

.np-entry {
	margin-bottom: 28px;
}

.np-entry-content {
	max-width: 760px;
	line-height: 1.7;
}

/* WooCommerce pages (cart/checkout/account) need the full container width */
.np-wc-page .np-entry-content {
	max-width: none;
}

.np-404 {
	text-align: center;
	padding: 56px 28px 72px;
	max-width: 720px;
}

.np-404-code {
	font-size: 120px;
	font-weight: 800;
	letter-spacing: -4px;
	line-height: 1;
	color: var(--np-blue);
	margin-bottom: 8px;
}

.np-404 h1 {
	font-size: 30px;
}

.np-404 .np-lead {
	margin: 0 auto 24px;
}

.np-search--wide {
	max-width: 460px;
	margin: 0 auto 4px;
}

.np-contact-layout {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 32px;
	padding-top: 34px;
	padding-bottom: 48px;
	align-items: start;
}

.np-info-card {
	border: 1px solid var(--np-line);
	border-radius: 10px;
	background: var(--np-white);
	padding: 20px;
	margin-bottom: 14px;
}

.np-info-card--ice {
	background: var(--np-ice);
}

.np-info-card h3 {
	margin: 0 0 12px;
	font-size: 16px;
}

.np-info-card p {
	margin: 8px 0;
	color: var(--np-muted);
}

.np-info-card p strong {
	color: var(--np-ink);
	display: inline-block;
	min-width: 72px;
}

.np-info-card a:hover {
	color: var(--np-blue);
}

.np-sitemap-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.np-sitemap-col {
	border: 1px solid var(--np-line);
	border-radius: 10px;
	padding: 20px;
}

.np-sitemap-col h2 {
	font-size: 16px;
	margin: 0 0 12px;
}

.np-sitemap-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.np-sitemap-col li a {
	display: block;
	padding: 7px 0;
	color: var(--np-muted);
	font-weight: 500;
}

.np-sitemap-col li a:hover {
	color: var(--np-blue);
}

.np-empty-note {
	grid-column: 1 / -1;
	color: var(--np-muted);
	border: 1px dashed var(--np-line-strong);
	border-radius: 10px;
	padding: 24px;
	text-align: center;
}

/* ---- Responsive -------------------------------------------------------------------------------- */

@media (max-width: 1050px) {
	.np-header-inner {
		grid-template-columns: auto 1fr auto;
		gap: 12px;
	}

	.np-hamburger {
		display: inline-flex;
	}

	.np-header .np-logo {
		justify-self: center;
	}

	.np-nav,
	.np-header .np-search {
		display: none;
	}

	.np-hero-inner {
		grid-template-columns: 1fr;
	}

	.np-cat-grid,
	body.np ul.products,
	body.np ul.products.columns-3,
	body.np ul.products.columns-2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.np-cat-hero-inner {
		grid-template-columns: 1fr;
	}

	.np-shop-layout {
		grid-template-columns: 1fr;
	}

	.np-sidebar {
		position: static;
	}

	.np-product-layout {
		grid-template-columns: 1fr;
	}

	.np-main-image {
		height: 450px;
	}

	.np-footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.np-contact-layout {
		grid-template-columns: 1fr;
	}

	.woocommerce-cart .np-wc-page .woocommerce,
	.woocommerce-checkout .np-wc-page form.checkout {
		grid-template-columns: 1fr;
	}

	.woocommerce-cart .np-wc-page .cart-collaterals,
	.woocommerce-checkout .np-wc-page form.checkout #order_review {
		grid-column: 1;
		grid-row: auto;
		position: static;
	}

	.woocommerce-checkout .np-wc-page form.checkout #customer_details {
		grid-row: auto;
	}

	.woocommerce-checkout .np-wc-page form.checkout #order_review_heading {
		grid-column: 1;
		grid-row: auto;
	}

	.woocommerce-account .np-wc-page .woocommerce {
		grid-template-columns: 1fr;
	}

	.np-sitemap-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 620px) {
	.np-container,
	.np-hero-inner,
	.np-header-inner,
	.np-category-rail-inner {
		padding-left: 16px;
		padding-right: 16px;
	}

	body.np h1 {
		font-size: 28px;
		letter-spacing: -0.8px;
	}

	.np-cat-hero-inner h1 {
		font-size: 28px;
	}

	.np-section-head {
		display: block;
	}

	.np-section-head p {
		margin-top: 12px;
	}

	.np-cat-grid,
	body.np ul.products,
	body.np ul.products.columns-3,
	body.np ul.products.columns-2 {
		grid-template-columns: 1fr;
	}

	.np-hero-photos {
		grid-template-columns: 1fr;
	}

	.np-hero-photo {
		min-height: 240px;
	}

	.np-custom-strip {
		grid-template-columns: 1fr;
	}

	.np-footer-grid {
		grid-template-columns: 1fr;
	}

	.np-content-head {
		display: block;
	}

	.np-sort {
		margin-top: 12px;
	}

	.np-gallery {
		grid-template-columns: 1fr;
	}

	.np-thumbs {
		flex-direction: row;
		order: 2;
	}

	.np-thumb {
		width: 72px;
		flex: 0 0 72px;
	}

	.np-main-image {
		height: 310px;
	}

	.np-qty-grid {
		grid-template-columns: 1fr 1fr;
	}

	.np-price-box {
		display: block;
	}

	.np-stock {
		margin-top: 8px;
	}

	.np-form-row--2col {
		grid-template-columns: 1fr;
	}

	.np-sitemap-grid {
		grid-template-columns: 1fr;
	}

	body.np form.woocommerce-cart-form table.shop_table tr.woocommerce-cart-form__cart-item {
		grid-template-columns: 84px minmax(0, 1fr) auto;
		grid-template-rows: auto auto auto;
	}

	body.np form.woocommerce-cart-form td.product-thumbnail {
		grid-row: 1 / span 2;
	}

	body.np form.woocommerce-cart-form td.product-quantity {
		grid-column: 2;
		grid-row: 3;
	}

	body.np form.woocommerce-cart-form td.product-subtotal {
		grid-column: 3;
		grid-row: 1 / span 2;
	}

	body.np form.woocommerce-cart-form td.product-remove {
		grid-column: 3;
		grid-row: 3;
	}

	.np-404-code {
		font-size: 84px;
	}
}
