/*
Theme Name: Wadenlo
Theme URI: https://wadenlo.com/
Author: Wadenlo
Author URI: https://wadenlo.com/
Description: WooCommerce storefront theme for Wadenlo. A warm, outdoor-focused commerce layout with a photo-led hero, helpful product descriptions, value strip, category cards, reviews, product guidance, and a forest-green visual system with self-hosted Geist typography.
Version: 1.1.1
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wadenlo
Tags: e-commerce, custom-menu, featured-images, translation-ready, accessibility-ready
*/

/* ==========================================================================
   1. Typography — self-hosted, no third-party requests
   ========================================================================== */

@font-face {
	font-family: 'Geist';
	src: url('assets/fonts/Geist-Variable.woff2') format('woff2-variations'),
	     url('assets/fonts/Geist-Variable.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Geist Mono';
	src: url('assets/fonts/GeistMono-Variable.woff2') format('woff2-variations'),
	     url('assets/fonts/GeistMono-Variable.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

/* ==========================================================================
   2. Design tokens
   ========================================================================== */

:root {
	--ink: #173a2a;
	--ink-2: #0f2b1e;
	--bone: #f3f0e5;
	--paper: #fffdf7;
	--surface: #faf8ef;

	/* Wadenlo outdoor palette: forest, field green, and warm natural surfaces. */
	--brand: #2f6f44;
	--brand-hi: #a8d27b;
	--brand-deep: #17492d;
	--brand-soft: #e4efdd;
	--accent: #dce98b;

	--text: #1e2b23;
	--muted: #5b685f;
	--on-dark: #ffffff;
	--on-dark-muted: rgba(255, 255, 255, 0.74);

	--line: rgba(23, 58, 42, 0.12);
	--line-strong: rgba(23, 58, 42, 0.24);
	--line-dark: rgba(255, 255, 255, 0.14);

	--lift-1: 0 1px 2px rgba(15, 43, 30, 0.05), 0 12px 30px -18px rgba(15, 43, 30, 0.18);
	--lift-2: 0 3px 8px rgba(15, 43, 30, 0.06), 0 26px 58px -30px rgba(15, 43, 30, 0.30);

	--r-lg: 22px;
	--r-md: 14px;
	--r-sm: 9px;

	--shell: 1280px;
	--gutter: clamp(18px, 4vw, 48px);
	--section-y: clamp(56px, 7vw, 96px);

	--ease: cubic-bezier(0.32, 0.72, 0, 1);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--dur: 520ms;
	--dur-fast: 320ms;

	--font: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--font-mono: 'Geist Mono', ui-monospace, 'SFMono-Regular', monospace;

	--header-h: 68px;
}

/* ==========================================================================
   3. Reset & base
   ========================================================================== */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
	margin: 0;
	background: var(--surface);
	color: var(--text);
	font-family: var(--font);
	font-size: 1rem;
	line-height: 1.65;
	font-weight: 400;
	font-synthesis-weight: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }

button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.5em;
	font-weight: 560;
	line-height: 1.14;
	letter-spacing: -0.028em;
	text-wrap: balance;
}

h1 { font-size: clamp(1.9rem, 3.5vw, 2.65rem); }
h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h3 { font-size: clamp(1.05rem, 1.5vw, 1.25rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--brand); color: #fff; }

/* Text links inherit their focus colour. Filled controls use a double,
   high-contrast ring below so white button text never creates a white-on-white
   focus indicator. */
:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
	border-radius: 4px;
}

:is(
	button,
	input[type='button'],
	input[type='submit'],
	.button,
	.wc-block-components-button,
	.wp-block-button__link
):focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
	box-shadow: 0 0 0 5px var(--brand-deep);
}

/* The overlay itself receives focus when the menu opens; it must not draw a ring. */
.primary-navigation:focus,
.primary-navigation:focus-visible { outline: none; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 12px; left: 12px;
	z-index: 500;
	width: auto; height: auto;
	clip: auto; margin: 0;
	padding: 12px 20px;
	background: var(--ink);
	color: #fff;
	border-radius: var(--r-sm);
	font-weight: 600;
}

/* ==========================================================================
   4. Layout primitives
   ========================================================================== */

.site-shell {
	width: 100%;
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

.section__title {
	position: relative;
	margin-bottom: clamp(24px, 3vw, 40px);
	font-size: clamp(1.4rem, 2.2vw, 1.85rem);
}

.section__title::after {
	content: '';
	display: block;
	width: 44px;
	height: 3px;
	margin-top: 12px;
	border-radius: 999px;
	background: var(--brand);
}

.section__title--center { text-align: center; }
.section__title--center::after { margin-inline: auto; }

/* ==========================================================================
   5. Buttons & links
   ========================================================================== */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 30px;
	border: 0;
	border-radius: 999px;
	background: var(--ink);
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 620;
	letter-spacing: -0.005em;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 10px 24px -14px rgba(15, 43, 30, 0.58);
	transition: transform var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.button:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: 0 15px 28px -15px rgba(15, 43, 30, 0.62); }
.button:active { transform: scale(0.985); }

.button--primary { background: var(--brand); }
.button--primary:hover { background: var(--brand-deep); }

.button--light { background: #fff; color: var(--ink); }
.button--light:hover { background: var(--bone); }

.button--secondary {
	background: rgba(255, 253, 247, 0.72);
	color: var(--text);
	border: 1px solid var(--line-strong);
	box-shadow: none;
}
.button--secondary:hover { background: var(--brand-soft); }

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9375rem;
	font-weight: 520;
	color: var(--text);
	text-decoration: none;
	border-bottom: 1px solid var(--brand);
	padding-bottom: 2px;
	transition: color var(--dur-fast) var(--ease);
}

.text-link:hover { color: var(--brand-deep); }
.text-link--light { color: #fff; border-bottom-color: rgba(255, 255, 255, 0.5); }

/* ==========================================================================
   6. Promo bar
   ========================================================================== */

.promo-bar {
	background: var(--ink-2);
	color: rgba(255, 255, 255, 0.9);
	text-align: center;
}

.promo-bar p {
	margin: 0;
	padding-block: 9px;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	line-height: 1.5;
}

/* ==========================================================================
   7. Header
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 253, 247, 0.94);
	border-bottom: 1px solid var(--line);
	box-shadow: 0 9px 28px -28px rgba(15, 43, 30, 0.65);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2.5vw, 36px);
	min-height: var(--header-h);
}

.site-branding__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--text);
}

.site-branding__wordmark {
	font-size: clamp(1.25rem, 2vw, 1.65rem);
	font-weight: 680;
	letter-spacing: -0.045em;
	line-height: 1;
	color: var(--brand-deep);
}

.site-branding__link::before {
	content: '';
	width: 22px;
	height: 28px;
	flex: none;
	border-radius: 80% 20% 72% 28% / 72% 28% 72% 28%;
	background: linear-gradient(145deg, var(--brand-hi), var(--brand));
	box-shadow: inset -5px -5px 10px rgba(23, 73, 45, 0.18);
	transform: rotate(-10deg);
}

.site-header .site-branding__logo {
	width: auto;
	height: 42px;
	max-width: 190px;
	object-fit: contain;
}

@media (max-width: 47.99rem) {
	.site-header .site-branding__logo { height: 36px; }
}

.custom-logo-link img { max-height: 40px; width: auto; }

.primary-navigation { margin-inline: auto; }

.primary-menu {
	display: flex;
	align-items: center;
	gap: 2px;
	margin: 0; padding: 0;
	list-style: none;
}

.primary-menu > .menu-item > a {
	display: block;
	padding: 8px 13px;
	border-radius: var(--r-sm);
	font-size: 0.875rem;
	font-weight: 470;
	color: var(--text);
	text-decoration: none;
	white-space: nowrap;
	transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.primary-menu > .menu-item > a:hover,
.primary-menu > .current-menu-item > a { background: var(--brand-soft); }
.primary-menu > .current-menu-item > a { color: var(--brand-deep); }

.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% - 4px);
	min-width: 232px;
	margin: 0; padding: 6px;
	list-style: none;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	box-shadow: var(--lift-2);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), visibility var(--dur-fast);
}

.primary-menu .menu-item-has-children { position: relative; }

.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}

.primary-menu .sub-menu a {
	display: block;
	padding: 8px 12px;
	border-radius: var(--r-sm);
	font-size: 0.875rem;
	text-decoration: none;
	transition: background-color var(--dur-fast) var(--ease);
}

.primary-menu .sub-menu a:hover { background: var(--bone); }

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 2px;
	margin-inline-start: auto;
}

.primary-navigation + .site-header__actions { margin-inline-start: 0; }

.site-header__action {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 10px;
	border-radius: var(--r-sm);
	color: var(--text);
	text-decoration: none;
	transition: background-color var(--dur-fast) var(--ease);
}

.site-header__action:hover { background: var(--bone); }
.site-header__action svg { width: 19px; height: 19px; }

.site-header__cart-count.is-empty { display: none; }

.site-header__cart-count {
	position: absolute;
	top: 2px;
	right: 0;
	display: grid;
	place-items: center;
	min-width: 17px; height: 17px;
	padding-inline: 4px;
	border-radius: 999px;
	background: var(--brand);
	color: #fff;
	font-family: var(--font-mono);
	font-size: 0.5625rem;
	font-weight: 600;
	line-height: 1;
}

/* Hamburger */
.menu-toggle {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-inline-start: auto;
	padding: 8px 14px 8px 11px;
	border: 1px solid var(--line-strong);
	border-radius: var(--r-sm);
	background: transparent;
	color: var(--text);
	font-size: 0.8125rem;
	font-weight: 500;
	cursor: pointer;
}

.menu-toggle:hover { background: var(--bone); }

.menu-toggle__icon { position: relative; width: 16px; height: 11px; flex: none; }

.menu-toggle__icon span {
	position: absolute;
	left: 0;
	width: 100%; height: 1.5px;
	border-radius: 2px;
	background: currentColor;
	transition: transform var(--dur) var(--ease);
}

.menu-toggle__icon span:first-child { top: 1px; }
.menu-toggle__icon span:last-child { bottom: 1px; }

.menu-toggle[aria-expanded='true'] .menu-toggle__icon span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] .menu-toggle__icon span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

@media (min-width: 64rem) { .menu-toggle { display: none; } }

.primary-navigation__account { display: none; }

/* Mobile overlay navigation */
@media (max-width: 63.99rem) {
	.site-branding,
	.menu-toggle,
	.site-header__actions { position: relative; z-index: 95; }

	/* Logo on the left; search, cart and Menu grouped together on the right. */
	.site-branding { margin-inline-end: auto; }
	.site-header__actions { order: 2; margin-inline-start: 0; gap: 0; }
	.menu-toggle { order: 3; margin-inline-start: 6px; }

	/* Account moves into the overlay so the bar stays to three controls. */
	.site-header__action--account { display: none; }

	.primary-navigation__account {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		margin-top: 20px;
		padding: 14px 2px;
		font-size: 1rem;
		font-weight: 520;
		color: var(--muted);
		text-decoration: none;
	}

	.primary-navigation__account svg { width: 19px; height: 19px; }
	.primary-navigation__account:hover { color: var(--brand-deep); }

	.primary-navigation {
		position: fixed;
		inset: 0;
		z-index: 90;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		padding: calc(var(--header-h) + 32px) var(--gutter) 48px;
		background: var(--paper);
		opacity: 0;
		visibility: hidden;
		transition: opacity var(--dur) var(--ease), visibility var(--dur);
		overflow-y: auto;
		margin-inline: 0;
	}

	.primary-navigation.is-open { opacity: 1; visibility: visible; }

	.primary-menu { flex-direction: column; align-items: stretch; gap: 0; }

	.primary-menu > .menu-item > a {
		padding: 16px 2px;
		border-radius: 0;
		border-bottom: 1px solid var(--line);
		font-size: 1.25rem;
		font-weight: 520;
		letter-spacing: -0.02em;
	}

	.primary-menu > .menu-item > a:hover { background: transparent; color: var(--brand-deep); }

	.primary-menu > .menu-item { opacity: 0; transform: translate3d(0, 18px, 0); }

	.primary-navigation.is-open .primary-menu > .menu-item {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		transition: opacity 420ms var(--ease-out), transform 520ms var(--ease-out);
	}

	.primary-navigation.is-open .primary-menu > .menu-item:nth-child(1) { transition-delay: 50ms; }
	.primary-navigation.is-open .primary-menu > .menu-item:nth-child(2) { transition-delay: 90ms; }
	.primary-navigation.is-open .primary-menu > .menu-item:nth-child(3) { transition-delay: 130ms; }
	.primary-navigation.is-open .primary-menu > .menu-item:nth-child(4) { transition-delay: 170ms; }
	.primary-navigation.is-open .primary-menu > .menu-item:nth-child(5) { transition-delay: 210ms; }
	.primary-navigation.is-open .primary-menu > .menu-item:nth-child(6) { transition-delay: 250ms; }
	.primary-navigation.is-open .primary-menu > .menu-item:nth-child(7) { transition-delay: 290ms; }

	.primary-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		border: 0;
		box-shadow: none;
		padding: 4px 0 10px 2px;
	}

	/* Keep navigation usable if the theme script is unavailable. */
	html:not(.js) .menu-toggle { display: none; }

	html:not(.js) .site-header__inner { flex-wrap: wrap; }

	html:not(.js) .primary-navigation {
		position: static;
		inset: auto;
		z-index: auto;
		display: block;
		order: 4;
		width: 100%;
		padding: 8px 0 0;
		margin: 0;
		opacity: 1;
		visibility: visible;
		overflow: visible;
	}

	html:not(.js) .primary-menu {
		flex-flow: row wrap;
		gap: 4px 10px;
	}

	html:not(.js) .primary-menu > .menu-item {
		opacity: 1;
		transform: none;
	}

	html:not(.js) .primary-menu > .menu-item > a {
		padding: 8px 2px;
		border: 0;
		font-size: 0.875rem;
	}

	html:not(.js) .primary-navigation__account { display: inline-flex; }
}

/* ==========================================================================
   8. Hero
   ========================================================================== */

/* Full-bleed split hero: copy panel on the left, photo filling the right edge
   to edge. No contained card, no gaps — the value strip sits flush beneath. */
.hero {
	display: grid;
	background: #edeeef;
}

.hero__inner {
	display: flex;
	align-items: center;
	padding: clamp(32px, 6vw, 56px) var(--gutter);
}

.hero__copy { width: 100%; }

.hero__media { min-width: 0; }

.hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 30%;
}

.hero__eyebrow {
	margin: 0 0 10px;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
}

.hero h1 {
	max-width: 16ch;
	margin-bottom: 18px;
	color: var(--text);
	font-weight: 560;
}

.hero__summary {
	max-width: 44ch;
	margin-bottom: 24px;
	color: var(--muted);
	font-size: 1rem;
}

@media (max-width: 61.99rem) {
	.hero__media { order: -1; }
	.hero__image { aspect-ratio: 16 / 11; height: auto; }
}

@media (min-width: 62rem) {
	.hero {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		/* Fix the row height so the square photo crops to the band instead of
		   stretching the whole hero to its own 1:1 proportions. */
		grid-template-rows: clamp(400px, 33vw, 520px);
		align-items: stretch;
	}

	.hero__media { overflow: hidden; }

	/* Align the copy with the site shell instead of the raw viewport edge. */
	.hero__inner {
		justify-content: flex-end;
		padding-inline: var(--gutter) clamp(32px, 4vw, 64px);
	}

	.hero__copy { max-width: calc(var(--shell) / 2 - var(--gutter)); width: 100%; }

}

/* ==========================================================================
   9. Value strip
   ========================================================================== */

.value-strip {
	background: var(--brand);
	color: #fff;
	text-align: center;
}

.value-strip p {
	margin: 0;
	padding-block: 13px;
	font-size: 0.8125rem;
	font-weight: 520;
	letter-spacing: 0.02em;
}

/* ==========================================================================
   10. Category cards
   ========================================================================== */

.section--categories { background: var(--paper); }

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

@media (min-width: 56rem) {
	.category-cards { grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); }
}

.category-card {
	display: block;
	text-decoration: none;
	color: var(--text);
}

.category-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--bone);
}

.category-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: clamp(12px, 2vw, 24px);
	transition: transform var(--dur) var(--ease);
}

.category-card:hover .category-card__media img { transform: scale(1.04); }

.category-card__label {
	display: block;
	margin-top: 12px;
	font-size: 0.9375rem;
	font-weight: 540;
	letter-spacing: -0.015em;
}

.category-card:hover .category-card__label { color: var(--brand-deep); }

/* ==========================================================================
   11. Statement band
   ========================================================================== */

.section--statement { background: var(--bone); }

.statement-grid {
	display: grid;
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
}

@media (min-width: 60rem) {
	.statement-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
	.statement-grid.is-text-only { grid-template-columns: minmax(0, 1fr); }
}

.statement-grid.is-text-only .statement-grid__text { max-width: 760px; }

.statement-grid__text h2 { margin-bottom: 14px; }

.statement-grid__text p {
	max-width: 52ch;
	color: var(--muted);
	font-size: 1.0625rem;
	margin-bottom: 20px;
}

.statement-grid__media img {
	width: 100%;
	border-radius: var(--r-lg);
	object-fit: cover;
}

/* ==========================================================================
   12. Testimonials
   ========================================================================== */

.section--testimonials { background: var(--paper); }

.testimonial-grid {
	display: grid;
	gap: clamp(14px, 1.8vw, 22px);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.testimonial {
	margin: 0;
	padding: clamp(20px, 2.4vw, 28px);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--bone);
}

.testimonial__stars { display: flex; gap: 3px; margin-bottom: 14px; }

.testimonial__stars svg {
	width: 15px; height: 15px;
	fill: var(--brand);
	stroke: none;
}

.testimonial blockquote {
	margin: 0 0 14px;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text);
}

.testimonial figcaption {
	font-size: 0.8125rem;
	font-weight: 540;
	color: var(--muted);
}

/* ==========================================================================
   13. Quality section
   ========================================================================== */

.section--quality { background: var(--paper); }

.quality-grid {
	display: grid;
	gap: clamp(28px, 4vw, 60px);
	align-items: center;
}

@media (min-width: 60rem) {
	.quality-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
	.quality-grid.is-text-only { grid-template-columns: minmax(0, 1fr); }
}

.quality-grid.is-text-only .quality-grid__text { max-width: 760px; }

.quality-grid__text p {
	color: var(--muted);
	max-width: 54ch;
}

.quality-grid__text .button { margin-top: 12px; }

.quality-grid__media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: var(--r-lg);
	background: #edeeef;
}

/* ==========================================================================
   14. FAQ accordion
   ========================================================================== */

.section--faq { background: var(--bone); }

.accordion {
	display: grid;
	gap: 8px;
	max-width: 820px;
	margin-inline: auto;
}

.accordion details {
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	background: var(--paper);
}

.accordion summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 20px;
	font-size: 0.9375rem;
	font-weight: 520;
	cursor: pointer;
	list-style: none;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary span { position: relative; width: 13px; height: 13px; flex: none; }

.accordion summary span::before,
.accordion summary span::after {
	content: '';
	position: absolute;
	top: 50%; left: 0;
	width: 100%; height: 1.5px;
	border-radius: 2px;
	background: var(--brand);
	transform: translateY(-50%);
	transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease);
}

.accordion summary span::after { transform: translateY(-50%) rotate(90deg); }
.accordion details[open] summary span::after { transform: translateY(-50%) rotate(0deg); opacity: 0; }

.accordion details > p {
	margin: 0;
	padding: 0 20px 18px;
	font-size: 0.9375rem;
	color: var(--muted);
	max-width: 66ch;
}

/* ==========================================================================
   15. Page hero & content pages
   ========================================================================== */

.page-hero {
	background: var(--bone);
	border-bottom: 1px solid var(--line);
	padding-block: clamp(30px, 4vw, 52px);
}

.page-hero__inner { max-width: 74ch; }
.page-hero h1 { margin-bottom: 0; }
.page-hero p { color: var(--muted); max-width: 58ch; margin-top: 14px; }
.page-hero__description { color: var(--muted); margin-top: 14px; max-width: 58ch; }

.breadcrumbs {
	margin-bottom: 16px;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.breadcrumbs a { color: var(--text); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand-deep); }
.breadcrumbs span { margin-inline: 7px; opacity: 0.5; }

.page-hero .entry-meta {
	margin-bottom: 12px;
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.page-entry__body,
.single-entry__body,
.archive-layout { padding-block: clamp(36px, 5vw, 72px); }

.page-entry__featured,
.single-entry__featured { margin: 0 0 clamp(24px, 3.5vw, 44px); }

.page-entry__featured img,
.single-entry__featured img { border-radius: var(--r-lg); width: 100%; }

.prose {
	max-width: 74ch;
	font-size: 1.0625rem;
	line-height: 1.72;
	color: #24272d;
}

/* Cart and Checkout are store interfaces, not long-form articles. Give their
   WooCommerce blocks the full usable shell width on desktop. */
@media (min-width: 48.01rem) {
	body.woocommerce-cart .page-entry__body > .prose,
	body.woocommerce-checkout .page-entry__body > .prose {
		width: 100%;
		max-width: none;
		min-width: 0;
	}
}

.prose > *:first-child { margin-top: 0; }
.prose h2 { margin-top: 2em; margin-bottom: 0.5em; font-size: clamp(1.25rem, 2vw, 1.5rem); }
.prose h3 { margin-top: 1.6em; font-size: 1.125rem; }
.prose a { color: var(--brand-deep); }
.prose ul, .prose ol { padding-left: 1.25em; }
.prose li { margin-bottom: 0.45em; }
.prose strong { font-weight: 600; }

.prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 0.9375rem; }
.prose th, .prose td { padding: 11px 13px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { font-weight: 560; background: var(--bone); }

.prose blockquote {
	margin: 1.5em 0;
	padding: 4px 0 4px 22px;
	border-left: 2px solid var(--brand);
	color: var(--muted);
}

.post-grid {
	display: grid;
	gap: clamp(14px, 2vw, 24px);
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
}

.post-card {
	display: flex;
	flex-direction: column;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--paper);
	overflow: hidden;
	transition: box-shadow var(--dur) var(--ease);
}

.post-card:hover { box-shadow: var(--lift-2); }

.post-card__media { display: block; background: var(--bone); }
.post-card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.post-card__placeholder { display: block; aspect-ratio: 16 / 10; background: var(--bone); }
.post-card__content { flex: 1; padding: clamp(18px, 2.2vw, 26px); }

.post-card__content .entry-meta {
	margin: 0 0 8px;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.post-card h2 { font-size: 1.125rem; margin-bottom: 8px; }
.post-card h2 a { text-decoration: none; }
.post-card h2 a:hover { color: var(--brand-deep); }
.post-card p { font-size: 0.9375rem; color: var(--muted); }

.post-navigation {
	display: grid;
	gap: 14px;
	padding-block: clamp(24px, 3.5vw, 48px);
	border-top: 1px solid var(--line);
}

@media (min-width: 44rem) { .post-navigation { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.post-navigation div { display: grid; gap: 5px; }
.post-navigation span {
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}
.post-navigation a { font-weight: 520; text-decoration: none; }
.post-navigation a:hover { color: var(--brand-deep); }

.navigation.pagination { padding-top: 12px; }
.navigation.pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }

.navigation.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 40px; height: 40px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	font-size: 0.875rem;
	text-decoration: none;
}

.navigation.pagination .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }

.empty-state {
	padding: clamp(36px, 6vw, 72px);
	border: 1px dashed var(--line-strong);
	border-radius: var(--r-lg);
	text-align: center;
	background: var(--bone);
}

.empty-state p { color: var(--muted); margin: 0; }
.empty-state h2 { font-size: 1.4rem; }
.empty-state .search-form { max-width: 420px; margin: 20px auto; }

/* 404 */
.not-found { padding-block: clamp(56px, 8vw, 120px); }

.not-found__grid { display: grid; gap: clamp(28px, 4vw, 56px); align-items: start; }

@media (min-width: 56rem) {
	.not-found__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
}

.not-found__grid > div > p { color: var(--muted); max-width: 46ch; }
.not-found__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 24px; }

.not-found__search {
	padding: clamp(20px, 2.6vw, 30px);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--bone);
}

.not-found__search h2 { font-size: 1.0625rem; margin-bottom: 14px; }

.search-form { display: flex; gap: 8px; align-items: center; }
.search-form label { flex: 1; margin: 0; }
.search-form input[type='submit'] { flex: none; padding-inline: 22px; }

.commerce-main { background: var(--paper); }
.commerce-shell { padding-block: clamp(32px, 4.5vw, 68px); }

/* ==========================================================================
   16. Forms
   ========================================================================== */

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='tel'],
input[type='date'],
textarea,
select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--line-strong);
	border-radius: var(--r-sm);
	background: var(--paper);
	font-size: 0.9375rem;
	line-height: 1.4;
	height: auto;
	transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

input:focus, textarea:focus, select:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(47, 111, 68, 0.22);
	outline: none;
}

label { display: block; font-size: 0.875rem; font-weight: 510; margin-bottom: 6px; }

input[type='submit'],
button[type='submit'],
.wp-block-search__button {
	padding: 12px 26px;
	border: 0;
	border-radius: var(--r-sm);
	background: var(--ink);
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 540;
	cursor: pointer;
	transition: background-color var(--dur-fast) var(--ease);
}

input[type='submit']:hover, button[type='submit']:hover { background: var(--brand); }

/* ==========================================================================
   17. WooCommerce

   WooCommerce ships its loop styles as `.woocommerce ul.products li.product …`.
   `:is(.woocommerce, body)` matches that specificity so these rules win on shop
   pages, and still matches the homepage loop, which has no .woocommerce wrapper.
   ========================================================================== */

.woocommerce-breadcrumb {
	margin-bottom: 22px;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.woocommerce-breadcrumb a { color: var(--text); text-decoration: none; }

.woocommerce-products-header__title,
.woocommerce-products-header h1 { margin-bottom: 8px; }

.woocommerce-result-count {
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0;
}

.woocommerce-ordering select { width: auto; min-width: 210px; padding-block: 10px; }

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-message {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin: 0 0 24px;
	padding: 15px 20px;
	border: 1px solid var(--line);
	border-left: 3px solid var(--brand);
	border-radius: var(--r-sm);
	background: var(--bone);
	font-size: 0.9375rem;
	list-style: none;
}

.woocommerce-error { border-left-color: #c0392b; }
.woocommerce-message .button, .woocommerce-info .button { margin-inline-start: auto; }

/* Product loop */
:is(.woocommerce, body) ul.products {
	display: grid;
	gap: clamp(12px, 1.6vw, 22px);
	margin: 0; padding: 0;
	list-style: none;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 48rem) { :is(.woocommerce, body) ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 64rem) { :is(.woocommerce, body) ul.products { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

:is(.woocommerce, body) ul.products::before,
:is(.woocommerce, body) ul.products::after { content: none !important; }

:is(.woocommerce, body) ul.products li.product {
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--paper);
	overflow: hidden;
	transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
	width: auto !important;
	float: none !important;
	clear: none !important;
}

:is(.woocommerce, body) ul.products li.product:hover {
	box-shadow: var(--lift-2);
	border-color: var(--line-strong);
}

:is(.woocommerce, body) ul.products li.product > a.woocommerce-LoopProduct-link {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 0;
	text-decoration: none;
	color: inherit;
}

:is(.woocommerce, body) ul.products li.product img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: #fff;
	padding: clamp(12px, 2vw, 22px);
	margin: 0;
	transition: transform var(--dur) var(--ease);
}

:is(.woocommerce, body) ul.products li.product:hover img { transform: scale(1.035); }

:is(.woocommerce, body) ul.products li.product .wadenlo-loop-brand {
	display: block;
	padding: clamp(10px, 1.5vw, 14px) clamp(13px, 1.6vw, 18px) 0;
	font-family: var(--font-mono);
	font-size: 0.5625rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}

:is(.woocommerce, body) ul.products li.product .woocommerce-loop-product__title {
	padding: 4px clamp(13px, 1.6vw, 18px) 0;
	font-size: 0.9375rem;
	font-weight: 520;
	line-height: 1.35;
	letter-spacing: -0.015em;
	color: var(--text);
	margin: 0 0 8px;
	/* The title is a flex item, and flexbox blockifies `-webkit-box`, which
	   silently disables -webkit-line-clamp. A fixed three-line box clips
	   reliably and keeps every price on the same baseline across a row. */
	display: block;
	height: 4.05em;
	overflow: hidden;
}

:is(.woocommerce, body) ul.products li.product .price {
	display: block;
	margin: auto 0 0;
	padding: 0 clamp(13px, 1.6vw, 18px) clamp(12px, 1.6vw, 16px);
	font-size: 1.0625rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--text);
}

:is(.woocommerce, body) ul.products li.product .price del { opacity: 0.45; font-weight: 400; margin-right: 6px; font-size: 0.85em; }
:is(.woocommerce, body) ul.products li.product .price ins { text-decoration: none; color: var(--brand); }

:is(.woocommerce, body) ul.products li.product .button,
:is(.woocommerce, body) ul.products li.product .added_to_cart {
	margin: 0 clamp(13px, 1.6vw, 18px) clamp(13px, 1.6vw, 18px);
	justify-content: center;
	padding: 11px 18px;
	font-size: 0.8125rem;
}

:is(.woocommerce, body) ul.products li.product .onsale,
.wadenlo-badge {
	position: absolute;
	top: 12px; left: 12px;
	z-index: 2;
	margin: 0;
	padding: 5px 10px;
	border-radius: var(--r-sm);
	background: var(--brand);
	color: #fff;
	font-family: var(--font-mono);
	font-size: 0.5625rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1;
	min-height: 0; min-width: 0;
}

/* Single product */
.woocommerce.single-product div.product {
	display: grid;
	gap: clamp(28px, 4vw, 60px);
	align-items: start;
}

@media (min-width: 64rem) {
	.woocommerce.single-product div.product { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
	.woocommerce.single-product div.product .woocommerce-product-gallery { position: sticky; top: calc(var(--header-h) + 24px); }
}

.woocommerce.single-product .woocommerce-product-gallery {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: #fff;
	overflow: hidden;
}

.woocommerce.single-product .woocommerce-product-gallery img { background: #fff; }

.woocommerce.single-product .flex-control-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 8px;
	padding: 0;
	list-style: none;
}

.woocommerce.single-product .flex-control-thumbs li { margin: 0; width: 76px !important; }

@media (max-width: 63.99rem) {
	.woocommerce.single-product .flex-control-thumbs {
		flex-wrap: nowrap;
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		scroll-snap-type: inline proximity;
		scrollbar-width: thin;
		padding-bottom: 8px;
	}

	.woocommerce.single-product .flex-control-thumbs li {
		flex: 0 0 76px;
		scroll-snap-align: start;
	}
}

.woocommerce.single-product .flex-control-thumbs img {
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	background: #fff;
	opacity: 0.6;
	cursor: pointer;
	transition: opacity var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.woocommerce.single-product .flex-control-thumbs img:hover,
.woocommerce.single-product .flex-control-thumbs img.flex-active { opacity: 1; border-color: var(--brand); }

.woocommerce.single-product div.product .summary {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}

.woocommerce.single-product .product_title { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 14px; }

.wadenlo-product-brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
}

.woocommerce.single-product div.product p.price,
.woocommerce.single-product div.product span.price {
	display: block;
	margin: 0 0 6px;
	font-size: clamp(1.4rem, 2.3vw, 1.85rem);
	font-weight: 620;
	letter-spacing: -0.03em;
	color: var(--text);
}

.woocommerce.single-product div.product p.price del { opacity: 0.4; font-weight: 400; font-size: 0.6em; }
.woocommerce.single-product div.product p.price ins { text-decoration: none; color: var(--brand); }

.woocommerce-product-details__short-description {
	margin: 18px 0 22px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
	font-size: 0.9375rem;
	color: var(--muted);
}

.woocommerce.single-product .stock {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 500;
}

.woocommerce.single-product .stock::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.woocommerce.single-product .stock.in-stock { color: #1a7f47; }
.woocommerce.single-product .stock.out-of-stock { color: #b3341f; }

.woocommerce.single-product div.product.product-type-simple form.cart {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	width: 100%;
	gap: 12px;
	margin: 0 0 12px !important;
}

/* WooCommerce adds clearfix pseudo-elements to the cart form. In a flex
   container those become flex items and reduce the available button width. */
.woocommerce.single-product div.product.product-type-simple form.cart::before,
.woocommerce.single-product div.product.product-type-simple form.cart::after { content: none !important; display: none !important; }

.woocommerce.single-product form.cart .quantity { flex: none; margin: 0; }

.woocommerce.single-product form.cart .quantity input[type='number'] {
	width: 88px;
	height: 54px;
	padding: 0 10px;
	text-align: center;
	font-family: var(--font-mono);
}

.woocommerce.single-product form.cart .single_add_to_cart_button {
	flex: 1 1 auto;
	min-width: 0;
	height: 54px;
	justify-content: center;
	padding: 0 30px;
	border: 0;
	border-radius: var(--r-sm);
	background: var(--brand);
	color: #fff;
	font-size: 1rem;
	font-weight: 560;
	cursor: pointer;
	transition: background-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.woocommerce.single-product form.cart .single_add_to_cart_button:hover { background: var(--brand-deep); }
.woocommerce.single-product form.cart .single_add_to_cart_button:active { transform: scale(0.985); }

.wadenlo-assurance {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
}

@media (min-width: 40rem) { .wadenlo-assurance { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.wadenlo-assurance li {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px 14px;
	background: var(--paper);
	font-size: 0.75rem;
	line-height: 1.4;
	color: var(--muted);
}

.wadenlo-assurance svg { width: 18px; height: 18px; color: var(--brand); }
.wadenlo-assurance strong { display: block; font-size: 0.8125rem; font-weight: 540; color: var(--text); }

.product__shipping-note {
	margin: 0 0 16px;
	font-size: 0.8125rem;
	color: var(--muted);
}

.product__shipping-note a { color: var(--brand-deep); }

/* The description spans the full width below the buy column: long spec lists
   read badly in a narrow sticky column. */
.product__description {
	grid-column: 1 / -1;
	margin: clamp(40px, 5vw, 72px) 0 0;
	padding-top: clamp(26px, 3.4vw, 44px);
	border-top: 1px solid var(--line);
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #24272d;
}

.product__description > p { max-width: 78ch; }
.product__description > *:first-child { margin-top: 0; }
.product__description img {
	height: auto;
	margin-block: 24px;
	border-radius: var(--r-md);
}

/* Each section gets a real heading with a brand rule, not a caption. */
.product__description h2,
.product__description h3 {
	margin: 2.1em 0 1em;
	padding: 0 0 0 14px;
	border: 0;
	border-left: 3px solid var(--brand);
	font-family: var(--font);
	font-size: 1.0625rem;
	font-weight: 580;
	letter-spacing: -0.02em;
	text-transform: none;
	color: var(--text);
}

.product__description > h2:first-child,
.product__description > h3:first-child { margin-top: 0; }

/* Two columns so a 15-item feature list is eight rows, not fifteen. */
.product__description ul,
.product__description ol {
	max-width: 1000px;
	padding-left: 1.15em;
	margin: 0;
}

.product__description li {
	margin-bottom: 0.55em;
	break-inside: avoid;
	padding-left: 2px;
}

.product__description li::marker { color: var(--brand); }

@media (min-width: 48rem) {
	.product__description ul,
	.product__description ol { columns: 2; column-gap: clamp(32px, 4vw, 64px); }
}

.product__accordions { margin-top: 24px; max-width: none; }

.product__accordion-body {
	padding: 0 20px 18px;
	font-size: 0.9375rem;
	color: var(--muted);
}

.product__accordion-body p { margin: 0; }
.product__accordion-body table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.product__accordion-body th,
.product__accordion-body td { padding: 9px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.product__accordion-body th { width: 42%; font-weight: 540; color: var(--text); }
.product__accordion-body p:last-child,
.product__accordion-body tr:last-child th,
.product__accordion-body tr:last-child td { border-bottom: 0; }

.product_meta {
	padding-top: 18px;
	border-top: 1px solid var(--line);
	font-size: 0.8125rem;
	color: var(--muted);
}

.product_meta > span { display: block; margin-bottom: 5px; }
.product_meta a { color: var(--text); }

/* Product tabs */
.woocommerce div.product .woocommerce-tabs { margin-top: clamp(40px, 5vw, 72px); grid-column: 1 / -1; }

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 0 0 24px !important;
	padding: 0 !important;
	list-style: none;
	border-bottom: 1px solid var(--line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after { content: none !important; }

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0; padding: 0;
	border: 0;
	background: none;
	border-radius: 0;
}

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

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 12px 18px;
	border-bottom: 2px solid transparent;
	font-size: 0.875rem;
	font-weight: 520;
	color: var(--muted);
	text-decoration: none;
	transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover { color: var(--text); border-bottom-color: var(--brand); }

.woocommerce div.product .woocommerce-tabs .panel { max-width: 78ch; font-size: 0.9375rem; line-height: 1.7; color: #24272d; }
.woocommerce div.product .woocommerce-tabs .panel h2 { font-size: 1.25rem; }
.woocommerce div.product .woocommerce-tabs .panel table { width: 100%; border-collapse: collapse; }
.woocommerce div.product .woocommerce-tabs .panel th,
.woocommerce div.product .woocommerce-tabs .panel td { padding: 11px 13px; border-bottom: 1px solid var(--line); text-align: left; }
.woocommerce div.product .woocommerce-tabs .panel th { font-weight: 550; width: 34%; }

.related.products,
.upsells.products { grid-column: 1 / -1; margin-top: clamp(40px, 5vw, 72px); }
.related.products > h2, .upsells.products > h2 { margin-bottom: 24px; }

/* Sticky mobile buy bar */
.wadenlo-buybar {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 95;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, 0.97);
	border-top: 1px solid var(--line);
	box-shadow: 0 -6px 24px -18px rgba(10, 11, 13, 0.4);
	transform: translate3d(0, 110%, 0);
	visibility: hidden;
	pointer-events: none;
	transition: transform var(--dur) var(--ease), visibility 0s linear var(--dur);
}

.wadenlo-buybar.is-visible {
	transform: translate3d(0, 0, 0);
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
}
.wadenlo-buybar__info { min-width: 0; flex: 1; }

.wadenlo-buybar__title {
	display: block;
	font-size: 0.75rem;
	color: var(--muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.wadenlo-buybar__price { display: block; font-size: 1rem; font-weight: 600; letter-spacing: -0.02em; }

.wadenlo-buybar__action {
	flex: none;
	padding: 12px 24px;
	border: 0;
	border-radius: var(--r-sm);
	background: var(--brand);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 550;
	cursor: pointer;
	text-decoration: none;
}

@media (min-width: 64rem) { .wadenlo-buybar { display: none; } }
@media (max-width: 63.99rem) { body.single-product { padding-bottom: 84px; } }

/* Cart, checkout, account — classic markup */
.woocommerce table.shop_table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	font-size: 0.9375rem;
}

.woocommerce table.shop_table th {
	padding: 14px 15px;
	background: var(--bone);
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 500;
	text-align: left;
	border: 0;
}

.woocommerce table.shop_table td { padding: 15px; border-top: 1px solid var(--line); vertical-align: middle; }
.woocommerce table.shop_table img { width: 60px; border-radius: var(--r-sm); background: #fff; }

.woocommerce .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-order,
.woocommerce-MyAccount-content {
	padding: clamp(20px, 2.6vw, 30px);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--bone);
}

.woocommerce .cart_totals h2,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
#order_review_heading { font-size: 1.125rem; }

@media (min-width: 62rem) {
	.woocommerce-checkout form.checkout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(26px, 3.2vw, 48px); align-items: start; }
	.woocommerce-checkout form.checkout > .col2-set { grid-column: 1; }
	.woocommerce-checkout form.checkout > #order_review_heading,
	.woocommerce-checkout form.checkout > #order_review { grid-column: 2; }
}

.woocommerce .quantity { display: inline-flex; }

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 24px;
	border: 0;
	border-radius: var(--r-sm);
	background: var(--ink);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 530;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color var(--dur-fast) var(--ease);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { background: var(--brand); color: #fff; }

.woocommerce .checkout-button,
.woocommerce #place_order,
.woocommerce button.button.alt { background: var(--brand); }
.woocommerce .checkout-button:hover, .woocommerce #place_order:hover { background: var(--brand-deep); }

.woocommerce a.button.wc-backward { background: transparent; color: var(--text); border: 1px solid var(--line-strong); }

.woocommerce .woocommerce-form-login,
.woocommerce .woocommerce-form-coupon,
.woocommerce form.checkout_coupon {
	padding: clamp(18px, 2.4vw, 26px);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--bone);
}

.woocommerce-MyAccount-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.woocommerce-MyAccount-navigation a {
	display: block;
	padding: 9px 16px;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	font-size: 0.875rem;
	text-decoration: none;
}

.woocommerce-MyAccount-navigation li.is-active a { background: var(--ink); color: #fff; border-color: var(--ink); }

.woocommerce nav.woocommerce-pagination ul {
	display: flex;
	gap: 6px;
	border: 0;
	margin: 40px 0 0;
	padding: 0;
	list-style: none;
	justify-content: center;
}

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

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: grid;
	place-items: center;
	min-width: 40px; height: 40px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	font-size: 0.875rem;
	text-decoration: none;
}

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


/* ==========================================================================
   18. WooCommerce Blocks (Cart & Checkout)
   ========================================================================== */

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout { margin-block: clamp(32px, 4.5vw, 64px); }

.wc-block-components-sidebar .wc-block-components-title,
.wc-block-cart__totals-title {
	font-family: var(--font-mono);
	font-size: 0.625rem !important;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
}

/* Only the outer sidebar gets the card treatment. The order-summary block sits
   inside it, so styling both produced a panel-inside-a-panel and doubled the
   padding, which crushed the product name to one word per line. */
.wc-block-components-sidebar,
.wc-block-cart__sidebar {
	padding: clamp(20px, 2.4vw, 28px);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--bone);
}

.wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block {
	padding: 0;
	border: 0;
	background: transparent;
}

/* The catalog short description is noise in a narrow summary column. Keep
   variation attributes and extension metadata visible for order accuracy. */
.wc-block-components-order-summary-item__description .wc-block-components-product-metadata__description { display: none; }

.wc-block-components-order-summary-item__description { min-width: 0; }

.wc-block-cart-item__product a.wc-block-components-product-name,
.wc-block-components-product-name {
	font-size: 0.9375rem;
	font-weight: 520;
	letter-spacing: -0.015em;
	color: var(--text);
	text-decoration: none;
}

.wc-block-cart-item__image img,
.wc-block-components-order-summary-item__image img { border-radius: var(--r-sm); background: #fff; }

.wc-block-components-totals-item__label { color: var(--muted); font-size: 0.9375rem; }
.wc-block-components-totals-item__value { font-weight: 550; color: var(--text); }

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	font-size: 1.1875rem;
	font-weight: 620;
	letter-spacing: -0.025em;
	color: var(--text);
}

.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wc-block-components-button.contained {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	padding: 13px 26px;
	border: 0;
	border-radius: var(--r-sm);
	background: var(--brand);
	color: #fff;
	font-family: var(--font);
	font-size: 1rem;
	font-weight: 560;
	transition: background-color var(--dur-fast) var(--ease);
}

.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-button.contained:hover { background: var(--brand-deep); color: #fff; }

.wc-block-components-text-input input[type='text'],
.wc-block-components-text-input input[type='email'],
.wc-block-components-text-input input[type='tel'],
.wc-block-components-text-input input[type='number'],
.wc-block-components-address-form input,
.wc-block-components-combobox input {
	border-radius: var(--r-sm);
	border-color: var(--line-strong);
	font-family: var(--font);
}

.wc-block-components-text-input.is-active input:focus,
.wc-block-components-address-form input:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(47, 111, 68, 0.22);
	outline: none;
}

.wc-block-components-quantity-selector { border-radius: var(--r-sm); border-color: var(--line-strong); }
.wc-block-components-notice-banner { border-radius: var(--r-sm); font-family: var(--font); }

/* On phones, let WooCommerce's own row separators define the summary instead
   of nesting coupons, shipping, total and payment actions inside one card. */
@media (max-width: 48rem) {
	body.woocommerce-cart .wc-block-components-sidebar.wc-block-cart__sidebar {
		padding: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: transparent !important;
		overflow: visible !important;
	}

	body.woocommerce-cart .wc-block-cart__payment-options,
	body.woocommerce-cart .wc-block-cart__submit {
		margin-top: 14px;
		padding: 0 !important;
	}

	body.woocommerce-cart .wc-block-components-totals-coupon__form {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 8px;
		align-items: end;
	}

	body.woocommerce-cart .wc-block-components-totals-coupon__form .wc-block-components-text-input {
		min-width: 0;
	}

	body.woocommerce-cart .wc-block-components-totals-coupon__button.wc-block-components-button.contained {
		width: auto;
		min-height: 46px;
		padding: 11px 16px;
		flex: 0 0 auto;
		font-size: 0.875rem;
	}

}

@media (max-width: 21.25rem) {
	body.woocommerce-cart .wc-block-components-totals-coupon__form {
		grid-template-columns: 1fr;
	}

	body.woocommerce-cart .wc-block-components-totals-coupon__button.wc-block-components-button.contained {
		width: 100%;
	}
}

.wc-block-components-checkout-step__heading,
.wc-block-components-checkout-step__title {
	font-family: var(--font);
	font-size: 1.0625rem;
	font-weight: 560;
	letter-spacing: -0.02em;
}

/* WooCommerce Blocks product grid — used by the empty-cart cross-sell. It has
   its own markup, so the classic loop styles above never reached it. */
/* Woo lays this grid out with flex and a `max-width: 25%` per card. Overriding
   the container to CSS grid makes that percentage resolve against the cell
   instead of the row and collapses every card, so only the visuals are styled
   here — the column layout stays WooCommerce's. */
.wc-block-grid__products {
	gap: clamp(12px, 1.6vw, 22px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.wc-block-grid__product {
	margin: 0;
	padding: 0 0 clamp(13px, 1.6vw, 18px);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--paper);
	overflow: hidden;
	text-align: left;
	transition: box-shadow var(--dur) var(--ease);
}

.wc-block-grid__product:hover { box-shadow: var(--lift-2); }

.wc-block-grid__product-link { text-decoration: none; }

.wc-block-grid__product-image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: #fff;
	padding: clamp(12px, 2vw, 22px);
	margin: 0;
}

.wc-block-grid__product-title {
	padding: 0 clamp(13px, 1.6vw, 18px);
	margin: 0 0 8px;
	font-size: 0.9375rem;
	font-weight: 520;
	line-height: 1.35;
	letter-spacing: -0.015em;
	color: var(--text);
	text-decoration: none;
}

.wc-block-grid__product-title a { color: inherit; text-decoration: none; }
.wc-block-grid__product:hover .wc-block-grid__product-title { color: var(--brand-deep); }

.wc-block-grid__product-price {
	display: block;
	margin: 0 0 12px;
	padding: 0 clamp(13px, 1.6vw, 18px);
	font-size: 1.0625rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--text);
}

/* Woo's default block button is dark grey with a link-coloured label, which is
   unreadable. Give it the storefront's primary button treatment. */
.wc-block-grid__product-add-to-cart { margin: 0 clamp(13px, 1.6vw, 18px); }

.wc-block-grid__product-add-to-cart .wp-block-button__link,
.wc-block-grid__product .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 11px 18px;
	border: 0;
	border-radius: var(--r-sm);
	background: var(--brand);
	color: #fff;
	font-family: var(--font);
	font-size: 0.8125rem;
	font-weight: 540;
	text-decoration: none;
	transition: background-color var(--dur-fast) var(--ease);
}

.wc-block-grid__product-add-to-cart .wp-block-button__link:hover,
.wc-block-grid__product .wp-block-button__link:hover { background: var(--brand-deep); color: #fff; }

.wc-block-grid__product-onsale {
	margin: 0;
	padding: 5px 10px;
	border: 0;
	border-radius: var(--r-sm);
	background: var(--brand);
	color: #fff;
	font-family: var(--font-mono);
	font-size: 0.5625rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* ==========================================================================
   19. Footer
   ========================================================================== */

.site-footer {
	background: var(--ink);
	color: var(--on-dark);
	padding-top: clamp(44px, 6vw, 76px);
}

.site-footer__grid {
	display: grid;
	gap: clamp(28px, 4vw, 64px);
	padding-bottom: clamp(36px, 5vw, 64px);
}

@media (min-width: 56rem) {
	.site-footer__grid { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.6fr); }
}

.site-footer__logo {
	display: inline-block;
	margin-bottom: 26px;
	color: #fff;
	text-decoration: none;
}

.site-footer__wordmark {
	font-size: clamp(1.45rem, 2.5vw, 2rem);
	font-weight: 680;
	letter-spacing: -0.045em;
	line-height: 1;
}

.site-footer .site-footer__logo img {
	width: auto;
	height: 42px;
	/* One asset, recoloured to white so it reads on the dark footer. */
	filter: brightness(0) invert(1);
	opacity: 0.94;
}

.site-footer__heading {
	margin-bottom: 16px;
	font-size: 1.0625rem;
	font-weight: 580;
	letter-spacing: -0.02em;
	color: #fff;
}

.site-footer__heading--lg { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.site-footer__links { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }

.site-footer__links + .site-footer__links { margin-top: 10px; }

.site-footer__links a {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.74);
	text-decoration: none;
	transition: color var(--dur-fast) var(--ease);
}

.site-footer__links a:hover { color: var(--brand-hi); }

.site-footer__store p {
	margin: 0 0 12px;
	font-size: 0.875rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.74);
	max-width: 58ch;
}

.site-footer__store strong { color: #fff; font-weight: 560; }
.site-footer__store a { color: rgba(255, 255, 255, 0.74); text-decoration: none; }
.site-footer__store a:hover { color: var(--brand-hi); }

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-block: 22px;
	border-top: 1px solid var(--line-dark);
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
}

.site-footer__bottom p { margin: 0; }

/* Dedicated customer-support link. It opens WhatsApp only after the shopper
   chooses it, so the storefront does not load a third-party chat script. */
.wadenlo-whatsapp {
	position: fixed;
	right: max(18px, env(safe-area-inset-right));
	bottom: max(18px, env(safe-area-inset-bottom));
	z-index: 80;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 12px 17px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	background: #075e54;
	box-shadow: 0 12px 34px -14px rgba(10, 11, 13, 0.5);
	color: #f7fffc;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: background-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.wadenlo-whatsapp:hover {
	background: #054a42;
	box-shadow: 0 16px 38px -14px rgba(10, 11, 13, 0.62);
	color: #f7fffc;
	transform: translate3d(0, -2px, 0);
}

.wadenlo-whatsapp__icon {
	width: 22px;
	height: 22px;
	flex: none;
	stroke-width: 1.7;
}

/* Keep support controls clear of cart payment and checkout actions. */
body.woocommerce-cart .wadenlo-whatsapp { display: none; }

@media (max-width: 63.99rem) {
	body.single-product .wadenlo-whatsapp {
		bottom: calc(94px + env(safe-area-inset-bottom));
	}
}

@media (max-width: 30rem) {
	.wadenlo-whatsapp {
		right: max(14px, env(safe-area-inset-right));
		bottom: max(14px, env(safe-area-inset-bottom));
		min-width: 50px;
		min-height: 50px;
		padding: 12px;
	}

	.wadenlo-whatsapp span { display: none; }

	body.single-product .wadenlo-whatsapp {
		bottom: calc(92px + env(safe-area-inset-bottom));
	}
}

.site-footer__payments { display: flex; align-items: center; gap: 10px; }

.site-footer__payments-label {
	font-family: var(--font-mono);
	font-size: 0.5625rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.50);
}

/* Payment marks sit on a white chip, the way card logos normally appear. */
.payment-mark {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 28px;
	padding-inline: 10px;
	border-radius: 5px;
	background: #fff;
	line-height: 1;
}

.payment-mark svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
	stroke: none;
	flex: none;
}

.payment-mark__word {
	font-size: 0.8125rem;
	font-weight: 650;
	letter-spacing: -0.02em;
}

/* ==========================================================================
   20. Scroll reveals
   ========================================================================== */

.js [data-reveal] {
	opacity: 0;
	transform: translate3d(0, 18px, 0);
	transition: opacity 620ms var(--ease-out), transform 720ms var(--ease-out);
	transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-revealed { opacity: 1; transform: translate3d(0, 0, 0); }

/* ==========================================================================
   21. Reduced motion & print
   ========================================================================== */

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

	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}

	.js [data-reveal] { opacity: 1; transform: none; }
	:is(.woocommerce, body) ul.products li.product:hover img,
	.category-card:hover .category-card__media img { transform: none; }
}

@media print {
	.promo-bar,
	.site-header,
	.site-footer,
	.wadenlo-buybar,
	.wadenlo-whatsapp,
	.menu-toggle { display: none !important; }

	body { color: #000; background: #fff; }
	.hero__image { display: none; }
	.hero h1, .hero__eyebrow { color: #000; }
}

/* ==========================================================================
   22. Wadenlo 1.1 outdoor visual system
   ========================================================================== */

.section-kicker {
	margin: 0 0 8px;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	font-weight: 650;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--brand-deep);
}

.section-kicker--center { text-align: center; }

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: clamp(28px, 3.5vw, 44px);
}

.section-heading .section__title { margin-bottom: 0; }
.section-heading > div > p:last-child { max-width: 62ch; margin-top: 14px; color: var(--muted); }
.section-heading > .text-link { flex: none; margin-bottom: 4px; }

/* Hero */
.hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: minmax(clamp(500px, 48vw, 650px), auto);
	min-height: clamp(500px, 48vw, 650px);
	background: var(--brand-soft);
	overflow: hidden;
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	max-width: var(--shell);
	margin-inline: auto;
	padding: clamp(38px, 7vw, 76px) var(--gutter);
}

.hero__copy {
	width: min(100%, 570px);
	max-width: 570px;
	padding: clamp(28px, 4.5vw, 52px);
	border: 1px solid rgba(255, 253, 247, 0.72);
	border-radius: clamp(22px, 3vw, 34px);
	background: rgba(255, 253, 247, 0.92);
	box-shadow: 0 30px 80px -42px rgba(15, 43, 30, 0.68);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.hero__media {
	position: absolute;
	inset: 0;
	min-width: 0;
	overflow: hidden;
}

.hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.hero--has-image::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(15, 43, 30, 0.18) 0%, rgba(15, 43, 30, 0.04) 50%, transparent 74%);
}

.hero__eyebrow {
	margin-bottom: 12px;
	font-weight: 650;
	color: var(--brand-deep);
}

.hero h1 {
	max-width: 14ch;
	font-size: clamp(2.35rem, 5.4vw, 4.55rem);
	font-weight: 660;
	line-height: 0.98;
	letter-spacing: -0.055em;
}

.hero__summary {
	font-size: clamp(1rem, 1.4vw, 1.125rem);
	line-height: 1.6;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.hero--placeholder {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	background:
		radial-gradient(circle at 18% 22%, rgba(220, 233, 139, 0.58), transparent 30%),
		linear-gradient(135deg, #eef4e8 0%, #dcebd7 56%, #c7dfc1 100%);
}

.hero--placeholder .hero__inner { grid-column: 1; grid-row: 1; }

.hero--placeholder .hero__media {
	position: relative;
	grid-column: 2;
	grid-row: 1;
	display: grid;
	place-items: center;
	min-height: 420px;
	background:
		linear-gradient(158deg, transparent 50%, rgba(23, 73, 45, 0.10) 50%),
		repeating-linear-gradient(105deg, transparent 0 34px, rgba(23, 73, 45, 0.055) 34px 36px);
}

.hero__placeholder-copy {
	display: grid;
	gap: 8px;
	max-width: 300px;
	padding: 26px;
	border: 1px dashed rgba(23, 73, 45, 0.38);
	border-radius: var(--r-lg);
	background: rgba(255, 253, 247, 0.72);
	text-align: center;
}

.hero__placeholder-copy span {
	font-family: var(--font-mono);
	font-size: 0.6rem;
	font-weight: 650;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--brand-deep);
}

.hero__placeholder-copy strong { font-size: 1.05rem; line-height: 1.35; }

/* Shipping and trust strip */
.value-strip { background: var(--brand-deep); text-align: left; }

.value-strip__items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.value-strip__items li {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-width: 0;
	padding: 17px clamp(10px, 2vw, 24px);
}

.value-strip__items li + li { border-left: 1px solid rgba(255, 255, 255, 0.16); }

.value-strip__items svg {
	width: 22px;
	height: 22px;
	flex: none;
	color: var(--accent);
	stroke-width: 1.6;
}

.value-strip__items span {
	display: grid;
	font-size: 0.75rem;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.74);
}

.value-strip__items strong { font-size: 0.8125rem; font-weight: 650; color: #fff; }

/* Home sections and botanical card accents */
.section--products { background: var(--surface); }

.section--categories {
	position: relative;
	background: linear-gradient(180deg, var(--brand-soft), #edf4e7);
	overflow: hidden;
}

.section--categories::after {
	content: '';
	position: absolute;
	right: -80px;
	bottom: -150px;
	width: 320px;
	height: 320px;
	border: 54px solid rgba(47, 111, 68, 0.055);
	border-radius: 82% 18% 72% 28% / 72% 28% 72% 28%;
	transform: rotate(-18deg);
	pointer-events: none;
}

.section--categories .site-shell { position: relative; z-index: 1; }

.category-cards { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }

.category-card {
	padding: 9px 9px 16px;
	border: 1px solid rgba(23, 58, 42, 0.12);
	border-radius: calc(var(--r-lg) + 4px);
	background: rgba(255, 253, 247, 0.88);
	box-shadow: var(--lift-1);
	transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.category-card:hover { transform: translateY(-4px); box-shadow: var(--lift-2); border-color: rgba(47, 111, 68, 0.28); }

.category-card__media {
	border: 0;
	border-radius: calc(var(--r-lg) - 3px);
	background: linear-gradient(145deg, #fffef9, #eff2e7);
}

.category-card__label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-inline: 8px;
	font-weight: 620;
}

.category-card__label svg { width: 18px; height: 18px; color: var(--brand); transition: transform var(--dur-fast) var(--ease-out); }
.category-card:hover .category-card__label svg { transform: translateX(3px); }

.category-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background: linear-gradient(145deg, var(--brand-soft), #d6e7ce);
}

.category-card__placeholder svg { width: 52px; height: 52px; color: var(--brand); stroke-width: 1.3; }

.section--statement { background: var(--paper); }

.statement-grid {
	padding-block: clamp(34px, 5vw, 64px);
	padding-inline: clamp(24px, 4.2vw, 58px);
	border: 1px solid var(--line);
	border-radius: clamp(24px, 3vw, 36px);
	background: linear-gradient(135deg, #f7f3e8, #eef3e7);
	box-shadow: var(--lift-1);
}

.statement-grid__text h2 { max-width: 17ch; font-size: clamp(1.8rem, 3.3vw, 2.8rem); }

.selection-guide,
.delivery-cards {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.selection-guide li,
.delivery-cards li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 17px;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	background: rgba(255, 253, 247, 0.82);
}

.selection-guide__icon {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 12px;
	background: var(--brand-soft);
	color: var(--brand-deep);
}

.selection-guide svg { width: 21px; height: 21px; stroke-width: 1.6; }
.selection-guide li > span:last-child,
.delivery-cards li > span { display: grid; gap: 3px; color: var(--muted); font-size: 0.875rem; line-height: 1.55; }
.selection-guide strong,
.delivery-cards strong { color: var(--text); font-size: 0.9375rem; font-weight: 640; }

.section--testimonials { background: var(--surface); }

.testimonial {
	border-color: rgba(23, 58, 42, 0.13);
	background: var(--paper);
	box-shadow: var(--lift-1);
}

.testimonial__stars svg { fill: var(--brand); }

.reviews-empty {
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 720px;
	padding: 22px 24px;
	border: 1px dashed var(--line-strong);
	border-radius: var(--r-lg);
	background: var(--paper);
	color: var(--muted);
}

.reviews-empty svg { width: 28px; height: 28px; flex: none; color: var(--brand); }
.reviews-empty p { margin: 0; }

.section--quality {
	position: relative;
	background: var(--brand-deep);
	color: #fff;
	overflow: hidden;
}

.section--quality::before {
	content: '';
	position: absolute;
	left: -120px;
	top: -210px;
	width: 420px;
	height: 420px;
	border: 72px solid rgba(220, 233, 139, 0.07);
	border-radius: 78% 22% 75% 25% / 65% 35% 65% 35%;
	transform: rotate(22deg);
}

.section--quality .site-shell { position: relative; z-index: 1; }
.quality-grid__text h2 { max-width: 18ch; font-size: clamp(1.8rem, 3.2vw, 2.75rem); color: #fff; }
.quality-grid__text p { color: rgba(255, 255, 255, 0.76); }
.section--quality .section-kicker { color: var(--accent); }

.quality-grid__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	margin-top: 28px;
}

.section--quality .button--primary { background: var(--accent); color: var(--ink-2); box-shadow: none; }
.section--quality .button--primary:hover { background: #edf3ae; }
.section--quality .text-link { color: #fff; border-bottom-color: var(--brand-hi); }

.delivery-cards li { border-color: rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.075); }
.delivery-cards svg { width: 25px; height: 25px; flex: none; color: var(--accent); stroke-width: 1.5; }
.delivery-cards li > span { color: rgba(255, 255, 255, 0.72); }
.delivery-cards strong { color: #fff; }

.quality-grid__media--wide { grid-column: 1 / -1; }
.quality-grid__media--wide img { border: 1px solid rgba(255, 255, 255, 0.14); }

.section--faq { background: linear-gradient(180deg, #edf3e7, var(--surface)); }
.accordion { gap: 10px; }
.accordion details { border-color: rgba(23, 58, 42, 0.14); box-shadow: var(--lift-1); }
.accordion details[open] { border-color: rgba(47, 111, 68, 0.30); }
.accordion summary { font-weight: 600; }

/* Product cards: real WooCommerce copy, prices, and photography. */
:is(.woocommerce, body) ul.products li.product {
	border-color: rgba(23, 58, 42, 0.13);
	border-radius: calc(var(--r-lg) + 2px);
	box-shadow: var(--lift-1);
}

:is(.woocommerce, body) ul.products li.product:hover {
	transform: translateY(-3px);
	box-shadow: var(--lift-2);
	border-color: rgba(47, 111, 68, 0.28);
}

:is(.woocommerce, body) ul.products li.product img { background: #fff; }

:is(.woocommerce, body) ul.products li.product .woocommerce-loop-product__title {
	height: 2.7em;
	font-weight: 620;
}

:is(.woocommerce, body) ul.products li.product .wadenlo-loop-description {
	display: block;
	height: auto;
	min-height: calc(4.65em + 22px);
	margin: 8px clamp(13px, 1.6vw, 18px) 0;
	padding: 10px 12px;
	overflow: visible;
	border: 1px solid rgba(47, 111, 68, 0.18);
	border-radius: 10px;
	background: #f1f6ec;
	font-size: 0.9rem;
	font-weight: 480;
	line-height: 1.55;
	color: #294234;
}

:is(.woocommerce, body) ul.products li.product .price { padding-top: 14px; color: var(--brand-deep); }
:is(.woocommerce, body) ul.products li.product .price ins { color: var(--brand); }

:is(.woocommerce, body) ul.products li.product .button,
:is(.woocommerce, body) ul.products li.product .added_to_cart {
	border-radius: 999px;
	background: var(--brand-deep);
	color: #fff;
}

:is(.woocommerce, body) ul.products li.product .button:hover,
:is(.woocommerce, body) ul.products li.product .added_to_cart:hover { background: var(--brand); }

:is(.woocommerce, body) ul.products li.product .onsale,
.wadenlo-badge,
.wc-block-grid__product-onsale { background: var(--brand-deep); }

/* Shop, product, cart, and checkout */
.page-hero {
	background: linear-gradient(135deg, var(--brand-soft), #f4f1e5 72%);
	border-bottom-color: rgba(23, 58, 42, 0.14);
}

.commerce-main { background: var(--surface); }
.woocommerce-breadcrumb a:hover { color: var(--brand-deep); }

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-info,
.woocommerce-message { background: var(--brand-soft); border-left-color: var(--brand); }

.woocommerce.single-product .woocommerce-product-gallery {
	border-radius: calc(var(--r-lg) + 4px);
	box-shadow: var(--lift-1);
}

.woocommerce.single-product div.product .summary {
	padding: clamp(22px, 3.4vw, 38px);
	border: 1px solid var(--line);
	border-radius: calc(var(--r-lg) + 4px);
	background: var(--paper);
	box-shadow: var(--lift-1);
}

.woocommerce.single-product .product_title { color: var(--ink-2); }
.woocommerce.single-product div.product p.price,
.woocommerce.single-product div.product span.price { color: var(--brand-deep); }
.woocommerce.single-product div.product p.price ins { color: var(--brand); }
.woocommerce.single-product .stock.in-stock { color: #22643b; }

.woocommerce.single-product form.cart .single_add_to_cart_button,
.wadenlo-buybar__action { border-radius: 999px; background: var(--brand-deep); }

.woocommerce.single-product form.cart .single_add_to_cart_button:hover,
.wadenlo-buybar__action:hover { background: var(--brand); }

.wadenlo-assurance { background: rgba(47, 111, 68, 0.14); border-color: rgba(47, 111, 68, 0.14); }
.wadenlo-assurance li { background: var(--brand-soft); }
.wadenlo-assurance svg { color: var(--brand-deep); }

.product__description {
	padding: clamp(28px, 4vw, 48px);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--paper);
}

.product__description .product__description-title {
	margin: 0 0 clamp(22px, 3vw, 32px);
	padding: 0 0 16px;
	border: 0;
	border-bottom: 1px solid var(--line);
	font-size: clamp(1.5rem, 2.6vw, 2.1rem);
	font-weight: 650;
	letter-spacing: -0.035em;
	color: var(--ink-2);
}

.product__description h2,
.product__description h3 { border-left-color: var(--brand); }

/* Keep the complete product description in the purchase column where it is
   visible before the specification and delivery accordions. */
.woocommerce.single-product div.product .summary .product__description {
	display: block;
	grid-column: auto;
	width: 100%;
	max-width: none;
	margin: 26px 0 0;
	padding: 22px;
	border: 1px solid rgba(47, 111, 68, 0.2);
	border-radius: var(--r-md);
	background: #f5f8f1;
	box-shadow: none;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #24372c;
}

.woocommerce.single-product div.product .summary .product__description .product__description-title {
	margin: 0 0 14px;
	padding: 0 0 11px;
	border: 0;
	border-bottom: 2px solid rgba(47, 111, 68, 0.22);
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 680;
	line-height: 1.2;
	letter-spacing: -0.025em;
	color: var(--brand-deep);
}

.woocommerce.single-product div.product .summary .product__description > p {
	max-width: none;
}

.woocommerce.single-product div.product .summary .product__description ul,
.woocommerce.single-product div.product .summary .product__description ol {
	columns: auto;
	max-width: none;
}

@media (max-width: 31.99rem) {
	:is(.woocommerce, body) ul.products li.product .wadenlo-loop-description {
		min-height: 0;
		font-size: 0.9375rem;
	}

	.woocommerce.single-product div.product .summary .product__description {
		margin-top: 22px;
		padding: 18px;
	}
}

.woocommerce table.shop_table { background: var(--paper); box-shadow: var(--lift-1); }
.woocommerce table.shop_table th { background: var(--brand-soft); color: var(--brand-deep); }

.woocommerce .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-order,
.woocommerce-MyAccount-content,
.woocommerce .woocommerce-form-login,
.woocommerce .woocommerce-form-coupon,
.woocommerce form.checkout_coupon {
	border-color: rgba(23, 58, 42, 0.14);
	background: var(--paper);
	box-shadow: var(--lift-1);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button.alt,
.woocommerce button.button.alt { border-radius: 999px; background: var(--ink); }

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { background: var(--brand-deep); }

.woocommerce .checkout-button,
.woocommerce #place_order,
.woocommerce button.button.alt { background: var(--brand-deep); }

.woocommerce .checkout-button:hover,
.woocommerce #place_order:hover { background: var(--brand); }

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--brand-deep); border-color: var(--brand-deep); }

.wc-block-components-sidebar,
.wc-block-cart__sidebar { border-color: rgba(23, 58, 42, 0.14); background: var(--brand-soft); }

.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wc-block-components-button.contained { border-radius: 999px; background: var(--brand-deep); }

.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-button.contained:hover { background: var(--brand); }

.wc-block-grid__product { border-color: rgba(23, 58, 42, 0.13); box-shadow: var(--lift-1); }
.wc-block-grid__product-add-to-cart .wp-block-button__link,
.wc-block-grid__product .wp-block-button__link { border-radius: 999px; background: var(--brand-deep); }

/* Form and keyboard interaction contrast */
input:focus,
textarea:focus,
select:focus,
.wc-block-components-text-input.is-active input:focus,
.wc-block-components-address-form input:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(47, 111, 68, 0.22);
}

:is(
	button,
	input[type='button'],
	input[type='submit'],
	.button,
	.wc-block-components-button,
	.wp-block-button__link
):focus-visible { box-shadow: 0 0 0 5px var(--brand-deep); }

/* Footer */
.site-footer {
	position: relative;
	background: var(--ink-2);
	overflow: hidden;
}

.site-footer::before {
	content: '';
	position: absolute;
	right: -130px;
	top: -190px;
	width: 390px;
	height: 390px;
	border: 68px solid rgba(168, 210, 123, 0.06);
	border-radius: 80% 20% 72% 28% / 72% 28% 72% 28%;
	transform: rotate(-14deg);
	pointer-events: none;
}

.site-footer > .site-shell { position: relative; z-index: 1; }
.site-footer__wordmark { color: var(--brand-hi); }
.site-footer__heading { color: #fff; }
.site-footer__links a:hover,
.site-footer__store a:hover { color: var(--brand-hi); }
.site-footer__bottom { border-top-color: rgba(168, 210, 123, 0.18); }
.payment-mark { color: var(--ink-2); }

@media (max-width: 61.99rem) {
	.hero { min-height: 0; grid-template-columns: minmax(0, 1fr); }

	.hero__media {
		position: relative;
		order: -1;
	}

	.hero__image {
		aspect-ratio: 16 / 10;
		height: auto;
		object-position: 67% center;
	}

	.hero__inner { padding-block: clamp(28px, 6vw, 46px); background: var(--paper); }

	.hero__copy {
		width: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.hero h1 { max-width: 16ch; font-size: clamp(2.2rem, 9vw, 3.5rem); }
	.hero--has-image::after { content: none; }
	.hero--placeholder { grid-template-columns: minmax(0, 1fr); }
	.hero--placeholder .hero__inner { grid-column: 1; grid-row: 2; }
	.hero--placeholder .hero__media { grid-column: 1; grid-row: 1; min-height: 300px; }
}

@media (max-width: 47.99rem) {
	.section-heading { display: block; }
	.section-heading > .text-link { margin-top: 18px; }
	.quality-grid { gap: 34px; }
}

@media (max-width: 42rem) {
	.value-strip__items { grid-template-columns: minmax(0, 1fr); }
	.value-strip__items li { justify-content: flex-start; padding-block: 14px; }
	.value-strip__items li + li { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
}

@media (max-width: 31.99rem) {
	:is(.woocommerce, body) ul.products { grid-template-columns: minmax(0, 1fr); }
	.hero__actions .button { width: 100%; }
	.reviews-empty { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
	.category-card:hover,
	:is(.woocommerce, body) ul.products li.product:hover,
	.button:hover { transform: none; }
}

@media print {
	.hero__media,
	.hero--has-image::after,
	.section--categories::after,
	.section--quality::before,
	.site-footer::before { display: none !important; }

	.hero { min-height: 0; background: #fff; }
	.hero__copy { padding: 0; border: 0; box-shadow: none; }
}
