/* ==========================================================================
   Stormhorn — main stylesheet
   SoleStyle-inspired structure in the brand palette:
   storm charcoal + ember orange, Barlow Condensed display / Inter body.
   ========================================================================== */

:root {
	/* Core palette */
	--sh-dark:       #14181F;
	--sh-char:       #1E2530;
	--sh-orange:     #E8590C;
	--sh-orange-hot: #FF6B1A;
	--sh-fog:        #F4F0EB;
	--sh-white:      #FFFFFF;
	--sh-grey:       #57606F;
	--sh-grey-light: #7A8290;
	--sh-border-dark: rgba(0, 0, 0, 0.08);
	--sh-footer-bg:  #EFEAE0;

	/* Typography */
	--font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	/* Spacing scale */
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 2rem;
	--space-lg: 4rem;
	--space-xl: 8rem;

	/* Motion */
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-in-expo: cubic-bezier(0.7, 0, 0.84, 0);
	--dur-fast: 0.25s;
	--dur-mid: 0.5s;
	--dur-slow: 0.85s;

	/* Layout */
	--radius: 18px;
	--radius-sm: 12px;
	--container: 1280px;
	--pad: clamp(1.25rem, 4vw, 3rem);
	--nav-h: 72px;
	--promo-h: 38px;

	/* Theme-toggle semantic tokens — light (White + Orange) is the
	   default site theme. --sh-dark / --sh-white stay literal constants
	   (used for fixed on-accent / on-photo contexts); --sh-surface* /
	   --sh-on-surface* are the ones that flip under [data-theme="dark"]. */
	--sh-ink-rgb: 20, 24, 31;
	--sh-paper-rgb: 255, 255, 255;
	--sh-surface-rgb: var(--sh-paper-rgb);
	--sh-on-surface-rgb: var(--sh-ink-rgb);
	--sh-surface: var(--sh-fog);
	--sh-surface-alt: #FFFFFF;
	--sh-surface-2: #FFFFFF;
	--sh-on-surface: var(--sh-dark);
	--sh-border: rgba(var(--sh-on-surface-rgb), 0.08);
}

:root[data-theme="dark"] {
	--sh-surface-rgb: var(--sh-ink-rgb);
	--sh-on-surface-rgb: var(--sh-paper-rgb);
	--sh-surface: var(--sh-dark);
	--sh-surface-alt: var(--sh-char);
	--sh-surface-2: #10141B;
	--sh-on-surface: var(--sh-white);
	--sh-footer-bg: #0A0D12;
	--sh-grey: #6B7280;
	--sh-grey-light: #9CA3AF;
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--sh-on-surface);
	background: var(--sh-surface);
	-webkit-font-smoothing: antialiased;
	transition: background-color 0.35s ease, color 0.35s ease;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { margin: 0; line-height: 1.08; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: clamp(64px, 9vw, 120px) 0; }
.accent { color: var(--sh-orange); }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
.display-headline {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(2.1rem, 4.2vw, 3.4rem);
	letter-spacing: 0.01em;
	line-height: 0.98;
	text-transform: uppercase;
	color: var(--sh-on-surface);
}
.section-sub { color: var(--sh-grey-light); margin: 10px 0 0; font-size: 1rem; }
.eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--sh-orange);
	margin-bottom: 10px;
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: clamp(32px, 5vw, 52px);
	flex-wrap: wrap;
}
.section-head--center { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
.section-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-weight: 600;
	font-size: 0.82rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sh-on-surface);
	border-bottom: 2px solid var(--sh-orange);
	padding-bottom: 3px;
	transition: gap var(--dur-fast) var(--ease-out-expo), color var(--dur-fast) ease;
}
.section-link:hover { gap: 12px; color: var(--sh-orange); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 15px 32px;
	border-radius: 999px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1;
	border: 2px solid transparent;
	transition: transform var(--dur-fast) var(--ease-out-expo), background var(--dur-fast) ease, color var(--dur-fast) ease, border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
	background: var(--sh-orange);
	color: var(--sh-white);
	box-shadow: 0 10px 30px rgba(232, 89, 12, 0.35);
}
.btn--primary:hover { background: var(--sh-orange-hot); box-shadow: 0 14px 38px rgba(232, 89, 12, 0.45); }

.btn--outline {
	border-color: var(--sh-dark);
	color: var(--sh-dark);
	background: transparent;
}
.btn--outline:hover { background: var(--sh-dark); color: var(--sh-white); }

.btn--outline-white {
	border-color: rgba(var(--sh-on-surface-rgb), 0.3);
	color: var(--sh-on-surface);
	background: transparent;
}
.btn--outline-white:hover { border-color: var(--sh-orange); color: var(--sh-orange); }

.btn--pill {
	border-color: var(--sh-orange);
	color: var(--sh-orange);
	background: transparent;
	padding: 11px 24px;
	font-size: 0.72rem;
}
.btn--pill:hover { background: var(--sh-orange); color: var(--sh-white); }

/* --------------------------------------------------------------------------
   Promo bar
   -------------------------------------------------------------------------- */
.promo-bar {
	min-height: var(--promo-h);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: var(--sh-orange);
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.78rem;
	letter-spacing: 0.02em;
	text-align: center;
	padding: 4px 16px;
}
.promo-bar strong { color: var(--sh-white); font-weight: 700; }

/* --------------------------------------------------------------------------
   Site nav
   -------------------------------------------------------------------------- */
.site-nav {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(var(--sh-surface-rgb), 0.85);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--sh-border);
	transition: transform 0.45s var(--ease-out-expo), background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.is-scrolled {
	background: rgba(var(--sh-surface-rgb), 0.95);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.scroll-progress {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--sh-orange);
	transform: scaleX(0);
	transform-origin: left;
	z-index: 2;
}

.site-nav__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.site-nav__brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--sh-on-surface);
}

.site-nav__links { display: flex; align-items: center; gap: 4px; }
.site-nav__links li { display: inline-block; }
.site-nav__links a {
	display: inline-block;
	padding: 8px 14px;
	font-weight: 600;
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(var(--sh-on-surface-rgb), 0.85);
	border-radius: 999px;
	transition: color var(--dur-fast) ease, background var(--dur-fast) ease;
}
.site-nav__links a:hover { color: var(--sh-orange); background: rgba(var(--sh-on-surface-rgb), 0.05); }

.site-nav__actions { display: flex; align-items: center; gap: 6px; }
.nav-icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--sh-on-surface);
	transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.nav-icon-btn:hover { background: rgba(var(--sh-on-surface-rgb), 0.08); color: var(--sh-orange); }
.nav-icon-btn svg { width: 19px; height: 19px; }
.cart-count {
	position: absolute;
	top: 2px;
	right: 0;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--sh-orange);
	color: var(--sh-white);
	font-size: 0.66rem;
	font-weight: 700;
	line-height: 17px;
	text-align: center;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0 9px;
	background: none;
	border: 0;
	border-radius: 50%;
}
.nav-toggle span { display: block; height: 2px; background: var(--sh-on-surface); border-radius: 2px; }
.nav-toggle:hover { background: rgba(var(--sh-on-surface-rgb), 0.08); }

/* Theme toggle icon crossfade */
.theme-toggle { position: relative; background: none; border: 0; padding: 0; }
.theme-toggle__icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	transition: opacity var(--dur-fast) ease, transform var(--dur-mid) var(--ease-out-expo);
}
.theme-toggle__icon--sun { opacity: 0; transform: translate(-50%, -50%) rotate(60deg) scale(0.6); }
[data-theme="dark"] .theme-toggle__icon--sun { opacity: 1; transform: translate(-50%, -50%) rotate(0deg) scale(1); }
[data-theme="dark"] .theme-toggle__icon--moon { opacity: 0; transform: translate(-50%, -50%) rotate(-60deg) scale(0.6); }

/* Dual logo swap (dark/light theme variants) */
.logo-dark { display: none; }
[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark { display: block; }

/* --------------------------------------------------------------------------
   Overlay menu
   -------------------------------------------------------------------------- */
.nav-overlay {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(var(--sh-surface-rgb), 0.98);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s var(--ease-out-expo), visibility 0.35s;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }
.nav-overlay nav { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.nav-overlay nav li { list-style: none; }
.nav-overlay nav a {
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(2rem, 7vw, 3.2rem);
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--sh-on-surface);
	padding: 6px 18px;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.45s var(--ease-out-expo), transform 0.45s var(--ease-out-expo), color 0.2s;
	transition-delay: calc(var(--i, 0) * 60ms);
}
.nav-overlay.is-open nav a { opacity: 1; transform: none; }
.nav-overlay nav a:hover { color: var(--sh-orange); }
.nav-overlay__close {
	position: absolute;
	top: 22px;
	right: 22px;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--sh-border);
	border-radius: 50%;
	background: transparent;
	color: var(--sh-on-surface);
}
.nav-overlay__close:hover { border-color: var(--sh-orange); color: var(--sh-orange); }
.nav-overlay__meta { margin-top: 20px; color: var(--sh-grey); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	min-height: calc(92vh - var(--nav-h) - var(--promo-h));
	background: var(--sh-surface);
	color: var(--sh-on-surface);
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: clamp(48px, 7vw, 90px) 0;
}
.hero__bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(var(--sh-on-surface-rgb), 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(var(--sh-on-surface-rgb), 0.025) 1px, transparent 1px);
	background-size: 64px 64px;
}
.hero__blob { position: absolute; border-radius: 50%; filter: blur(100px); }
.hero__blob--right { top: 30px; right: -160px; width: 540px; height: 540px; background: rgba(232, 89, 12, 0.14); }
.hero__blob--left { bottom: 30px; left: -140px; width: 400px; height: 400px; background: rgba(232, 89, 12, 0.08); }

.hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
	width: 100%;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(232, 89, 12, 0.12);
	border: 1px solid rgba(232, 89, 12, 0.3);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--sh-orange);
}

.hero__headline {
	margin-top: 24px;
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(3.4rem, 8.5vw, 6.4rem);
	line-height: 0.92;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--sh-on-surface);
}

.hero__sub { margin-top: 24px; max-width: 34rem; color: var(--sh-grey-light); font-size: clamp(1rem, 1.4vw, 1.15rem); }

.hero__ctas { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero__stats {
	margin-top: clamp(36px, 5vw, 56px);
	padding-top: 28px;
	border-top: 1px solid var(--sh-border);
	display: flex;
	align-items: center;
	gap: clamp(20px, 3vw, 36px);
}
.stat__num {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(1.8rem, 2.8vw, 2.4rem);
	color: var(--sh-on-surface);
	display: flex;
	align-items: baseline;
	gap: 2px;
}
.stat__num .suffix { font-size: 0.7em; color: var(--sh-orange); }
.stat__label { color: var(--sh-grey); font-size: 0.8rem; margin-top: 2px; }
.stat__divider { width: 1px; height: 44px; background: var(--sh-border); }

/* Hero visual: tilted floating product card + chips + roundel */
.hero__visual { position: relative; display: flex; justify-content: center; }
.hero-card {
	width: min(430px, 82%);
	aspect-ratio: 4 / 4.6;
	background: var(--sh-surface-alt);
	border-radius: var(--radius);
	overflow: hidden;
	transform: rotate(-6deg);
	box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 80px rgba(232, 89, 12, 0.12);
	animation: hero-float 7s ease-in-out infinite;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }

.hero-chip {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-radius: 14px;
	background: rgba(13, 16, 21, 0.82);
	border: 1px solid var(--sh-border);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
	font-size: 0.8rem;
	color: var(--sh-white);
	z-index: 2;
}
.hero-chip strong { display: block; font-weight: 600; }
.hero-chip small { display: block; color: var(--sh-grey-light); font-size: 0.72rem; }
.hero-chip__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(232, 89, 12, 0.18);
	color: var(--sh-orange);
	flex: none;
}
.hero-chip--shipping { left: -8px; top: 18%; animation: chip-float 6s ease-in-out infinite; }
.hero-chip--returns { right: -8px; bottom: 16%; animation: chip-float 6s ease-in-out 1.2s infinite; }

.hero-roundel {
	position: absolute;
	top: 4%;
	right: 6%;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: var(--sh-orange);
	color: var(--sh-white);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.25;
	box-shadow: 0 14px 40px rgba(232, 89, 12, 0.45);
	animation: roundel-bob 5s ease-in-out infinite;
	z-index: 2;
}
.hero-roundel em { font-style: normal; font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; display: block; }

.hero__scroll-hint {
	position: absolute;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	color: var(--sh-grey);
	z-index: 2;
}
.hero__scroll-hint svg { width: 22px; height: 22px; animation: hint-bounce 1.8s infinite; }
.hero__scroll-hint:hover { color: var(--sh-orange); }

/* Hero entrance stagger (html.js gated so content is never stuck hidden) */
html.js .hero__anim { opacity: 0; transform: translateY(26px); }
html.js #hero-inner.is-in .hero__anim {
	opacity: 1;
	transform: none;
	transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
html.js #hero-inner.is-in .hero__content .hero__anim:nth-child(1) { transition-delay: 0.05s; }
html.js #hero-inner.is-in .hero__content .hero__anim:nth-child(2) { transition-delay: 0.15s; }
html.js #hero-inner.is-in .hero__content .hero__anim:nth-child(3) { transition-delay: 0.25s; }
html.js #hero-inner.is-in .hero__content .hero__anim:nth-child(4) { transition-delay: 0.35s; }
html.js #hero-inner.is-in .hero__content .hero__anim:nth-child(5) { transition-delay: 0.45s; }
html.js .hero__visual.hero__anim { transform: translateY(26px) scale(0.96); }
html.js #hero-inner.is-in .hero__visual.hero__anim { transform: none; transition-delay: 0.3s; }

/* --------------------------------------------------------------------------
   Marquee ticker
   -------------------------------------------------------------------------- */
.ticker-wrap {
	background: var(--sh-footer-bg);
	color: var(--sh-on-surface);
	overflow: hidden;
	padding: 14px 0;
	border-top: 1px solid var(--sh-border);
	border-bottom: 1px solid var(--sh-border);
}
.ticker-track {
	display: flex;
	width: max-content;
	animation: ticker-scroll 28s linear infinite;
}
.ticker-track span {
	display: flex;
	align-items: center;
	gap: 18px;
	padding-right: 18px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
}
.ticker-track .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sh-orange); display: inline-block; }
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

/* --------------------------------------------------------------------------
   Category grid
   -------------------------------------------------------------------------- */
.cat-section { background: var(--sh-surface); }
.cat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.cat-tile {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--sh-surface-alt);
	display: block;
	isolation: isolate;
	border: 1px solid var(--sh-border);
	transition: border-color var(--dur-fast) ease, transform var(--dur-mid) var(--ease-out-expo), background-color 0.35s ease;
}
.cat-tile:hover { border-color: rgba(232, 89, 12, 0.5); transform: translateY(-4px); }
.cat-tile__img { aspect-ratio: 4 / 3; overflow: hidden; }
.cat-tile__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease-out-expo);
}
.cat-tile:hover .cat-tile__img img { transform: scale(1.07); }
.cat-tile__watermark {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90px;
	transform: translate(-50%, -70%);
	opacity: 0.14;
	z-index: 1;
}
.cat-tile__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(6, 8, 11, 0.92), rgba(6, 8, 11, 0.4) 45%, transparent 75%);
	z-index: 1;
}
.cat-tile__label { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; color: var(--sh-white); z-index: 2; }
.cat-tile__count {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	background: rgba(232, 89, 12, 0.2);
	border: 1px solid rgba(232, 89, 12, 0.35);
	backdrop-filter: blur(6px);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffb98c;
}
.cat-tile__name {
	margin-top: 10px;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.7rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.cat-tile__desc { margin: 4px 0 0; font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); }
.cat-tile__cta {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 14px;
	font-weight: 600;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sh-orange);
}
.cat-tile__cta svg { transition: transform var(--dur-fast) var(--ease-out-expo); }
.cat-tile:hover .cat-tile__cta svg { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   Product sections & cards
   -------------------------------------------------------------------------- */
.featured-section { background: var(--sh-surface-2); }
.arrivals-section { background: var(--sh-surface); }

.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.product-card { position: relative; }
.product-card__media {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--sh-surface-alt);
	aspect-ratio: 4 / 5;
	border: 1px solid var(--sh-border);
	transition: background-color 0.35s ease, border-color 0.35s ease;
}
.product-card:hover .product-card__media { box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45); }
.product-card__media > a { display: block; width: 100%; height: 100%; }
.product-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease-out-expo), opacity 0.5s ease;
}
.product-card:hover .product-card__img--primary { transform: scale(1.06); }
.product-card__img--hover {
	position: absolute;
	inset: 0;
	opacity: 0;
}
.product-card:hover .product-card__img--hover { opacity: 1; transform: scale(1.06); }

.product-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.product-badge--sale { background: var(--sh-orange); color: var(--sh-white); }
.product-badge--new { background: rgba(13, 16, 21, 0.85); color: var(--sh-white); border: 1px solid var(--sh-border); }

.product-card__quick-add {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 12px;
	border-radius: 14px;
	background: rgba(13, 16, 21, 0.92);
	border: 1px solid var(--sh-border);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
}
.product-card:hover .product-card__quick-add,
.product-card:focus-within .product-card__quick-add { opacity: 1; transform: none; }

.size-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.size-pill {
	min-width: 36px;
	padding: 6px 10px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: transparent;
	font-size: 0.78rem;
	font-weight: 600;
	color: #FFFFFF;
	transition: background var(--dur-fast) ease, color var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
.size-pill:hover { border-color: var(--sh-orange); color: var(--sh-orange); }
.size-pill.is-active { background: var(--sh-orange); border-color: var(--sh-orange); color: var(--sh-white); }

.btn-add-to-cart {
	width: 100%;
	padding: 11px 16px;
	border: 0;
	border-radius: 999px;
	background: var(--sh-orange);
	color: var(--sh-white);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: background var(--dur-fast) ease, opacity var(--dur-fast) ease;
}
.btn-add-to-cart:hover:not(:disabled) { background: var(--sh-orange-hot); }
.btn-add-to-cart:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-add-to-cart.is-added { background: #16803c; }

.product-card__info { padding: 14px 6px 0; }
.product-card__category { font-size: 0.75rem; color: var(--sh-grey); letter-spacing: 0.04em; }
.product-card__category a { color: inherit; }
.product-card__category a:hover { color: var(--sh-orange); }
.product-card__name { margin-top: 3px; font-size: 0.98rem; font-weight: 600; line-height: 1.35; color: var(--sh-on-surface); }
.product-card__name a:hover { color: var(--sh-orange); }
.product-card__meta { margin-top: 5px; }
.product-card__price { font-weight: 700; font-size: 0.98rem; color: var(--sh-on-surface); }
.product-card__price del { color: var(--sh-grey); font-weight: 500; margin-right: 6px; }
.product-card__price ins { text-decoration: none; color: var(--sh-orange); }

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */
.trust-strip {
	background: var(--sh-surface);
	border-top: 1px solid var(--sh-border);
	border-bottom: 1px solid var(--sh-border);
	padding: clamp(40px, 6vw, 64px) 0;
}
.trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-item__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(232, 89, 12, 0.12);
	border: 1px solid rgba(232, 89, 12, 0.3);
	color: var(--sh-orange);
	flex: none;
}
.trust-item__icon svg { width: 24px; height: 24px; }
.trust-item__label { font-weight: 700; font-size: 0.95rem; color: var(--sh-on-surface); }
.trust-item__sub { color: var(--sh-grey-light); font-size: 0.82rem; }

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */
.reviews-section { background: var(--sh-footer-bg); color: var(--sh-on-surface); }
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.review-card {
	background: var(--sh-surface-alt);
	border: 1px solid var(--sh-border);
	border-radius: var(--radius);
	padding: 28px;
	transition: transform var(--dur-fast) var(--ease-out-expo), border-color var(--dur-fast) ease, background-color 0.35s ease;
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(232, 89, 12, 0.4); }
.review-card__stars { color: var(--sh-orange); letter-spacing: 3px; font-size: 0.95rem; }
.review-card__quote { margin: 16px 0 18px; font-size: 1rem; line-height: 1.6; color: rgba(var(--sh-on-surface-rgb), 0.88); }
.review-card__meta { font-size: 0.82rem; color: var(--sh-grey-light); }
.review-card__meta .verified { color: #7dc98f; }

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.cta-section {
	position: relative;
	background: var(--sh-surface);
	color: var(--sh-on-surface);
	overflow: hidden;
	padding: clamp(72px, 10vw, 130px) 0;
	text-align: center;
}
.cta-section__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 70% at 50% 100%, rgba(232, 89, 12, 0.18), transparent 70%),
		linear-gradient(rgba(var(--sh-on-surface-rgb), 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(var(--sh-on-surface-rgb), 0.02) 1px, transparent 1px);
	background-size: auto, 56px 56px, 56px 56px;
}
.cta-section__inner { position: relative; }
.cta-section .display-headline { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.cta-section__sub { margin: 18px auto 0; max-width: 36rem; color: var(--sh-grey-light); font-size: 1.05rem; }
.cta-section__actions { margin-top: 36px; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--sh-footer-bg); border-top: 1px solid var(--sh-border); }

.footer-newsletter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	padding: clamp(36px, 5vw, 56px) 0;
	border-bottom: 1px solid var(--sh-border);
}
.footer-newsletter__title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.9rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.footer-newsletter__sub { margin: 6px 0 0; color: var(--sh-grey-light); font-size: 0.92rem; max-width: 30rem; }
.footer-newsletter__form form { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-newsletter__form input[type="email"],
.footer-newsletter__form input[type="text"] {
	min-width: 260px;
	padding: 14px 22px;
	border: 1px solid rgba(var(--sh-on-surface-rgb), 0.15);
	border-radius: 999px;
	background: rgba(var(--sh-on-surface-rgb), 0.05);
	color: var(--sh-on-surface);
	font-family: inherit;
	font-size: 0.92rem;
	outline: none;
	transition: border-color var(--dur-fast) ease;
}
.footer-newsletter__form input::placeholder { color: var(--sh-grey); }
.footer-newsletter__form input:focus { border-color: var(--sh-orange); }
.footer-newsletter__form button,
.footer-newsletter__form input[type="submit"] {
	padding: 14px 30px;
	border: 0;
	border-radius: 999px;
	background: var(--sh-orange);
	color: var(--sh-white);
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: background var(--dur-fast) ease;
}
.footer-newsletter__form button:hover { background: var(--sh-orange-hot); }

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding: clamp(40px, 6vw, 64px) 0;
}
.footer-brand__logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--sh-on-surface);
}
.footer-brand__tagline { margin: 14px 0 0; color: var(--sh-grey-light); font-size: 0.9rem; max-width: 22rem; }
.footer-brand__origin {
	display: inline-block;
	margin-top: 14px;
	padding: 4px 12px;
	border: 1px solid var(--sh-border);
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sh-grey);
}
.footer-col h4 {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 16px;
	color: var(--sh-on-surface);
}
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--sh-grey-light); font-size: 0.9rem; transition: color var(--dur-fast) ease; }
.footer-col a:hover { color: var(--sh-orange); }

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	padding: 22px 0 28px;
	border-top: 1px solid var(--sh-border);
	color: var(--sh-grey);
	font-size: 0.82rem;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(var(--sh-on-surface-rgb), 0.05);
	border: 1px solid var(--sh-border);
	color: var(--sh-on-surface);
	transition: background var(--dur-fast) ease, color var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
.footer-social a:hover { background: var(--sh-orange); border-color: var(--sh-orange); color: var(--sh-white); }
.footer-social svg { width: 16px; height: 16px; }
.footer-payments { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-payments span {
	padding: 4px 12px;
	border: 1px solid var(--sh-border);
	border-radius: 6px;
	background: rgba(var(--sh-on-surface-rgb), 0.04);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sh-grey-light);
}

/* --------------------------------------------------------------------------
   Generic inner pages (page.php / single.php / WooCommerce wrappers)
   Light fog surface so vendor content stays readable.
   -------------------------------------------------------------------------- */
.sh-page-wrap { background: var(--sh-fog); color: var(--sh-dark); min-height: 55vh; }
.sh-page-wrap .display-headline { color: var(--sh-dark); }
.sh-page-wrap .entry-content a { color: var(--sh-orange); text-decoration: underline; }

/* --------------------------------------------------------------------------
   Reveal utilities
   -------------------------------------------------------------------------- */
html.js .reveal { opacity: 0; transform: translateY(30px); }
html.js .reveal.is-visible {
	opacity: 1;
	transform: none;
	transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
html.js .reveal-scale { opacity: 0; transform: translateY(20px) scale(0.96); }
html.js .reveal-scale.is-visible {
	opacity: 1;
	transform: none;
	transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
	.products-grid { grid-template-columns: repeat(3, 1fr); }
	.cat-grid { grid-template-columns: repeat(2, 1fr); }
	.trust-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
	.reviews-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.site-nav__links { display: none; }
	.nav-toggle { display: flex; }
	.hero__grid { grid-template-columns: 1fr; text-align: center; }
	.hero__content { display: flex; flex-direction: column; align-items: center; }
	.hero__visual { margin-top: 12px; }
	.hero__stats { justify-content: center; }
	.hero__scroll-hint { display: none; }
}

@media (max-width: 639px) {
	.products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.cat-grid { grid-template-columns: 1fr; }
	.trust-strip__grid { grid-template-columns: 1fr; }
	.section-head { align-items: flex-start; flex-direction: column; }
	.btn { padding: 13px 24px; }
	.hero-card { width: min(340px, 88%); }
	.hero-chip--shipping { left: 0; }
	.hero-chip--returns { right: 0; }
	.hero-roundel { width: 78px; height: 78px; top: 0; right: 2%; }
	.footer-grid { grid-template-columns: 1fr; gap: 28px; }
	.footer-newsletter__form input[type="email"] { min-width: 0; flex: 1; }
	.btn--pill { display: none; }
	.product-card__quick-add { opacity: 1; transform: none; padding: 8px; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@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; }
	html.js .hero__anim,
	html.js .reveal,
	html.js .reveal-scale { opacity: 1 !important; transform: none !important; }
	.hero-card { transform: rotate(-6deg) !important; }
}
