/* =============================================================
   NuTea — main stylesheet
   Fresh organic-grocer ecommerce look: warm cream page, deep green
   floating header with big product search, rounded white cards,
   soft light-green CTAs, muted tea-brown & gold accents. DM Sans.
   ============================================================= */

/* ----------------------------- Fonts ----------------------------- */

@font-face {
	font-family: 'DM Sans';
	src: url('../fonts/dmsans-var.woff2') format('woff2-variations');
	font-weight: 100 1000;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Playfair Display';
	src: url('../fonts/playfair-var.woff2') format('woff2-variations');
	font-weight: 400 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Playfair Display';
	src: url('../fonts/playfair-italic-var.woff2') format('woff2-variations');
	font-weight: 400 900;
	font-style: italic;
	font-display: swap;
}

/* ---------------------------- Tokens ----------------------------- */

:root {
	--nt-cream: #fbf7ee;
	--nt-cream-2: #f4edde;
	--nt-beige: #f0e4cc;
	--nt-white: #ffffff;

	--nt-ink: #17382a;
	--nt-green: #2d6a4f;
	--nt-green-dark: #24573f;
	--nt-green-deep: #1b4332;
	--nt-green-soft: #e7f1e7;
	--nt-lime: #cdeba2;
	--nt-lime-2: #bce189;
	--nt-sage: #e9f0dd;

	--nt-brown: #3e332b;
	--nt-brown-soft: #7a6a5c;
	--nt-tea: #8c5b3f;
	--nt-tea-deep: #6c4630;
	--nt-gold: #c29a4b;
	--nt-gold-soft: #ebddbe;

	--nt-line: #eae1ce;
	--nt-danger: #b0492f;

	--nt-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--nt-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

	--nt-radius: 16px;
	--nt-radius-lg: 24px;
	--nt-shadow-sm: 0 1px 2px rgba(27, 67, 50, 0.05), 0 3px 10px rgba(27, 67, 50, 0.06);
	--nt-shadow-md: 0 6px 16px rgba(27, 67, 50, 0.09), 0 16px 36px rgba(27, 67, 50, 0.08);
	--nt-shadow-lg: 0 14px 30px rgba(27, 67, 50, 0.14), 0 34px 70px rgba(27, 67, 50, 0.12);
}

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

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

/* Keep in-page anchor targets clear of the sticky header */
[id] {
	scroll-margin-top: 106px;
}

html,
body {
	overflow-x: clip;
}

body {
	margin: 0;
	font-family: var(--nt-font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--nt-brown);
	background-color: var(--nt-cream);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--nt-green);
	text-decoration: none;
	transition: color 0.18s ease;
}

a:hover {
	color: var(--nt-green-dark);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--nt-font-body);
	font-weight: 750;
	line-height: 1.16;
	letter-spacing: -0.015em;
	color: var(--nt-ink);
	margin: 0 0 0.5em;
	text-wrap: balance;
}

p {
	margin: 0 0 1em;
}

:focus-visible {
	outline: 2.5px solid var(--nt-gold);
	outline-offset: 3px;
	border-radius: 4px;
}

::selection {
	background: var(--nt-lime);
	color: var(--nt-ink);
}

.screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--nt-green-deep);
	color: #fff;
	padding: 10px 18px;
	border-radius: 0 0 10px 0;
}

.skip-link:focus {
	left: 0;
	clip-path: none;
	width: auto;
	height: auto;
	color: #fff;
}

.nt-container {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: clamp(16px, 4vw, 32px);
}

.nt-icon {
	flex: none;
	vertical-align: middle;
}

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

.nt-btn,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #place_order,
.woocommerce-page #place_order,
button[type='submit'] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-family: var(--nt-font-body);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.2;
	padding: 13px 26px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	background: var(--nt-lime);
	color: var(--nt-ink);
	cursor: pointer;
	text-decoration: none;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.nt-btn:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #place_order:hover {
	background: var(--nt-lime-2);
	color: var(--nt-ink);
	transform: translateY(-1px);
	box-shadow: var(--nt-shadow-sm);
}

/* Primary = soft light-green CTA (brand) */
.nt-btn--primary {
	background: var(--nt-lime);
	color: var(--nt-ink);
}

/* Solid deep green variant for light backgrounds */
.nt-btn--green {
	background: var(--nt-green);
	color: #fff;
}

.nt-btn--green:hover {
	background: var(--nt-green-dark);
	color: #fff;
}

/* Quiet text-style button on light backgrounds */
.nt-btn--ghost {
	background: transparent;
	border-color: var(--nt-green);
	color: var(--nt-green);
}

.nt-btn--ghost:hover {
	background: var(--nt-green-soft);
	color: var(--nt-green-dark);
	box-shadow: none;
}

/* Outline for dark / colored panels (inherits panel text color) */
.nt-btn--outline {
	background: transparent;
	border-color: rgba(255, 250, 240, 0.55);
	color: #fff9ee;
}

.nt-btn--outline:hover {
	background: rgba(255, 250, 240, 0.12);
	border-color: rgba(255, 250, 240, 0.8);
	color: #fff9ee;
	box-shadow: none;
}

/* ---------------------------- Top bar ----------------------------- */

.nt-topbar {
	background: var(--nt-cream-2);
	border-bottom: 1px solid var(--nt-line);
	color: var(--nt-brown-soft);
	font-size: 13px;
	letter-spacing: 0.02em;
}

.nt-topbar__inner {
	display: flex;
	justify-content: center;
	gap: clamp(14px, 3vw, 34px);
	padding-block: 7px;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.nt-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
}

.nt-topbar__item .nt-icon {
	color: var(--nt-green);
}

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

.nt-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: var(--nt-cream);
	padding-block: 10px;
}

.nt-header__bar {
	display: flex;
	align-items: center;
	gap: clamp(10px, 2vw, 22px);
	min-height: 72px;
	padding: 10px clamp(12px, 2vw, 20px);
	background: linear-gradient(135deg, var(--nt-green-deep), #143726 92%);
	border-radius: 18px;
	box-shadow: 0 2px 6px rgba(20, 55, 38, 0.12);
	transition: box-shadow 0.25s ease;
}

.nt-header.is-stuck .nt-header__bar {
	box-shadow: 0 10px 26px rgba(20, 55, 38, 0.22);
}

/* Brand */

.nt-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex: none;
	color: #fff;
}

.nt-brand:hover {
	color: #fff;
}

.nt-brand__chip {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	padding: 4px;
	background: #fff;
	border-radius: 14px;
	flex: none;
}

.nt-brand__chip .nt-brand__img,
.nt-brand__chip img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.nt-brand__text {
	font-size: 23px;
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1;
}

.nt-brand__text em {
	font-style: normal;
	color: var(--nt-lime);
}

/* Header search */

.nt-header__search {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 640px;
	margin-inline: auto;
}

.nt-header__search .nt-searchform {
	border-color: transparent;
	box-shadow: 0 2px 6px rgba(15, 40, 28, 0.14);
}

.nt-header__search .nt-searchform:focus-within {
	border-color: var(--nt-lime);
	box-shadow: 0 0 0 3px rgba(205, 235, 162, 0.35);
}

/* Header actions */

.nt-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
	flex: none;
}

.nt-action {
	position: relative;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease;
}

.nt-action:hover {
	background: rgba(255, 255, 255, 0.22);
	color: #fff;
}

/* Basket mirrors the reference: solid white circle on the green bar */
.nt-action--cart {
	background: #fff;
	color: var(--nt-green-deep);
}

.nt-action--cart:hover {
	background: var(--nt-lime);
	color: var(--nt-ink);
}

.nutea-cart-count {
	position: absolute;
	top: -3px;
	right: -3px;
	min-width: 19px;
	height: 19px;
	padding: 0 5px;
	display: none;
	place-items: center;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	border-radius: 999px;
	background: var(--nt-danger);
	color: #fff;
	border: 2px solid #fff;
}

.nutea-cart-count.is-visible {
	display: grid;
}

/* Burger */

.nt-header__burger {
	display: none;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	cursor: pointer;
	flex: none;
}

.nt-header__burger-close {
	display: none;
}

.nt-header__burger[aria-expanded='true'] .nt-header__burger-open {
	display: none;
}

.nt-header__burger[aria-expanded='true'] .nt-header__burger-close {
	display: block;
}

/* --------------------- Nav strip + mega menu ---------------------- */

.nt-navstrip {
	background: var(--nt-cream);
	border-bottom: 1px solid var(--nt-line);
}

.nt-navstrip__inner {
	display: flex;
	align-items: center;
	gap: clamp(8px, 1.6vw, 20px);
	padding-block: 8px;
}

.nt-mega {
	position: relative;
	flex: none;
}

.nt-mega__btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 11px 18px;
	border: 0;
	border-radius: 999px;
	background: var(--nt-green);
	color: #fff;
	font-family: var(--nt-font-body);
	font-size: 14.5px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.18s ease;
}

.nt-mega__btn:hover {
	background: var(--nt-green-dark);
}

.nt-mega__btn .nt-icon--chev {
	transition: rotate 0.2s ease;
}

.nt-mega.is-open .nt-mega__btn .nt-icon--chev {
	rotate: 180deg;
}

.nt-mega__panel {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	z-index: 85;
	width: min(880px, calc(100vw - 40px));
	background: var(--nt-white);
	border: 1px solid var(--nt-line);
	border-radius: 20px;
	box-shadow: var(--nt-shadow-lg);
	padding: 16px 16px 12px;
}

.nt-mega__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 6px;
}

.nt-mega__grid a {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: 12px;
	align-items: center;
	align-content: center;
	padding: 9px 12px;
	border-radius: 14px;
	color: var(--nt-ink);
	transition: background 0.15s ease;
}

.nt-mega__grid a:hover {
	background: var(--nt-green-soft);
	color: var(--nt-green-dark);
}

.nt-mega__thumb {
	grid-row: 1 / span 2;
	width: 54px;
	height: 54px;
	border-radius: 12px;
	background: var(--nt-cream-2);
	display: grid;
	place-items: center;
	overflow: hidden;
	color: var(--nt-green);
}

.nt-mega__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 4px;
}

.nt-mega__name {
	font-size: 14.5px;
	font-weight: 700;
	line-height: 1.3;
}

.nt-mega__count {
	font-size: 12.5px;
	color: var(--nt-brown-soft);
	line-height: 1.3;
}

.nt-mega__all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 10px 6px 2px;
	font-size: 14px;
	font-weight: 700;
	color: var(--nt-green);
}

.nt-mega__all .nt-icon {
	transition: translate 0.18s ease;
}

.nt-mega__all:hover .nt-icon {
	translate: 4px 0;
}

/* Primary nav links */

.nt-nav {
	flex: 1 1 auto;
	min-width: 0;
}

.nt-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 2px 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nt-nav__list li {
	position: relative;
}

.nt-nav__list a {
	display: inline-block;
	padding: 9px 13px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--nt-ink);
	border-radius: 999px;
	transition: background 0.15s ease, color 0.15s ease;
	white-space: nowrap;
}

.nt-nav__list a:hover {
	background: var(--nt-green-soft);
	color: var(--nt-green-dark);
}

.nt-nav__list .current-menu-item > a,
.nt-nav__list .current_page_item > a {
	background: var(--nt-green-soft);
	color: var(--nt-green-dark);
}

/* Simple dropdowns for nested menu items */

.nt-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--nt-white);
	border: 1px solid var(--nt-line);
	border-radius: 14px;
	box-shadow: var(--nt-shadow-md);
	padding: 8px;
	margin: 6px 0 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
	z-index: 80;
}

.nt-nav__list li:hover > .sub-menu,
.nt-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nt-nav__list .sub-menu a {
	display: block;
	padding: 9px 12px;
	border-radius: 10px;
	white-space: normal;
}

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

.nt-mobile-panel {
	display: none;
	background: var(--nt-cream);
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	border-bottom: 1px solid var(--nt-line);
	padding-block: 16px 22px;
	max-height: calc(100dvh - 108px);
	overflow-y: auto;
}

.nt-mobile-panel.is-open {
	display: block;
}

.nt-mobile-panel__search {
	margin-bottom: 16px;
}

.nt-mobile-panel__label {
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nt-green);
	margin: 0 0 10px;
}

.nt-mobile-cats {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.nt-mobile-cats a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	background: var(--nt-white);
	border: 1px solid var(--nt-line);
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--nt-ink);
}

.nt-mobile-cats__thumb {
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 10px;
	background: var(--nt-cream-2);
	display: grid;
	place-items: center;
	overflow: hidden;
	color: var(--nt-green);
}

.nt-mobile-cats__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 3px;
}

.nt-mobile-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nt-mobile-nav a {
	display: block;
	padding: 13px 6px;
	font-size: 17px;
	font-weight: 600;
	color: var(--nt-ink);
	border-bottom: 1px solid var(--nt-line);
}

.nt-mobile-nav li:last-child a {
	border-bottom: 0;
}

.nt-mobile-nav .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 16px;
	font-size: 15px;
}

/* -------------------------- Search overlay ------------------------ */

.nt-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 120;
	background: rgba(20, 55, 38, 0.55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	display: none;
}

.nt-search-overlay.is-open {
	display: block;
}

.nt-search-overlay__inner {
	position: relative;
	background: var(--nt-cream);
	border-radius: 0 0 var(--nt-radius-lg) var(--nt-radius-lg);
	padding-block: clamp(30px, 6vh, 60px);
	box-shadow: var(--nt-shadow-lg);
	max-width: 860px;
}

.nt-search-overlay__label {
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 800;
	color: var(--nt-ink);
	letter-spacing: -0.01em;
	margin-bottom: 16px;
}

.nt-search-overlay__close {
	position: absolute;
	top: 16px;
	right: clamp(16px, 4vw, 32px);
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border: 1px solid var(--nt-line);
	border-radius: 50%;
	background: var(--nt-white);
	color: var(--nt-brown);
	cursor: pointer;
}

/* --------------------------- Search form -------------------------- */

.nt-searchform {
	display: flex;
	align-items: stretch;
	border: 1.5px solid var(--nt-line);
	border-radius: 999px;
	background: var(--nt-white);
	overflow: hidden;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.nt-searchform:focus-within {
	border-color: var(--nt-green);
	box-shadow: 0 0 0 3px var(--nt-green-soft);
}

.nt-searchform__input {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 12px 6px 12px 20px;
	font-family: var(--nt-font-body);
	font-size: 15.5px;
	color: var(--nt-brown);
}

.nt-searchform__input:focus {
	outline: none;
}

.nt-searchform__input::placeholder {
	color: #9b8d7e;
}

.nt-searchform__submit {
	border: 0;
	background: transparent;
	color: var(--nt-green);
	padding-inline: 16px 18px;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background 0.18s ease, color 0.18s ease;
}

.nt-searchform__submit:hover {
	background: var(--nt-green-soft);
	color: var(--nt-green-dark);
}

/* ----------------------------- Hero ------------------------------- */

.nt-hero {
	padding-top: clamp(14px, 2.5vw, 26px);
}

.nt-hero__banner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	align-items: stretch;
	background: linear-gradient(155deg, #f7ecd8, var(--nt-beige));
	border-radius: var(--nt-radius-lg);
	overflow: hidden;
}

.nt-hero__copy {
	position: relative;
	z-index: 2;
	background:
		radial-gradient(620px 300px at 92% -24%, rgba(205, 235, 162, 0.16), transparent 58%),
		radial-gradient(430px 260px at -6% 112%, rgba(194, 154, 75, 0.2), transparent 55%),
		linear-gradient(150deg, var(--nt-green-dark), var(--nt-green-deep) 88%);
	color: #fff9ee;
	padding: clamp(30px, 4.5vw, 62px);
	padding-right: clamp(56px, 8vw, 120px);
	border-radius: 0 clamp(64px, 11vw, 170px) clamp(64px, 11vw, 170px) 0;
}

.nt-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--nt-gold-soft);
	background: rgba(255, 250, 240, 0.12);
	border: 1px solid rgba(255, 250, 240, 0.22);
	border-radius: 999px;
	padding: 7px 14px;
	margin: 0 0 20px;
}

.nt-hero__eyebrow .nt-icon {
	color: var(--nt-lime);
}

.nt-hero__title {
	font-size: clamp(32px, 4.6vw, 56px);
	font-weight: 830;
	letter-spacing: -0.02em;
	color: #fff9ee;
	margin-bottom: 16px;
}

.nt-hero__title em {
	font-family: var(--nt-font-display);
	font-style: italic;
	font-weight: 600;
	letter-spacing: 0;
	color: var(--nt-lime);
}

.nt-hero__subtitle {
	font-size: clamp(15.5px, 1.5vw, 18px);
	color: rgba(255, 247, 235, 0.88);
	max-width: 44ch;
	margin-bottom: 26px;
}

.nt-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* Hero visual: floating product chips on the beige side */

.nt-hero__visual {
	position: relative;
	z-index: 1;
	min-height: 340px;
}

.nt-hero__chip {
	position: absolute;
	display: block;
	background: var(--nt-white);
	border: 1px solid rgba(27, 67, 50, 0.14);
	border-radius: 22px;
	box-shadow: var(--nt-shadow-md);
	overflow: hidden;
}

.nt-hero__chip img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 12px;
	background: #fff;
}

.nt-hero__chip--empty {
	display: grid;
	place-items: center;
	color: var(--nt-green);
}

.nt-hero__chip--0 {
	width: min(44%, 240px);
	aspect-ratio: 1;
	left: 12%;
	top: 14%;
	animation: nt-float 7s ease-in-out infinite;
}

.nt-hero__chip--1 {
	width: min(30%, 168px);
	aspect-ratio: 1;
	right: 8%;
	top: 8%;
	animation: nt-float 8s ease-in-out 0.8s infinite;
}

.nt-hero__chip--2 {
	width: min(34%, 186px);
	aspect-ratio: 1;
	right: 16%;
	bottom: 9%;
	animation: nt-float 9s ease-in-out 1.6s infinite;
}

@keyframes nt-float {
	0%, 100% { translate: 0 0; }
	50% { translate: 0 -10px; }
}

/* --------------------------- Sections ----------------------------- */

.nt-section {
	padding-block: clamp(40px, 5.5vw, 76px);
}

.nt-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	margin-bottom: clamp(20px, 3vw, 34px);
}

.nt-section__head--center {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.nt-section__title {
	font-size: clamp(25px, 3.2vw, 36px);
	font-weight: 800;
	margin: 0;
}

.nt-section__sub {
	color: var(--nt-brown-soft);
	margin: 6px 0 0;
	max-width: 60ch;
}

.nt-section__more {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-weight: 700;
	font-size: 14.5px;
	color: var(--nt-green);
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--nt-green-soft);
}

.nt-section__more:hover {
	background: var(--nt-lime);
	color: var(--nt-ink);
}

.nt-section__more .nt-icon {
	transition: translate 0.18s ease;
}

.nt-section__more:hover .nt-icon {
	translate: 4px 0;
}

/* ------------------------- Category tiles ------------------------- */

.nt-cats {
	padding-top: clamp(30px, 4vw, 48px);
}

.nt-cats__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 24px);
}

.nt-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: center;
	background: var(--nt-white);
	border: 1px solid var(--nt-line);
	border-radius: 20px;
	overflow: hidden;
	color: var(--nt-ink);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.nt-tile:hover {
	transform: translateY(-4px);
	border-color: rgba(45, 106, 79, 0.35);
	box-shadow: var(--nt-shadow-md);
	color: var(--nt-ink);
}

.nt-tile__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f8f3e7;
	display: grid;
	place-items: center;
	padding: 16px;
}

.nt-tile__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.35s ease;
}

.nt-tile:hover .nt-tile__media img {
	transform: scale(1.05);
}

.nt-tile__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: var(--nt-green);
	opacity: 0.55;
}

.nt-tile__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 14px 16px 18px;
}

.nt-tile__label {
	font-size: 17.5px;
	font-weight: 750;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.nt-tile__count {
	font-size: 13px;
	color: var(--nt-brown-soft);
}

/* ---------------------- WooCommerce catalogue --------------------- */

.nt-popular {
	background: linear-gradient(180deg, transparent, rgba(231, 241, 231, 0.6) 18% 82%, transparent);
}

.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 22px);
	margin: 0 0 8px;
	padding: 0;
	list-style: none;
	width: 100%;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	content: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	text-align: center;
	background: var(--nt-white);
	border: 1px solid var(--nt-line);
	border-radius: 18px;
	overflow: hidden;
	position: relative;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.woocommerce ul.products li.product:hover {
	transform: translateY(-3px);
	border-color: rgba(45, 106, 79, 0.35);
	box-shadow: var(--nt-shadow-md);
}

.woocommerce ul.products li.product > a.woocommerce-LoopProduct-link {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	color: inherit;
}

/* Product image: contained, never badly cropped */

.woocommerce ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: #fff;
	padding: 18px 18px 8px;
	margin: 0 !important;
	transition: transform 0.35s ease;
}

.woocommerce ul.products li.product:hover a img {
	transform: scale(1.045);
}

.nt-card-cat {
	display: block;
	margin: 10px 16px 0;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nt-brown-soft);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--nt-font-body);
	font-size: 15.5px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
	color: var(--nt-ink);
	padding: 3px 16px 0;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: calc(2 * 1.4em + 3px);
}

.woocommerce ul.products li.product .price {
	color: var(--nt-green-deep);
	font-size: 21px;
	font-weight: 800;
	letter-spacing: -0.01em;
	padding: 7px 16px 0;
	margin: 0;
	display: block;
}

.woocommerce ul.products li.product .price del {
	color: var(--nt-brown-soft);
	font-weight: 500;
	font-size: 14.5px;
	opacity: 1;
	margin-right: 7px;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
	color: var(--nt-danger);
	font-weight: 800;
}

.nt-stock {
	display: inline-block;
	width: fit-content;
	align-self: center;
	margin: 9px 16px 0;
	padding: 3px 11px;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.nt-stock--in {
	background: var(--nt-green-soft);
	color: var(--nt-green-dark);
}

.nt-stock--out {
	background: #f6e4de;
	color: var(--nt-danger);
}

/* Card button: pale sage, turns light-green on hover */

.woocommerce ul.products li.product .button {
	margin: 14px 14px 14px;
	margin-top: auto;
	padding: 12px 16px;
	font-size: 14px;
	border-radius: 13px;
	background: var(--nt-sage);
	color: var(--nt-ink);
	text-align: center;
}

.woocommerce ul.products li.product .button:hover {
	background: var(--nt-lime);
	color: var(--nt-ink);
	transform: none;
	box-shadow: none;
}

.woocommerce ul.products li.product .button.loading {
	opacity: 0.6;
}

.woocommerce ul.products li.product .added_to_cart {
	margin: -8px 16px 16px;
	font-size: 13.5px;
	font-weight: 700;
	text-align: center;
}

.woocommerce ul.products li.product .nt-stock ~ .button {
	margin-top: auto;
}

/* Sale badge */

.woocommerce span.onsale {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	min-height: 0;
	min-width: 0;
	line-height: 1;
	padding: 6px 11px;
	border-radius: 999px;
	background: var(--nt-danger);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0;
}

/* Result count / ordering / pagination */

.nt-wc-page {
	padding-block: clamp(28px, 4vw, 48px);
}

.woocommerce .woocommerce-result-count {
	color: var(--nt-brown-soft);
	font-size: 14.5px;
	margin: 6px 0 18px;
	float: left;
}

.woocommerce .woocommerce-ordering {
	float: right;
	margin: 0 0 18px;
}

.woocommerce .woocommerce-ordering select,
select {
	appearance: none;
	border: 1.5px solid var(--nt-line);
	border-radius: 999px;
	background: var(--nt-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='m1 1 5 5 5-5' stroke='%2317382a' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center;
	padding: 10px 40px 10px 16px;
	font-family: var(--nt-font-body);
	font-size: 14.5px;
	color: var(--nt-brown);
	cursor: pointer;
}

.woocommerce nav.woocommerce-pagination {
	margin-top: 26px;
}

.woocommerce nav.woocommerce-pagination ul {
	border: 0;
	display: flex;
	justify-content: center;
	gap: 7px;
	margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
	overflow: visible;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	min-width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	padding: 0 8px;
	border: 1px solid var(--nt-line);
	border-radius: 999px;
	background: var(--nt-white);
	color: var(--nt-ink);
	font-weight: 700;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--nt-green-soft);
	color: var(--nt-green-dark);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--nt-green);
	border-color: var(--nt-green);
	color: #fff;
}

/* Breadcrumb */

.nt-breadcrumb {
	font-size: 14px;
	font-weight: 600;
	color: var(--nt-brown-soft);
	margin: 0 0 18px;
}

.nt-breadcrumb a {
	color: var(--nt-brown-soft);
}

.nt-breadcrumb a:hover {
	color: var(--nt-green);
}

.nt-breadcrumb__sep {
	margin-inline: 8px;
	opacity: 0.55;
}

/* Shop / archive page titles */

.woocommerce-products-header__title.page-title,
.nt-wc-page h1.page-title {
	font-size: clamp(27px, 3.8vw, 38px);
	margin-bottom: 10px;
}

.term-description {
	color: var(--nt-brown-soft);
	max-width: 70ch;
	margin-bottom: 20px;
}

/* Category quick-filter pills above the product grid (reference-style) */

.nt-filterpills {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 4px 0 20px;
}

.nt-filterpills a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 16px;
	border: 1.5px solid var(--nt-line);
	border-radius: 999px;
	background: var(--nt-white);
	color: var(--nt-ink);
	font-size: 14px;
	font-weight: 650;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.nt-filterpills a:hover {
	border-color: rgba(45, 106, 79, 0.45);
	color: var(--nt-green-dark);
}

.nt-filterpills a.is-active {
	background: var(--nt-green);
	border-color: var(--nt-green);
	color: #fff;
}

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

.woocommerce div.product {
	margin-top: 8px;
	position: relative;
}

.woocommerce div.product div.images {
	position: relative;
}

.woocommerce div.product div.images img {
	border-radius: 18px;
	border: 1px solid var(--nt-line);
	background: #fff;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	background: #fff;
	border-radius: 20px;
}

.woocommerce div.product div.images .flex-control-thumbs {
	display: flex;
	gap: 10px;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.woocommerce div.product div.images .flex-control-thumbs li {
	float: none;
	width: 74px;
}

.woocommerce div.product div.images .flex-control-thumbs img {
	border-radius: 12px;
	border: 1.5px solid var(--nt-line);
	opacity: 0.6;
	transition: opacity 0.15s ease, border-color 0.15s ease;
}

.woocommerce div.product div.images .flex-control-thumbs img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs img:hover {
	opacity: 1;
	border-color: var(--nt-green);
}

.woocommerce div.product .product_title {
	font-size: clamp(26px, 3.4vw, 36px);
	font-weight: 800;
	margin-bottom: 8px;
}

.woocommerce div.product p.price {
	color: var(--nt-green-deep);
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 14px;
}

.woocommerce div.product p.price del {
	color: var(--nt-brown-soft);
	font-weight: 500;
	font-size: 0.72em;
}

.woocommerce div.product p.price ins {
	text-decoration: none;
	color: var(--nt-danger);
}

.woocommerce div.product p.stock {
	display: inline-block;
	padding: 4px 13px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
}

.woocommerce div.product p.stock.in-stock {
	background: var(--nt-green-soft);
	color: var(--nt-green-dark);
}

.woocommerce div.product p.stock.out-of-stock {
	background: #f6e4de;
	color: var(--nt-danger);
}

.woocommerce .quantity .qty {
	border: 1.5px solid var(--nt-line);
	border-radius: 999px;
	padding: 12px 6px;
	width: 82px;
	text-align: center;
	font-family: var(--nt-font-body);
	font-size: 15px;
	font-weight: 600;
	background: var(--nt-white);
	color: var(--nt-brown);
}

/* Quantity stepper — main.js upgrades WooCommerce qty fields with − / +
   buttons (reference-style round steppers). Degrades to the plain input. */

.woocommerce .quantity.nt-qty {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	background: var(--nt-white);
	border: 1.5px solid var(--nt-line);
	border-radius: 999px;
	padding: 3px;
}

.woocommerce .quantity.nt-qty .qty {
	border: 0;
	border-radius: 0;
	width: 46px;
	padding: 9px 2px;
	appearance: textfield;
	-moz-appearance: textfield;
}

.woocommerce .quantity.nt-qty .qty::-webkit-outer-spin-button,
.woocommerce .quantity.nt-qty .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.nt-qty__btn {
	width: 34px;
	height: 34px;
	flex: none;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: var(--nt-sage);
	color: var(--nt-ink);
	font-size: 17px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease;
}

.nt-qty__btn:hover {
	background: var(--nt-lime);
}

.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-bottom: 22px;
}

.woocommerce div.product form.cart div.quantity {
	margin: 0;
}

.woocommerce div.product form.cart .button {
	padding: 14px 34px;
	font-size: 15.5px;
}

.woocommerce div.product .product_meta {
	font-size: 13.5px;
	color: var(--nt-brown-soft);
	border-top: 1px solid var(--nt-line);
	padding-top: 14px;
}

.woocommerce div.product .product_meta > span {
	display: block;
	margin-bottom: 4px;
}

.woocommerce div.product .product_meta a {
	color: var(--nt-green);
	font-weight: 600;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
	margin: 0 0 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	border: 0;
	overflow: visible;
	list-style: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	list-style: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: var(--nt-white);
	border: 1.5px solid var(--nt-line);
	border-radius: 999px;
	margin: 0;
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--nt-green);
	border-color: var(--nt-green);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	font-weight: 700;
	font-size: 14px;
	color: var(--nt-ink);
	padding: 10px 20px;
	display: inline-block;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: #fff;
}

.woocommerce div.product .woocommerce-tabs .panel {
	background: var(--nt-white);
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-radius);
	padding: 22px 24px;
	margin-bottom: 30px;
}

.related.products > h2,
.upsells.products > h2 {
	font-size: clamp(22px, 3vw, 29px);
	margin: 10px 0 20px;
}

/* Ratings */

.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
	color: var(--nt-gold);
}

.woocommerce ul.products li.product .star-rating {
	margin: 8px auto 0;
	font-size: 12px;
}

/* Sale prices render as <ins> in carts/totals too — never underline them */
.woocommerce ins {
	text-decoration: none;
}

/* ------------------------ Notices & forms ------------------------- */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	background: var(--nt-white);
	border: 1px solid var(--nt-line);
	border-top: 3px solid var(--nt-green);
	border-radius: 14px;
	color: var(--nt-brown);
	padding: 16px 20px 16px 52px !important;
	box-shadow: var(--nt-shadow-sm);
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--nt-green);
}

.woocommerce-error {
	border-top-color: var(--nt-danger);
}

.woocommerce-error::before {
	color: var(--nt-danger);
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
	padding: 8px 16px;
	font-size: 13.5px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-page form .form-row input.input-text,
input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
input[type='url'],
input[type='number'],
textarea {
	border: 1.5px solid var(--nt-line);
	border-radius: 12px;
	background: var(--nt-white);
	padding: 12px 15px;
	font-family: var(--nt-font-body);
	font-size: 15px;
	color: var(--nt-brown);
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
input[type='text']:focus,
input[type='email']:focus,
input[type='tel']:focus,
input[type='password']:focus,
textarea:focus {
	outline: none;
	border-color: var(--nt-green);
	box-shadow: 0 0 0 3px var(--nt-green-soft);
}

.woocommerce form .form-row label {
	display: block;
	font-weight: 600;
	font-size: 14px;
}

.woocommerce form .form-row .woocommerce-input-wrapper {
	display: block;
	width: 100%;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	width: 100%;
	box-sizing: border-box;
}

.woocommerce form .form-row .required {
	color: var(--nt-danger);
}

/* --------------------- Cart / checkout / account ------------------- */

.woocommerce table.shop_table {
	width: 100%;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-radius);
	border-collapse: separate;
	border-spacing: 0;
	background: var(--nt-white);
	overflow: hidden;
}

.woocommerce table.shop_table th {
	background: #f7f2e6;
	color: var(--nt-ink);
	font-weight: 700;
	padding: 13px 14px;
}

.woocommerce table.shop_table td {
	border-top: 1px solid var(--nt-line);
	padding: 13px 14px;
}

.woocommerce table.shop_table td.product-name a {
	font-weight: 700;
	color: var(--nt-ink);
}

.woocommerce table.shop_table td.product-name a:hover {
	color: var(--nt-green);
}

.woocommerce a.remove {
	color: var(--nt-danger) !important;
	font-weight: 400;
}

.woocommerce a.remove:hover {
	background: var(--nt-danger);
	color: #fff !important;
}

.woocommerce-cart table.cart img {
	width: 64px;
	border-radius: 12px;
	border: 1px solid var(--nt-line);
	background: #fff;
}

.woocommerce #coupon_code {
	width: 170px;
	padding: 11px 14px;
	border-radius: 999px;
}

.woocommerce table.cart td.actions {
	text-align: right;
}

.woocommerce table.cart td.actions .coupon {
	float: left;
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}

/* Stacked, labelled rows on small screens (mirrors WooCommerce's
   smallscreen styles so the cart stays readable even without them) */
@media (max-width: 768px) {
	.woocommerce table.shop_table_responsive thead,
	.woocommerce-page table.shop_table_responsive thead {
		display: none;
	}

	.woocommerce table.shop_table_responsive tr,
	.woocommerce-page table.shop_table_responsive tr {
		display: block;
	}

	.woocommerce table.shop_table_responsive tr td,
	.woocommerce-page table.shop_table_responsive tr td {
		display: block;
		text-align: right;
	}

	.woocommerce table.shop_table_responsive tr td::before,
	.woocommerce-page table.shop_table_responsive tr td::before {
		content: attr(data-title) ': ';
		float: left;
		font-weight: 700;
		color: var(--nt-ink);
	}

	.woocommerce table.shop_table_responsive tr td.product-remove::before,
	.woocommerce table.shop_table_responsive tr td.actions::before,
	.woocommerce table.shop_table_responsive tr td.product-thumbnail::before,
	.woocommerce-page table.shop_table_responsive tr td.product-remove::before,
	.woocommerce-page table.shop_table_responsive tr td.actions::before,
	.woocommerce-page table.shop_table_responsive tr td.product-thumbnail::before {
		content: none;
	}

	.woocommerce-cart table.cart .product-thumbnail {
		display: none;
	}

	.woocommerce table.cart td.actions .coupon {
		float: none;
		display: flex;
	}

	.woocommerce table.cart td.actions .coupon #coupon_code {
		flex: 1 1 auto;
		width: auto;
	}

	.woocommerce table.cart td.actions > .button {
		width: 100%;
		margin-top: 10px;
	}
}

/* Cart totals as an order-summary card */

.woocommerce-cart .cart-collaterals .cart_totals {
	background: var(--nt-white);
	border: 1px solid var(--nt-line);
	border-radius: 20px;
	padding: 20px 22px 22px;
	box-shadow: var(--nt-shadow-sm);
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
	font-size: 21px;
	margin: 0 0 10px;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table {
	border: 0;
	background: transparent;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table th {
	background: transparent;
	padding-left: 0;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table td {
	padding-right: 0;
	text-align: right;
}

.woocommerce-cart .cart-collaterals .cart_totals .order-total td,
.woocommerce-cart .cart-collaterals .cart_totals .order-total th {
	font-size: 17px;
	color: var(--nt-ink);
	font-weight: 800;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	display: flex;
	font-size: 16px;
	padding: 15px 26px;
}

.cart_totals h2,
#order_review_heading,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3 {
	font-size: 22px;
}

/* Checkout: form left, order summary card right on wide screens */

@media (min-width: 1000px) {
	form.woocommerce-checkout {
		display: grid;
		grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
		column-gap: clamp(24px, 3vw, 44px);
		align-items: start;
	}

	form.woocommerce-checkout .col2-set {
		grid-column: 1;
		grid-row: 1 / span 3;
		float: none;
		width: 100%;
	}

	form.woocommerce-checkout #order_review_heading {
		grid-column: 2;
		grid-row: 1;
		margin-top: 0;
	}

	form.woocommerce-checkout #order_review {
		grid-column: 2;
		grid-row: 2;
		float: none;
		width: 100%;
	}

	form.woocommerce-checkout .col2-set .col-1,
	form.woocommerce-checkout .col2-set .col-2 {
		float: none;
		width: 100%;
	}
}

.woocommerce-checkout #order_review {
	background: var(--nt-white);
	border: 1px solid var(--nt-line);
	border-radius: 20px;
	padding: 20px 22px 22px;
	box-shadow: var(--nt-shadow-sm);
}

.woocommerce-checkout #order_review table.shop_table {
	border: 0;
	background: transparent;
}

.woocommerce-checkout #order_review table.shop_table th {
	background: transparent;
	padding-left: 0;
}

.woocommerce-checkout #order_review table.shop_table td {
	padding-right: 0;
	text-align: right;
}

.woocommerce-checkout #order_review .order-total th,
.woocommerce-checkout #order_review .order-total td {
	font-size: 17px;
	color: var(--nt-ink);
	font-weight: 800;
}

.woocommerce-checkout #payment {
	background: transparent;
	border: 0;
	border-radius: 0;
	border-top: 1px solid var(--nt-line);
	margin-top: 6px;
}

.woocommerce-checkout #payment ul.payment_methods {
	border-bottom: 1px solid var(--nt-line);
	padding: 14px 0;
	margin: 0;
	list-style: none;
}

.woocommerce-checkout #payment ul.payment_methods li {
	list-style: none;
}

.woocommerce-checkout #payment div.payment_box {
	background: var(--nt-cream-2);
	color: var(--nt-brown);
	border-radius: 12px;
}

.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: var(--nt-cream-2);
}

.woocommerce-checkout #payment div.form-row.place-order {
	padding-inline: 0;
}

.woocommerce #place_order,
.woocommerce-page #place_order {
	width: 100%;
	font-size: 16px;
	padding: 15px 26px;
}

/* Account */

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

.woocommerce-MyAccount-navigation li {
	margin: 0;
}

.woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 11px 15px;
	border-radius: 10px;
	font-weight: 600;
	color: var(--nt-brown);
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
	background: var(--nt-green-soft);
	color: var(--nt-green-dark);
}

/* ---------------------- Benefits (trust strip) --------------------- */

.nt-why__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(12px, 1.6vw, 20px);
}

.nt-why__card {
	background: var(--nt-white);
	border: 1px solid var(--nt-line);
	border-radius: 20px;
	padding: 24px 18px 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.nt-why__card:hover {
	transform: translateY(-3px);
	box-shadow: var(--nt-shadow-md);
	border-color: rgba(45, 106, 79, 0.3);
}

.nt-why__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--nt-green-soft);
	color: var(--nt-green);
	margin-bottom: 14px;
}

.nt-why__title {
	font-size: 15.5px;
	font-weight: 750;
	letter-spacing: -0.01em;
	margin-bottom: 6px;
}

.nt-why__text {
	font-size: 13.5px;
	color: var(--nt-brown-soft);
	margin: 0;
}

/* ---------------------------- Mission ------------------------------ */

.nt-mission {
	padding-block: clamp(10px, 2vw, 24px);
}

.nt-mission__band {
	position: relative;
	background:
		radial-gradient(720px 320px at 88% -30%, rgba(205, 235, 162, 0.42), transparent 60%),
		radial-gradient(560px 300px at 2% 120%, rgba(194, 154, 75, 0.26), transparent 55%),
		linear-gradient(155deg, #f9f0dd, var(--nt-beige) 84%);
	color: var(--nt-brown);
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-radius-lg);
	padding: clamp(36px, 5.5vw, 68px) clamp(22px, 4vw, 64px);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
}

.nt-mission__badge {
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--nt-white);
	border: 1px solid var(--nt-gold-soft);
	color: var(--nt-tea);
	margin-bottom: 18px;
}

.nt-mission__title {
	color: var(--nt-tea-deep);
	font-size: clamp(26px, 3.8vw, 42px);
	font-weight: 800;
	max-width: 24ch;
	margin-bottom: 14px;
}

.nt-mission__text {
	color: var(--nt-brown-soft);
	max-width: 62ch;
	font-size: clamp(15.5px, 1.5vw, 17.5px);
	margin-bottom: 26px;
}

/* -------------------------- Offers strip --------------------------- */

.nt-saleband {
	padding-block: 0;
}

.nt-saleband__inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: clamp(14px, 2.5vw, 26px);
	background:
		radial-gradient(520px 240px at 96% -40%, rgba(205, 235, 162, 0.2), transparent 60%),
		linear-gradient(120deg, var(--nt-green-deep), var(--nt-green-dark) 92%);
	color: #fff9ee;
	border-radius: var(--nt-radius-lg);
	padding: clamp(18px, 3vw, 26px) clamp(20px, 3.5vw, 36px);
}

.nt-saleband__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	flex: none;
	border-radius: 50%;
	background: rgba(205, 235, 162, 0.16);
	color: var(--nt-lime);
}

.nt-saleband__copy {
	flex: 1 1 260px;
}

.nt-saleband__title {
	color: #fff9ee;
	font-size: clamp(19px, 2.4vw, 24px);
	margin: 0 0 2px;
}

.nt-saleband__text {
	margin: 0;
	color: rgba(251, 247, 238, 0.82);
	font-size: 14.5px;
}

/* ------------------------ Delivery strip -------------------------- */

.nt-delivery__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 22px);
}

.nt-delivery__card {
	background: var(--nt-white);
	border: 1px solid var(--nt-line);
	border-radius: 20px;
	padding: 24px 22px 18px;
}

.nt-delivery__icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: var(--nt-gold-soft);
	color: var(--nt-tea);
	margin-bottom: 14px;
}

.nt-delivery__card h3 {
	font-size: 16.5px;
	font-weight: 750;
	margin-bottom: 5px;
}

.nt-delivery__card p {
	font-size: 14.5px;
	color: var(--nt-brown-soft);
	margin: 0;
}

.nt-delivery__card a {
	font-weight: 700;
}

/* ----------------------------- Pages ------------------------------- */

.nt-page__head {
	background: var(--nt-cream-2);
	border-bottom: 1px solid var(--nt-line);
	padding-block: clamp(30px, 4.5vw, 52px);
	margin-bottom: clamp(26px, 4vw, 44px);
}

.nt-page__title {
	font-size: clamp(29px, 4.2vw, 44px);
	margin: 0;
}

.nt-page__desc {
	color: var(--nt-brown-soft);
	margin-top: 8px;
}

.nt-page__content {
	padding-bottom: clamp(40px, 6vw, 72px);
}

.nt-entry {
	max-width: 820px;
}

.nt-entry h2 {
	font-size: clamp(23px, 3vw, 30px);
	margin-top: 1.4em;
}

.nt-entry h3 {
	font-size: clamp(19px, 2.4vw, 23px);
	margin-top: 1.3em;
}

.nt-entry ul,
.nt-entry ol {
	padding-left: 1.3em;
	margin-bottom: 1.2em;
}

.nt-entry li {
	margin-bottom: 0.45em;
}

.nt-entry blockquote {
	border-left: 3px solid var(--nt-gold);
	background: var(--nt-white);
	border-radius: 0 12px 12px 0;
	margin: 1.4em 0;
	padding: 16px 22px;
	font-family: var(--nt-font-display);
	font-size: 1.1em;
	font-style: italic;
}

.nt-entry img {
	border-radius: var(--nt-radius);
}

.nt-single__meta {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--nt-brown-soft);
	margin-bottom: 8px;
}

.nt-single__thumb img {
	border-radius: var(--nt-radius-lg);
	border: 1px solid var(--nt-line);
	margin-bottom: 26px;
}

/* Blog cards */

.nt-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
	padding-bottom: 40px;
}

.nt-post-card {
	background: var(--nt-white);
	border: 1px solid var(--nt-line);
	border-radius: 20px;
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nt-post-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--nt-shadow-md);
}

.nt-post-card__media img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	width: 100%;
}

.nt-post-card__body {
	padding: 18px 20px 20px;
}

.nt-post-card__meta {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--nt-brown-soft);
	margin-bottom: 6px;
}

.nt-post-card__title {
	font-size: 19px;
	margin-bottom: 8px;
}

.nt-post-card__title a {
	color: var(--nt-ink);
}

.nt-post-card__title a:hover {
	color: var(--nt-green);
}

.nt-post-card__excerpt {
	font-size: 14.5px;
	color: var(--nt-brown-soft);
}

.nt-post-card__excerpt p {
	margin: 0;
}

/* Search page */

.nt-search-again {
	max-width: 560px;
	margin-bottom: 26px;
}

/* Pagination (blog) */

.pagination,
.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding-bottom: 40px;
}

.nav-links .page-numbers {
	min-width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	padding: 0 10px;
	border: 1px solid var(--nt-line);
	border-radius: 999px;
	background: var(--nt-white);
	font-weight: 700;
	color: var(--nt-ink);
}

.nav-links .page-numbers.current {
	background: var(--nt-green);
	border-color: var(--nt-green);
	color: #fff;
}

/* 404 */

.nt-404 {
	text-align: center;
	padding-block: clamp(50px, 8vw, 100px);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.nt-404__mark {
	color: var(--nt-green);
	opacity: 0.7;
	margin-bottom: 6px;
}

.nt-404__title {
	font-size: clamp(28px, 4vw, 42px);
	max-width: 22ch;
}

.nt-404__text {
	color: var(--nt-brown-soft);
	max-width: 52ch;
}

.nt-404__search {
	width: min(480px, 100%);
	margin: 18px 0 26px;
}

.nt-404 .nt-hero__actions {
	justify-content: center;
}

/* Comments */

.nt-comments {
	max-width: 820px;
	padding-bottom: 50px;
}

.nt-comments__list {
	list-style: none;
	padding: 0;
}

.nt-comments__list .comment-body {
	background: var(--nt-white);
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-radius);
	padding: 16px 18px;
	margin-bottom: 14px;
}

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

.nt-footer {
	background: var(--nt-cream-2);
	border-top: 1px solid var(--nt-line);
	color: var(--nt-brown);
	margin-top: clamp(30px, 5vw, 60px);
	font-size: 14.5px;
}

.nt-footer a {
	color: var(--nt-brown-soft);
}

.nt-footer a:hover {
	color: var(--nt-green);
}

.nt-brand--footer {
	display: inline-block;
}

.nt-brand--footer .nt-brand__img {
	height: 110px;
	width: auto;
}

.nt-footer__grid {
	display: grid;
	grid-template-columns: 1.35fr 0.9fr 0.9fr 1.1fr;
	gap: clamp(24px, 4vw, 56px);
	padding-block: clamp(38px, 5.5vw, 60px) clamp(28px, 4vw, 40px);
}

.nt-footer__about {
	margin: 14px 0 18px;
	line-height: 1.65;
	color: var(--nt-brown-soft);
}

.nt-footer__title {
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nt-green);
	margin-bottom: 16px;
}

.nt-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.nt-footer__links--contact li {
	display: flex;
	align-items: center;
	gap: 9px;
}

.nt-footer__links--contact .nt-icon {
	color: var(--nt-green);
}

.nt-footer__socials {
	list-style: none;
	display: flex;
	gap: 10px;
	margin: 0;
	padding: 0;
}

.nt-footer__socials a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--nt-white);
	border: 1px solid var(--nt-line);
	color: var(--nt-green);
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.nt-footer__socials a:hover {
	background: var(--nt-green);
	border-color: var(--nt-green);
	color: #fff;
}

.nt-newsletter {
	margin-top: 18px;
}

.nt-footer__legal {
	border-top: 1px solid var(--nt-line);
	padding-block: 18px;
	text-align: center;
	font-size: 13.5px;
	color: var(--nt-brown-soft);
}

.nt-footer__legal p {
	margin: 0;
}

/* ------------------------ Reveal animation ------------------------- */

.nt-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.nt-reveal.is-inview {
	opacity: 1;
	transform: none;
}

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

/* Desktop: the search icon is redundant (inline bar is visible) */
@media (min-width: 781px) {
	.nt-action--search {
		display: none;
	}
}

/* Desktop: never show the mobile drawer, even if it was left open */
@media (min-width: 981px) {
	.nt-mobile-panel {
		display: none !important;
	}
}

@media (max-width: 1240px) {
	.nt-topbar__item:nth-child(n + 5) {
		display: none;
	}
}

/* Keep the nav strip on one line on smaller desktops */
@media (max-width: 1280px) {
	.nt-nav__list a {
		font-size: 13.5px;
		padding: 8px 10px;
	}

	.nt-mega__btn {
		font-size: 13.5px;
		padding: 10px 15px;
	}
}

@media (max-width: 1100px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.nt-why__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.nt-navstrip {
		display: none;
	}

	.nt-header__burger {
		display: grid;
	}
}

@media (max-width: 900px) {
	.nt-topbar__item--extra {
		display: none;
	}

	.nt-hero__banner {
		grid-template-columns: 1fr;
	}

	.nt-hero__copy {
		border-radius: 0 0 clamp(44px, 9vw, 80px) clamp(44px, 9vw, 80px);
		padding-right: clamp(30px, 4.5vw, 62px);
	}

	.nt-hero__visual {
		min-height: 0;
		display: flex;
		gap: 12px;
		padding: 18px;
	}

	.nt-hero__chip {
		position: static;
		width: 33.33% !important;
		aspect-ratio: 1;
		animation: none;
		border-radius: 16px;
	}

	.nt-cats__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nt-delivery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nt-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nt-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 780px) {
	.nt-header__search {
		display: none;
	}

	.nt-header__bar {
		min-height: 64px;
		gap: 10px;
	}

	.nt-brand__chip {
		width: 44px;
		height: 44px;
		border-radius: 12px;
	}

	.nt-brand__text {
		font-size: 20px;
	}
}

@media (max-width: 640px) {
	/* One trust message fits a phone; hide the rest */
	.nt-topbar__item:nth-child(n + 2) {
		display: none;
	}

	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		font-size: 14px;
		padding-inline: 12px;
	}

	.nt-card-cat,
	.nt-stock {
		margin-inline: 12px;
	}

	.woocommerce ul.products li.product .price {
		padding: 6px 12px 0;
		font-size: 16.5px;
	}

	.woocommerce ul.products li.product .button {
		margin: 12px 10px 12px;
		margin-top: auto;
		padding: 11px 10px;
		font-size: 13px;
	}

	.nt-section__head {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.nt-why__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nt-hero__title {
		font-size: clamp(30px, 8.4vw, 40px);
	}

	.nt-btn {
		width: 100%;
		max-width: 360px;
	}

	.nt-hero__actions .nt-btn {
		flex: 1 1 auto;
		width: auto;
	}
}

@media (max-width: 480px) {
	.nt-cats__grid {
		grid-template-columns: 1fr;
	}

	.nt-why__grid,
	.nt-delivery__grid,
	.nt-post-grid {
		grid-template-columns: 1fr;
	}

	.nt-mobile-cats {
		grid-template-columns: 1fr;
	}

	.nt-brand__text {
		font-size: 19px;
	}

	.nt-hero__visual {
		padding: 14px;
		gap: 8px;
	}

	.woocommerce .woocommerce-result-count,
	.woocommerce .woocommerce-ordering {
		float: none;
		text-align: left;
	}
}

/* Very small screens: single-column product cards */
@media (max-width: 350px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: 1fr;
	}
}

/* ------------- WooCommerce .alt / disabled button variants ---------- */

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
	background: var(--nt-lime);
	color: var(--nt-ink);
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover {
	background: var(--nt-lime-2);
	color: var(--nt-ink);
}

.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce button.button.alt.disabled {
	background: var(--nt-lime);
	color: var(--nt-ink);
	opacity: 0.55;
}

/* --------------------- Reduced motion / print ---------------------- */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.nt-reveal {
		opacity: 1;
		transform: none;
	}
}
