/*
 * Iron Wolf Outfitters — theme stylesheet.
 * All WooCommerce visual styling lives here (Section 10 / 14).
 */

:root {
	--color-background: #16130f;
	--color-foreground: #eae4d9;
	--color-primary: #eae4d9;
	--color-primary-foreground: #16130f;
	--color-secondary: #2b2723;
	--color-accent: #a7431f;
	--color-accent-foreground: #f7f2ea;
	--color-highlight: #b98f47;
	--color-highlight-foreground: #16130f;
	--color-muted-foreground: #a89e8e;
	--color-muted: #2b2723;
	--color-border: #3a352f;

	--font-display: 'Oswald', 'Arial Narrow', ui-sans-serif, sans-serif;
	--font-body: 'Inter', 'Helvetica Neue', sans-serif;

	--radius: 0.25rem;
	--card-radius: 0.25rem;
	--btn-radius: 0.125rem;
	--btn-height: 3.5rem;
	--btn-padding: 0 2.25rem;
	--btn-font-size: 0.7rem;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.2em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.6rem;
	--header-height: 88px;
	--logo-height: 82px;
	--checkout-gap: 2.5rem;

	--shadow-soft: 0 8px 28px -12px rgba(0, 0, 0, 0.6);
	--shadow-elevated: 0 22px 60px -18px rgba(0, 0, 0, 0.75);
	--transition-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);
}

@media (min-width: 1024px) {
	:root { --header-height: 100px; }
}

/* ============================= RESET / BASE ============================= */
*, *::before, *::after { box-sizing: border-box; border-color: var(--color-border); }
html, body { overflow-x: clip; margin: 0; padding: 0; }
html { background-color: var(--color-background); }
body {
	color: var(--color-foreground);
	background-color: var(--color-background);
	background-image:
		radial-gradient(120% 90% at 15% 0%, color-mix(in srgb, var(--color-secondary) 75%, transparent) , transparent 60%),
		radial-gradient(100% 80% at 85% 15%, color-mix(in srgb, var(--color-accent) 10%, transparent), transparent 65%),
		linear-gradient(180deg, color-mix(in srgb, var(--color-background) 96%, black) 0%, var(--color-background) 100%);
	background-attachment: fixed;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
body::after {
	content: '';
	position: fixed;
	inset: -50%;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.055;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
	background-size: 220px 220px;
}
img, video, iframe { max-width: 100%; height: auto; }
img:not(.cover-img):not(.hero-bg-img):not(.theme-thumb-img):not(.theme-product-main-img-el):not(.theme-product-card__image):not(.theme-cart-item__image img):not(.theme-cart-drawer__pair-image img),
video:not(.cover-img),
iframe { border-radius: var(--radius); }
.cover-img, .hero-bg-img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover; object-position: center;
	display: block;
	border-radius: 0 !important;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 600; font-size: inherit; letter-spacing: 0.01em; text-transform: uppercase; margin: 0; }
p { margin: 0; }

.container-wide { width: 100%; max-width: 80rem; margin-inline: auto; padding-inline: 1.5rem; }
.container-editorial { width: 100%; max-width: 64rem; margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 1024px) { .container-wide, .container-editorial { padding-inline: 2.5rem; } }
.scroll-mt-24 { scroll-margin-top: 6rem; }
.scroll-mt-28 { scroll-margin-top: 7rem; }

.label-eyebrow {
	display: block; margin-bottom: 0.75rem;
	font-family: var(--font-body); font-size: 11px; font-weight: 600;
	letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-accent);
}
.text-metal {
	background-image: linear-gradient(180deg, #f7f4ee 0%, #c9c0b3 45%, #756b58 60%, #f0ebe0 100%);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.surface-metal {
	background-image: linear-gradient(145deg, color-mix(in srgb, var(--color-secondary) 90%, white 10%) 0%, color-mix(in srgb, var(--color-background) 92%, black) 28%, color-mix(in srgb, var(--color-secondary) 95%, white 5%) 52%, color-mix(in srgb, var(--color-background) 90%, black) 76%, var(--color-secondary) 100%);
	position: relative;
}
.edge-etched { box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), inset 0 -1px 0 rgba(0,0,0,0.6); }
.theme-btn-primary, .theme-btn-outline, .theme-btn-cta, .theme-btn-highlight, .theme-btn-pill {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	font-family: var(--font-body); font-size: var(--btn-font-size); font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing); text-transform: var(--btn-text-transform);
	height: var(--btn-height); padding: var(--btn-padding);
	border-radius: var(--btn-radius); transition: all 0.3s var(--transition-smooth); cursor: pointer;
}
.theme-btn-primary { background: var(--color-accent); color: var(--color-accent-foreground); border: 1px solid var(--color-accent); }
.theme-btn-primary:hover { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.theme-btn-cta { background: var(--color-accent); color: var(--color-accent-foreground); border: 1px solid var(--color-accent); }
.theme-btn-cta:hover { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.theme-btn-highlight { background: var(--color-highlight); color: var(--color-highlight-foreground); border-radius: var(--radius); }
.theme-btn-highlight:hover { filter: brightness(1.1); }
.theme-btn-outline { border: 1px solid var(--color-border); background: transparent; color: var(--color-foreground); height: 3rem; }
.theme-btn-outline:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-btn-pill { border-radius: 999px; height: 3rem; }
.theme-btn-lg { height: 3.5rem; }

.theme-icon { width: 1.25rem; height: 1.25rem; }
.theme-icon--sm { width: 1rem; height: 1rem; }
.theme-icon--xs { width: 0.75rem; height: 0.75rem; }

/* ============================= ANIMATIONS ============================= */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fadeIn 0.8s var(--transition-smooth) forwards; }
.animate-slide-up { animation: slideUp 0.8s var(--transition-smooth) forwards; }

.reveal-item {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
body.is-customizer .reveal-item { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
	.reveal-item { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.hover-lift { transition: transform 0.45s var(--transition-smooth), box-shadow 0.45s var(--transition-smooth), border-color 0.45s var(--transition-smooth); }
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -18px rgba(0,0,0,0.75); }
.hover-sheen { position: relative; overflow: hidden; }
.hover-sheen::before {
	content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.16) 50%, transparent 65%);
	transform: translateX(-120%); transition: transform 0.85s var(--transition-smooth);
}
.hover-sheen:hover::before { transform: translateX(120%); }
.icon-nudge { transition: transform 0.4s var(--transition-smooth); }
button:hover .icon-nudge, a:hover .icon-nudge { transform: translateX(5px); }

/* Scroll progress (ScrollProgress.tsx) */
.theme-scroll-progress {
	position: fixed; top: 0; left: 0; right: 0; z-index: 70;
	height: 2px; pointer-events: none; transform: scaleX(0); transform-origin: 0 50%;
	background: var(--color-primary); transition: background-color 0.3s ease;
}
.theme-scroll-progress.is-announcement-visible { background: var(--color-primary-foreground); }

.grain-overlay {
	position: absolute; inset: 0; pointer-events: none;
	opacity: 0.28; mix-blend-mode: soft-light;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23g)'/%3E%3C/svg%3E");
	background-size: 180px 180px;
}
.theme-hero__grain { opacity: 0.4; z-index: 2; }

/* ============================= HEADER ============================= */
.theme-announcement { position: fixed; top: 0; left: 0; right: 0; z-index: 60; background: var(--color-accent); color: var(--color-accent-foreground); }
.theme-announcement__inner { position: relative; display: flex; align-items: center; justify-content: center; min-height: 2rem; padding-block: 0.35rem; padding-inline: 2rem; }
.theme-announcement__text { font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase; font-weight: 600; text-align: center; }
.theme-announcement__close { position: absolute; right: 0.5rem; padding: 0.25rem; opacity: 0.8; }
.theme-announcement__close:hover { opacity: 1; }
body.theme-announcement-hidden .theme-announcement { display: none; }

.site-header {
	position: fixed; left: 0; right: 0; z-index: 50;
	border-bottom: 1px solid var(--color-border);
	background: var(--color-background);
	transition: top 0.3s ease;
	top: 0;
}
body:not(.theme-announcement-hidden) .site-header { top: 36px; }
.theme-header__bar { padding-inline: 1.5rem; }
@media (min-width: 768px) { .theme-header__bar { padding-inline: 2.5rem; } }
.theme-nav { position: relative; display: flex; align-items: center; justify-content: space-between; height: 88px; }
@media (min-width: 1024px) { .theme-nav { height: 100px; } }
.theme-logo {
	display: flex; align-items: center; gap: 0.75rem;
	position: absolute; left: 50%; transform: translateX(-50%);
}
@media (min-width: 768px) {
	.theme-logo { position: static; transform: none; flex: 1; justify-content: flex-start; }
}
.theme-nav__mobile-toggle { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; flex: 1; align-items: flex-start; justify-content: center; }
.theme-nav__mobile-toggle span { display: block; height: 2.5px; background: var(--color-foreground); border-radius: 1px; transition: all 0.3s ease; }
.theme-nav__mobile-toggle span:nth-child(1) { width: 20px; }
.theme-nav__mobile-toggle span:nth-child(2) { width: 28px; }
.theme-nav__mobile-toggle span:nth-child(3) { width: 14px; }
@media (min-width: 768px) { .theme-nav__mobile-toggle { display: none; } }

.theme-header__spacer { height: 88px; }
@media (min-width: 1024px) { .theme-header__spacer { height: 100px; } }
body:not(.theme-announcement-hidden) .theme-header__spacer::before { content: ''; display: block; height: 36px; }

.theme-nav__center { display: none; align-items: center; gap: 2.25rem; }
@media (min-width: 768px) { .theme-nav__center { display: flex; } }
.theme-nav-list { display: flex; align-items: center; gap: 2.25rem; }
.theme-nav-list a, .theme-nav-list button.nav-link {
	position: relative; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
	transition: color 0.3s ease;
}
.theme-nav-list a::after, .nav-link::after {
	content: ''; position: absolute; left: 0; bottom: -4px; height: 1.5px; width: 100%;
	background: var(--color-accent); transform: scaleX(0); transform-origin: left center;
	transition: transform 0.4s var(--transition-smooth);
}
.theme-nav-list a:hover::after, .nav-link:hover::after { transform: scaleX(1); }
.theme-nav-list a:hover, .nav-link:hover { color: var(--color-accent); }

.theme-nav-trigger {
	position: relative; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
	transition: color 0.3s ease; display: inline-flex; align-items: center; gap: 0.25rem;
	background: none; border: none; color: var(--color-foreground); cursor: pointer; padding: 0;
}
.theme-nav-trigger.is-active, .theme-nav-trigger:hover { color: var(--color-accent); }
.theme-nav-trigger::after {
	content: ''; position: absolute; left: 0; bottom: -4px; height: 1.5px; width: 100%;
	background: var(--color-accent); transform: scaleX(0); transform-origin: left center;
	transition: transform 0.4s var(--transition-smooth);
}
.theme-nav-trigger:hover::after, .theme-nav-trigger.is-active::after { transform: scaleX(1); }

.theme-mega-menu { position: absolute; top: 100%; left: 0; right: 0; z-index: 40; }
@media (max-width: 767px) { .theme-mega-menu { display: none !important; } }
.theme-mega-menu.is-open { animation: fadeIn 0.8s var(--transition-smooth) forwards; }
.theme-mega-menu__surface {
	background: var(--color-background); border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-elevated);
}
.theme-mega-menu__inner { padding-block: 3rem; }
.theme-mega-menu__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .theme-mega-menu__grid { grid-template-columns: 8fr 4fr; gap: 2.5rem; } }
.theme-mega-menu__cols { display: grid; gap: 2.5rem; grid-template-columns: repeat(var(--mega-cols, 1), minmax(0, 1fr)); }
.theme-mega-menu__col-title {
	font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
	margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--color-border);
	font-family: var(--font-display);
}
.theme-mega-menu__links { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-mega-menu__link {
	text-align: left; font-size: 0.875rem; font-family: var(--font-display); font-weight: 500;
	text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-foreground);
	transition: color 0.3s ease; background: none; border: none; padding: 0; cursor: pointer;
}
.theme-mega-menu__link:hover { color: var(--color-primary); }
.theme-mega-menu__shop-all {
	margin-top: 2rem; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600;
	font-family: var(--font-display); color: var(--color-foreground); border-bottom: 1px solid var(--color-foreground);
	padding-bottom: 0.25rem; background: none; cursor: pointer;
}
.theme-mega-menu__shop-all:hover { color: var(--color-primary); border-color: var(--color-primary); }
.theme-mega-menu__feature { position: relative; display: block; width: 100%; text-align: left; border: none; background: none; padding: 0; cursor: pointer; }
.theme-mega-menu__feature-image { display: block; aspect-ratio: 4/5; overflow: hidden; position: relative; }
.theme-mega-menu__feature-image img { transition: transform 1.2s ease; }
.theme-mega-menu__feature:hover .theme-mega-menu__feature-image img { transform: scale(1.05); }
.theme-mega-menu__feature-scrim {
	position: absolute; inset: 0; pointer-events: none;
	background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2));
}
.theme-mega-menu__feature-eyebrow {
	position: absolute; top: 1.5rem; left: 1.5rem; right: 1.5rem; z-index: 2;
	font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600;
	color: color-mix(in srgb, var(--color-foreground) 95%, transparent); font-family: var(--font-display);
}
.theme-mega-menu__feature-body { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; z-index: 2; color: var(--color-foreground); }
.theme-mega-menu__feature-title {
	display: block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
	font-size: 1.5rem; line-height: 1.1; margin-bottom: 0.75rem; text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.theme-mega-menu__feature-cta {
	display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.32em;
	text-transform: uppercase; font-weight: 600; font-family: var(--font-display);
	border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 80%, transparent); padding-bottom: 0.25rem;
}

.site-logo-img { height: 71px !important; width: auto !important; display: block; }
.site-logo-img--filtered { filter: invert(1) brightness(0.95); }
@media (min-width: 1024px) { .site-logo-img { height: var(--logo-height) !important; } }
.site-logo-img--mobile-menu { height: 4.25rem !important; }
.site-logo-text { line-height: var(--logo-height); display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.1rem; }

.theme-nav__icons { display: flex; align-items: center; gap: 0.25rem; flex: 1; justify-content: flex-end; }
@media (min-width: 768px) { .theme-nav__icons { flex: 1; } }
.theme-icon-btn { position: relative; padding: 0.5rem; transition: opacity 0.3s ease; }
.theme-icon-btn:hover { opacity: 0.7; }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px; width: 1.25rem; height: 1.25rem;
	display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600;
	background: var(--color-accent); color: var(--color-accent-foreground); border-radius: 999px;
}
.theme-cart-count:empty { display: none; }

/* Mobile menu */
.theme-mobile-menu { position: fixed; inset: 0; z-index: 70; visibility: hidden; }
.theme-mobile-menu.is-open { visibility: visible; }
.theme-mobile-menu__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.3s ease; }
.theme-mobile-menu.is-open .theme-mobile-menu__overlay { opacity: 1; }
.theme-mobile-menu__panel {
	position: absolute; top: 0; left: 0; height: 100%; width: 88vw; max-width: 24rem;
	background: var(--color-background); border-right: 1px solid var(--color-border);
	display: flex; flex-direction: column; transform: translateX(-100%); transition: transform 0.35s var(--transition-smooth);
}
.theme-mobile-menu.is-open .theme-mobile-menu__panel { transform: translateX(0); }
.theme-mobile-menu__head { display: flex; align-items: center; justify-content: space-between; padding: 0 1.25rem; height: 72px; border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); }
.theme-mobile-menu__nav { flex: 1; overflow-y: auto; padding: 0.75rem 0.5rem; }
.theme-mobile-nav { list-style: none; margin: 0; padding: 0; }
.theme-mobile-nav__item { border-bottom: 1px solid color-mix(in srgb, var(--color-border) 40%, transparent); }
.theme-mobile-nav__toggle, .theme-mobile-nav__top {
	width: 100%; display: flex; align-items: center; justify-content: space-between;
	padding: 1rem 0.75rem; text-align: left; background: none; border: none; color: inherit;
}
.theme-mobile-nav__label { font-family: var(--font-display); font-size: 1.125rem; text-transform: uppercase; }
.theme-mobile-nav__chevron { transition: transform 0.3s ease; }
.theme-mobile-nav__toggle[aria-expanded="true"] .theme-mobile-nav__chevron { transform: rotate(180deg); }
.theme-mobile-nav__sub { padding: 0 0.75rem 0.75rem; }
.theme-mobile-nav__col-title {
	font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 50%, transparent);
	margin: 0.5rem 0 0.25rem; font-family: var(--font-body);
}
.theme-mobile-nav__link {
	width: 100%; text-align: left; padding: 0.625rem 0; font-size: 0.875rem;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent); background: none; border: none;
}
.theme-mobile-nav__link:hover { color: var(--color-accent); }
.theme-mobile-nav__link--accent { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-accent); text-decoration: underline; text-underline-offset: 4px; }
.theme-mobile-menu__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; padding: 1rem 0.75rem; border-top: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); }
.theme-mobile-menu__actions button { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem; border: 1px solid var(--color-border); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; border-radius: 999px; }
.theme-mobile-menu__actions button:hover { background: var(--color-primary); color: var(--color-primary-foreground); }

/* Search dialog */
.theme-search-dialog { position: fixed; inset: 0; z-index: 80; visibility: hidden; }
.theme-search-dialog.is-open { visibility: visible; }
.theme-search-dialog__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-background) 40%, transparent); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s ease; }
.theme-search-dialog.is-open .theme-search-dialog__scrim { opacity: 1; }
.theme-search-dialog__panel {
	position: relative; background: var(--color-background); width: 100%; max-height: 92vh; overflow-y: auto;
	border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-elevated);
	transform: translateY(-16px); opacity: 0; transition: transform 0.3s var(--transition-smooth), opacity 0.3s ease;
}
.theme-search-dialog.is-open .theme-search-dialog__panel { transform: translateY(0); opacity: 1; }
.theme-search-dialog__close { position: absolute; top: 1.25rem; right: 1.25rem; z-index: 10; }
@media (min-width: 1024px) { .theme-search-dialog__close { top: 1.75rem; right: 2rem; } }
.theme-search-dialog__inner { padding-block: 2.5rem; }
@media (min-width: 1024px) { .theme-search-dialog__inner { padding-block: 3.5rem; } }
.theme-search-dialog__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .theme-search-dialog__grid { grid-template-columns: 260px 1fr; gap: 4rem; } }
.theme-search-dialog__sidebar-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--color-foreground); text-transform: none; }
.theme-search-dialog__categories { display: flex; flex-direction: column; gap: 0.875rem; }
.theme-search-dialog__cat {
	text-align: left; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent); background: none; border: none; padding: 0;
}
.theme-search-dialog__cat:hover { color: var(--color-primary); }
.theme-search-dialog__main { min-width: 0; }
@media (min-width: 1024px) { .theme-search-dialog__main { padding-right: 4rem; } }
.theme-search-dialog__input-row { display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 30%, transparent); padding-bottom: 0.75rem; margin-bottom: 0; }
.theme-search-dialog__search-icon { opacity: 0.6; }
.theme-search-dialog__input { flex: 1; background: transparent; border: none; outline: none; font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); text-transform: none; }
.theme-search-dialog__input::placeholder { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-search-dialog__section { margin-top: 2.5rem; }
.theme-search-dialog__results-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; text-transform: none; color: var(--color-foreground); }
.theme-search-dialog__empty { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1rem; }
.theme-search-dialog__results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .theme-search-dialog__results { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .theme-search-dialog__results { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.theme-search-hit { display: block; text-align: left; background: none; border: none; padding: 0; cursor: pointer; color: inherit; width: 100%; }
.theme-search-hit__image { aspect-ratio: 1/1; overflow: hidden; background: var(--color-secondary); margin-bottom: 0.75rem; display: block; }
.theme-search-hit__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; display: block; }
.theme-search-hit:hover .theme-search-hit__image img { transform: scale(1.05); }
.theme-search-hit__name { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.theme-search-hit__price { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); margin-top: 0.25rem; display: block; }

/* Contact modal */
.theme-modal { position: fixed; inset: 0; z-index: 90; visibility: hidden; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.theme-modal.is-open { visibility: visible; }
.theme-modal__scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.3s ease; }
.theme-modal.is-open .theme-modal__scrim { opacity: 1; }
.theme-modal__panel {
	position: relative; z-index: 1; max-width: 32rem; width: 100%; max-height: 90vh; overflow-y: auto;
	background: var(--color-background); border: 1px solid var(--color-border); border-radius: 0.75rem;
	padding: 2rem; transform: scale(0.95); opacity: 0; transition: transform 0.3s var(--transition-smooth), opacity 0.3s ease;
}
.theme-modal.is-open .theme-modal__panel { transform: scale(1); opacity: 1; }
.theme-modal__close { position: absolute; top: 1rem; right: 1rem; }
.theme-modal__title { font-size: 1.5rem; line-height: 1.25; margin-block: 0.25rem 0.5rem; text-transform: none; }
.theme-modal__desc { font-size: 15px; color: var(--color-muted-foreground); line-height: 1.625; font-family: var(--font-body); }
.theme-modal__contact-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); border-top: 1px solid var(--color-border); padding-top: 1rem; margin-top: 0.5rem; }
.theme-modal__contact-link { transition: color 0.3s ease; }
.theme-modal__contact-link:hover { color: var(--color-foreground); }
.theme-contact-form-wrap { margin-top: 1rem; }
.theme-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.theme-contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-contact-form__row { grid-template-columns: 1fr 1fr; } }
.theme-contact-form input, .theme-contact-form textarea, .theme-footer__newsletter-input, .theme-contact-form-page input, .theme-contact-form-page textarea {
	width: 100%; padding: 0.625rem 0.75rem; background: var(--color-background); border: 1px solid var(--color-border);
	font-size: 0.875rem; color: var(--color-foreground); border-radius: 0.375rem; font-family: var(--font-body);
}
.theme-contact-form textarea { resize: none; }
.theme-contact-form input:focus, .theme-contact-form textarea:focus { outline: none; border-color: var(--color-primary); }
.theme-contact-form input::placeholder, .theme-contact-form textarea::placeholder { color: var(--color-muted-foreground); }
.theme-contact-form__submit-row { display: flex; justify-content: flex-end; }
.theme-contact-form__submit { border-radius: 9999px !important; height: 2.75rem !important; padding: 0 1.5rem !important; font-size: 0.75rem !important; letter-spacing: 0.24em !important; }
.theme-contact-form__send-icon { margin-left: 0.25rem; }
.theme-contact-success { text-align: center; padding: 2rem 0; }
.theme-contact-success__icon-wrap {
	width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem; border-radius: 9999px;
	background: var(--color-primary); color: var(--color-primary-foreground);
	display: flex; align-items: center; justify-content: center;
}
.theme-contact-success__icon { width: 1.75rem; height: 1.75rem; stroke-width: 2; }
.theme-contact-success__title { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; text-transform: none; }
.theme-contact-success__text { font-size: 0.875rem; color: var(--color-muted-foreground); font-family: var(--font-body); }

/* ============================= HERO ============================= */
.theme-hero { position: relative; width: 100%; min-height: 100vh; overflow: hidden; display: flex; align-items: center; justify-content: center; }
body.theme-no-hero .theme-hero { display: none; }
.theme-hero__slides { position: absolute; inset: 0; }
.theme-hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s var(--transition-smooth), transform 1.4s var(--transition-smooth); transform: scale(1); }
@media (min-width: 1024px) { .theme-hero__slide { transform: scale(1.04); } }
.theme-hero__slide.is-active { opacity: 1; transform: scale(1); }
.theme-hero__scrim { position: absolute; inset: 0; background: linear-gradient(to top, var(--color-background), color-mix(in srgb, var(--color-background) 60%, transparent), color-mix(in srgb, var(--color-background) 70%, transparent)); }
.theme-hero__content { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
.theme-hero__eyebrow { display: inline-block; font-size: 11px; letter-spacing: 0.36em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.25rem; }
.theme-hero__title { font-size: 2.5rem; line-height: 0.95; max-width: 48rem; margin-inline: auto; margin-bottom: 2rem; }
@media (min-width: 640px) { .theme-hero__title { font-size: 3rem; } }
@media (min-width: 768px) { .theme-hero__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .theme-hero__title { font-size: 4.5rem; } }
@media (min-width: 1280px) { .theme-hero__title { font-size: 5.375rem; } }
.theme-hero__dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; gap: 0.5rem; }
.theme-hero__dot { height: 4px; width: 1rem; background: color-mix(in srgb, var(--color-foreground) 50%, transparent); transition: all 0.5s ease; }
.theme-hero__dot.is-active { width: 3rem; background: var(--color-foreground); }

/* ============================= TRUST STRIP / STATS ============================= */
.theme-trust-strip { border-bottom: 1px solid var(--color-border); }
.theme-trust-strip__grid { padding-block: 1.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .theme-trust-strip__grid { grid-template-columns: repeat(4, 1fr); } }
.theme-trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .theme-trust-item { flex-direction: row; gap: 0.75rem; } }
.theme-trust-item__icon { color: var(--color-accent); transition: transform 0.5s ease; }
.theme-trust-item:hover .theme-trust-item__icon { transform: scale(1.1) rotate(-6deg); }
.theme-trust-item__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; transition: color 0.3s ease; }
@media (min-width: 768px) { .theme-trust-item__label { font-size: 12px; } }
.theme-trust-item:hover .theme-trust-item__label { color: var(--color-accent); }
.theme-trust-strip { border-bottom: 1px solid var(--color-border); }

.theme-stats { border-bottom: 1px solid var(--color-border); background: color-mix(in srgb, var(--color-background) 40%, transparent); }
.theme-stats__grid { padding-block: 3rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 1024px) { .theme-stats__grid { grid-template-columns: repeat(4, 1fr); padding-block: 4rem; } }
.theme-stat { text-align: center; border-left: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); padding-left: 1rem; }
@media (min-width: 1024px) { .theme-stat { text-align: left; padding-left: 1.5rem; } }
.theme-stat__value { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
@media (min-width: 768px) { .theme-stat__value { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-stat__value { font-size: 3.75rem; } }
.theme-stat__label { margin-top: 0.75rem; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: var(--color-muted-foreground); transition: color 0.3s ease; }
.theme-stat:hover .theme-stat__label { color: var(--color-accent); }

/* ============================= SECTION HEADS / HEADINGS ============================= */
.theme-section-head { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .theme-section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.section-heading { font-size: 1.875rem; }
.theme-shop-categories__heading { font-size: 1.875rem; }
@media (min-width: 768px) { .theme-shop-categories__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-shop-categories__heading { font-size: 3rem; } }
.theme-featured__heading { font-size: 1.875rem; }
@media (min-width: 768px) { .theme-featured__heading { font-size: 2.25rem; } }
.theme-mission__title, .theme-brand__title { font-size: 1.875rem; }
@media (min-width: 1024px) { .theme-mission__title, .theme-brand__title { font-size: 3rem; line-height: 1; } }
.theme-shop__heading { font-size: 2.25rem; line-height: 1; text-align: center; }
@media (min-width: 768px) { .theme-shop__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-shop__heading { font-size: 3.75rem; } }
.theme-promo-banner__title { font-size: 2.25rem; line-height: 0.95; }
@media (min-width: 768px) { .theme-promo-banner__title { font-size: 3.75rem; } }
.theme-clear-filter { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--color-accent); align-self: flex-start; }
.theme-clear-filter:hover { opacity: 0.7; }

/* ============================= SHOP BY CATEGORY ============================= */
.theme-shop-categories { padding-block: 4rem 3rem; }
@media (min-width: 1024px) { .theme-shop-categories { padding-block: 6rem 4rem; } }
.theme-cat-tiles-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-cat-tiles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .theme-cat-tiles-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.theme-cat-tile { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--color-secondary); text-align: left; border-radius: var(--radius); display: block; width: 100%; }
.theme-cat-tile__image { transition: transform 1.2s ease; }
.theme-cat-tile:hover .theme-cat-tile__image { transform: scale(1.05); }
.theme-cat-tile__scrim { position: absolute; inset: 0; background: linear-gradient(to top, var(--color-background), color-mix(in srgb, var(--color-background) 40%, transparent), transparent); pointer-events: none; }
.theme-cat-tile__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; z-index: 2; }
@media (min-width: 768px) { .theme-cat-tile__content { padding: 1.5rem; } }
.theme-cat-tile__content h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
@media (min-width: 768px) { .theme-cat-tile__content h3 { font-size: 1.5rem; } }
.theme-cat-tile__content p { font-size: 0.8125rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); margin-bottom: 1rem; }
.theme-cat-tile__cta { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; }
.theme-cat-tile.is-active { outline: 2px solid var(--color-accent); outline-offset: 2px; }

/* ============================= PROMO BANNER ============================= */
.theme-promo-banner { padding-bottom: 1rem; }
.theme-promo-banner__link { position: relative; display: block; width: 100%; height: 55vh; overflow: hidden; border-radius: var(--radius); text-align: left; }
@media (min-width: 768px) { .theme-promo-banner__link { height: 65vh; } }
.theme-promo-banner__scrim { position: absolute; inset: 0; background: linear-gradient(to right, var(--color-background), color-mix(in srgb, var(--color-background) 55%, transparent), transparent); }
.theme-promo-banner__content { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 2rem; z-index: 2; }
@media (min-width: 768px) { .theme-promo-banner__content { padding: 3.5rem; } }
.theme-promo-banner__content-inner { max-width: 36rem; }
.theme-promo-banner__eyebrow { display: block; margin-bottom: 1rem; color: var(--color-highlight); }
.theme-promo-banner__title { font-family: var(--font-display); font-size: 2.25rem; line-height: 0.95; margin-bottom: 1rem; text-transform: none; color: var(--color-foreground); }
@media (min-width: 768px) { .theme-promo-banner__title { font-size: 3.75rem; } }
.theme-promo-banner__text { color: color-mix(in srgb, var(--color-foreground) 85%, transparent); max-width: 28rem; font-family: var(--font-body); font-size: 1rem; line-height: 1.5; }
@media (min-width: 768px) { .theme-promo-banner__text { font-size: 1.125rem; } }
.theme-promo-banner__cta { display: inline-flex; align-items: center; gap: 0.5rem; height: 3rem; padding: 0 2.25rem; font-size: 0.75rem; letter-spacing: 0.2em; transition: transform 0.3s ease; }
.theme-promo-banner__cta--inline { margin-top: 1.5rem; }
@media (min-width: 768px) { .theme-promo-banner__cta--inline { display: none; } }
.theme-promo-banner__cta--floating { display: none; }
@media (min-width: 768px) {
	.theme-promo-banner__cta--floating { display: inline-flex; position: absolute; bottom: 3.5rem; right: 3.5rem; margin-top: 0; }
}
.theme-promo-banner__link:hover .theme-promo-banner__cta { transform: translateX(4px); }
.theme-hero .theme-btn-primary { letter-spacing: 0.22em; font-size: 0.75rem; }

/* ============================= PRODUCT GRID / CARD ============================= */
.theme-featured, .theme-shop { padding-block: 4rem; }
@media (min-width: 1024px) { .theme-featured { padding-block: 6rem; } }
.theme-shop { border-radius: var(--radius); margin-inline: 0.75rem; }
@media (min-width: 768px) { .theme-shop { margin-inline: 1.5rem; } }
.theme-shop__head { text-align: center; padding-block: 4rem 1rem; }
@media (min-width: 1024px) { .theme-shop__head { padding-block: 6rem 1rem; } }
.theme-shop__body { padding-bottom: 5rem; }
@media (min-width: 1024px) { .theme-shop__body { padding-bottom: 7rem; } }

.theme-shop-filters { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; justify-content: center; }
@media (min-width: 640px) { .theme-shop-filters { flex-direction: row; } }
.theme-shop-filter { position: relative; flex: 1; max-width: 20rem; }
.theme-shop-filter__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; border-radius: var(--radius); border: 1px solid var(--color-border); background: var(--color-background); transition: border-color 0.3s ease; }
.theme-shop-filter__btn:hover { border-color: var(--color-accent); }
.theme-shop-filter__label-group { display: flex; flex-direction: column; align-items: flex-start; }
.theme-shop-filter__label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-muted-foreground); }
.theme-shop-filter__value { font-size: 0.875rem; font-weight: 600; margin-top: 0.125rem; }
.theme-shop-filter__btn .theme-icon { transition: transform 0.3s ease; }
.theme-shop-filter.is-open .theme-shop-filter__btn .theme-icon { transform: rotate(180deg); }
.theme-shop-filter__list { position: absolute; left: 0; right: 0; top: 100%; margin-top: 0.25rem; z-index: 30; background: var(--color-background); border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow-elevated); max-height: 20rem; overflow-y: auto; display: none; }
.theme-shop-filter.is-open .theme-shop-filter__list { display: block; }
.theme-shop-filter__list li button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 1rem; text-align: left; font-size: 0.875rem; }
.theme-shop-filter__list li button:hover { background: color-mix(in srgb, var(--color-secondary) 60%, transparent); }
.theme-filter-check { opacity: 0; }
.theme-shop-filter__list li button.is-active { color: var(--color-accent); font-weight: 600; }
.theme-shop-filter__list li button.is-active .theme-filter-check { opacity: 1; }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
.theme-featured__grid { grid-template-columns: 1fr; }
@media (min-width: 640px) { .theme-featured__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .theme-featured__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; height: 100%; }
.theme-product-card { position: relative; display: flex; flex-direction: column; width: 100%; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--color-secondary); border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); transition: border-color 0.5s ease; }
.theme-product-card__image-wrapper > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card__image { height: 100% !important; width: 100%; }
.theme-product-card__image-wrapper::after {
	content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0;
	background: linear-gradient(to top, color-mix(in srgb, var(--color-background) 70%, transparent), color-mix(in srgb, var(--color-background) 10%, transparent), transparent);
	transition: opacity 0.5s ease;
}
.theme-product-card:hover .theme-product-card__image-wrapper::after { opacity: 1; }
.theme-product-card:hover .theme-product-card__image-wrapper { border-color: color-mix(in srgb, var(--color-accent) 50%, transparent); }
.theme-product-card__image { transition: transform 0.9s ease; }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.06); }
.theme-badge { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.25rem 0.65rem; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; }
.theme-badge--stock { top: 0.75rem; left: 0.75rem; background: var(--color-foreground); color: var(--color-background); }
.theme-badge--view { bottom: 0.75rem; left: 0.75rem; background: var(--color-accent); color: var(--color-accent-foreground); opacity: 0; transform: translateY(0.5rem); transition: all 0.5s ease; font-family: var(--font-display); gap: 0.375rem; }
.theme-product-card:hover .theme-badge--view { opacity: 1; transform: translateY(0); }
.theme-product-card__info { flex: 1; padding-top: 1rem; padding-bottom: 0.25rem; }
.theme-product-card__title { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; font-size: 15px; transition: color 0.3s ease; }
.theme-product-card:hover .theme-product-card__title { color: var(--color-accent); }
.theme-product-card__price { margin-top: 0.5rem; font-family: var(--font-display); font-weight: 600; font-size: 0.875rem; transition: transform 0.5s ease; font-variant-numeric: tabular-nums; }
.theme-product-card:hover .theme-product-card__price { transform: translateX(4px); }
.theme-product-card__price del { color: var(--color-muted-foreground); font-weight: 400; }
.theme-product-card__price ins { text-decoration: none; color: var(--color-accent); }

.theme-shop-empty { padding-block: 5rem; text-align: center; border: 1px dashed var(--color-border); border-radius: var(--radius); background: var(--color-background); }
.theme-shop-empty__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-shop-empty__text { font-size: 0.875rem; color: var(--color-muted-foreground); }

/* ============================= TWO-UP BANNERS ============================= */
.theme-two-up { padding-block: 4rem; }
@media (min-width: 1024px) { .theme-two-up { padding-block: 6rem; } }
.theme-two-up__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .theme-two-up__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.theme-two-up__item { position: relative; display: block; width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); text-align: left; }
@media (min-width: 768px) { .theme-two-up__item { aspect-ratio: 5/6; } }
.theme-two-up__image { transition: transform 1.2s ease; }
.theme-two-up__item:hover .theme-two-up__image { transform: scale(1.04); }
.theme-two-up__scrim { position: absolute; inset: 0; background: linear-gradient(to top, var(--color-background), color-mix(in srgb, var(--color-background) 45%, transparent), color-mix(in srgb, var(--color-background) 30%, transparent)); }
.theme-two-up__eyebrow { position: absolute; top: 1.5rem; left: 1.5rem; z-index: 2; display: inline-block; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: var(--color-highlight-foreground); background: var(--color-highlight); padding: 0.375rem 0.75rem; border-radius: var(--radius); }
.theme-two-up__eyebrow--desktop { display: none; position: static; margin-bottom: 0.75rem; }
@media (min-width: 768px) {
	.theme-two-up__eyebrow--mobile { display: none; }
	.theme-two-up__eyebrow--desktop { display: inline-block; }
}
.theme-two-up__content { position: absolute; inset-inline: 0; bottom: 0; padding: 2rem; z-index: 2; }
.theme-two-up__content h3 { font-size: 1.5rem; line-height: 0.95; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .theme-two-up__content h3 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .theme-two-up__content h3 { font-size: 2.25rem; } }

/* ============================= MISSION / BRAND / PROMISE ============================= */
.theme-mission { padding-block: 5rem; }
@media (min-width: 1024px) { .theme-mission { padding-block: 7rem; } }
.theme-mission__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .theme-mission__grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.theme-mission__quote { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-accent); text-transform: none; line-height: 1.4; margin-top: 2rem; }
@media (min-width: 768px) { .theme-mission__quote { font-size: 1.5rem; } }
.theme-mission__body { color: var(--color-muted-foreground); font-size: 15px; line-height: 1.7; display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .theme-mission__body { font-size: 1rem; } }
.theme-mission__emphasis { font-weight: 600; color: var(--color-foreground); }

.theme-brand__grid { display: grid; grid-template-columns: 1fr; min-height: 80vh; }
@media (min-width: 1024px) { .theme-brand__grid { grid-template-columns: 1fr 1fr; } }
.theme-brand__image-col { position: relative; min-height: 60vh; overflow: hidden; }
@media (min-width: 1024px) { .theme-brand__image-col { min-height: 100%; } }
.theme-brand__content-col { display: flex; flex-direction: column; justify-content: center; padding: 3rem 2rem; background: color-mix(in srgb, var(--color-secondary) 50%, transparent); }
@media (min-width: 768px) { .theme-brand__content-col { padding: 5rem 3.5rem; } }
@media (min-width: 1024px) { .theme-brand__content-col { padding: 5rem 5rem; } }
.theme-brand__body { margin-top: 2rem; color: var(--color-muted-foreground); font-size: 15px; line-height: 1.7; display: flex; flex-direction: column; gap: 1rem; }

.theme-promise { padding-block: 4rem; }
@media (min-width: 1024px) { .theme-promise { padding-block: 6rem; } }
.theme-promise__panel { position: relative; overflow: hidden; background: var(--color-primary); border-radius: var(--radius); display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .theme-promise__panel { grid-template-columns: 7fr 5fr; } }
.theme-promise__content { padding: 3.5rem 1.5rem; color: var(--color-primary-foreground); }
@media (min-width: 640px) { .theme-promise__content { padding: 3.5rem 2.5rem; } }
@media (min-width: 768px) { .theme-promise__content { padding: 4rem 3.5rem; } }
@media (min-width: 1024px) { .theme-promise__content { padding: 5rem 4rem; } }
.theme-promise__eyebrow { color: var(--color-highlight); }
.theme-promise__title { font-size: clamp(1.85rem, 4vw, 3.25rem); line-height: 1.05; margin-bottom: 1.25rem; }
.theme-promise__text { color: color-mix(in srgb, var(--color-primary-foreground) 75%, transparent); font-size: 1rem; line-height: 1.6; max-width: 32rem; margin-bottom: 2rem; }
.theme-promise__features { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .theme-promise__features { grid-template-columns: 1fr 1fr; } }
.theme-promise__feature { display: flex; align-items: center; gap: 0.75rem; }
.theme-promise__feature-icon { display: flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: var(--radius); background: color-mix(in srgb, var(--color-primary-foreground) 10%, transparent); flex-shrink: 0; color: var(--color-highlight); }
.theme-promise__feature span:last-child { font-size: 0.875rem; font-weight: 500; color: color-mix(in srgb, var(--color-primary-foreground) 90%, transparent); line-height: 1.3; }
.theme-promise__image-col { position: relative; min-height: 21rem; }
@media (min-width: 1024px) { .theme-promise__image-col { min-height: 100%; } }

/* ============================= FAQ / CONTACT ============================= */
.theme-resources { padding-block: 5rem; }
@media (min-width: 1024px) { .theme-resources { padding-block: 7rem; } }
.theme-faq__head { margin-bottom: 3rem; }
@media (min-width: 1024px) { .theme-faq__head { margin-bottom: 4rem; } }
.theme-faq__heading { font-size: 2.25rem; border-bottom: 1px solid var(--color-border); padding-bottom: 1.5rem; }
@media (min-width: 768px) { .theme-faq__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-faq__heading { font-size: 3.75rem; } }
.theme-faq__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .theme-faq__grid { grid-template-columns: 4fr 8fr; gap: 5rem; } }
.theme-faq__sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .theme-faq__sidebar { position: sticky; top: 8rem; align-self: start; } }
.theme-faq__sidebar p { font-size: 1rem; line-height: 1.6; }
@media (min-width: 768px) { .theme-faq__sidebar p { font-size: 1.125rem; } }
.theme-faq__sidebar-muted { color: var(--color-muted-foreground); }
.theme-faq__list { border-top: 1px solid var(--color-border); }
.theme-faq__item { border-bottom: 1px solid var(--color-border); }
.theme-faq__question { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding-block: 1.25rem; text-align: left; }
.theme-faq__question span:first-child { font-weight: 600; font-size: 15px; line-height: 1.4; }
@media (min-width: 768px) { .theme-faq__question span:first-child { font-size: 1rem; } }
.theme-faq__question:hover span:first-child { color: var(--color-accent); }
.theme-faq__icon { color: var(--color-accent); flex-shrink: 0; margin-top: 0.125rem; }
.theme-faq__icon-minus { display: none; }
.theme-faq__question[aria-expanded="true"] .theme-faq__icon-plus { display: none; }
.theme-faq__question[aria-expanded="true"] .theme-faq__icon-minus { display: block; }
.theme-faq__answer { overflow: hidden; transition: height 0.4s var(--transition-smooth); }
.theme-faq__answer p { padding-bottom: 1.5rem; padding-right: 3rem; color: var(--color-muted-foreground); font-size: 15px; line-height: 1.6; }

.theme-contact-section { position: relative; margin-top: 6rem; margin-bottom: -5rem; overflow: hidden; }
@media (min-width: 1024px) { .theme-contact-section { margin-bottom: -7rem; } }
.theme-contact-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; border-radius: 0; }
.theme-contact-section__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-background) 85%, transparent); }
.theme-contact-section__inner { position: relative; text-align: center; padding-block: 6rem; }
@media (min-width: 768px) { .theme-contact-section__inner { padding-block: 8rem; } }
.theme-contact-section__eyebrow { color: var(--color-highlight); }
.theme-contact-section__title { font-size: 2.25rem; line-height: 1.05; margin-bottom: 2rem; }
@media (min-width: 768px) { .theme-contact-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-contact-section__title { font-size: 3.75rem; } }
.theme-contact-section__inner p { max-width: 32rem; margin-inline: auto; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); font-size: 15px; line-height: 1.6; margin-bottom: 2.5rem; }
.theme-contact-section__cta { display: flex; justify-content: center; }
.theme-contact-section__cta .theme-btn-cta { min-width: 320px; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.875rem; }

/* ============================= FOOTER ============================= */
.site-footer { border-top: 1px solid var(--color-border); color: var(--color-foreground); }
.theme-footer__newsletter { border-bottom: 1px solid var(--color-border); }
.theme-footer__newsletter-inner { padding-block: 3rem; display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) { .theme-footer__newsletter-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 3.5rem; } }
.theme-footer__newsletter-eyebrow {
	display: block; margin-bottom: 0.75rem;
	font-family: var(--font-body); font-size: 11px; font-weight: 600;
	letter-spacing: 0.32em; text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
}
.theme-footer__newsletter-heading { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.05; text-transform: none; color: var(--color-foreground); }
@media (min-width: 1024px) { .theme-footer__newsletter-heading { font-size: 1.875rem; } }
.theme-footer__newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; }
@media (min-width: 640px) { .theme-footer__newsletter-form { flex-direction: row; align-items: center; } }
@media (min-width: 1024px) { .theme-footer__newsletter-form { width: auto; min-width: 26rem; } }
.theme-footer__newsletter-embed { min-width: 0; width: 100%; }
@media (min-width: 1024px) { .theme-footer__newsletter-embed { width: auto; min-width: 26rem; } }
.theme-footer__newsletter-input { flex: 1; background: transparent; border: none; border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 40%, transparent); padding: 0.75rem 0.25rem; font-size: 0.875rem; border-radius: 0; color: var(--color-foreground); font-family: var(--font-body); }
.theme-footer__newsletter-input::placeholder { color: var(--color-muted-foreground); }
.theme-footer__newsletter-input:focus { outline: none; border-color: var(--color-foreground); }
.theme-btn-newsletter {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	height: 3rem; padding: 0 1.5rem; border-radius: 9999px; border: none;
	background: var(--color-primary); color: var(--color-primary-foreground);
	font-family: var(--font-body); font-size: 11px; font-weight: 600;
	letter-spacing: 0.3em; text-transform: uppercase; cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
	width: 100%;
}
@media (min-width: 640px) { .theme-btn-newsletter { width: auto; } }
.theme-btn-newsletter:hover { background: var(--color-accent); color: var(--color-accent-foreground); }
.theme-footer__main { padding-block: 3.5rem; }
.theme-footer__cols { display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 768px) { .theme-footer__cols { flex-direction: row; gap: 5rem; } }
.theme-footer__brand { max-width: 24rem; }
.theme-logo--footer { flex-direction: column; align-items: flex-start; }
.theme-logo--footer .site-logo-img { height: 6rem; }
.theme-footer__tagline { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.24em; font-weight: 600; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.75rem; }
.theme-footer__description { margin-top: 1.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.625; font-family: var(--font-body); }
.theme-footer__link-cols { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
@media (min-width: 1024px) { .theme-footer__link-cols { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; } }
.theme-footer__link-col h4 { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1.25rem; font-family: var(--font-body); }
.theme-footer__link-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer__link-col a, .theme-footer__link-col button { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); text-align: left; transition: color 0.3s ease; font-family: var(--font-body); }
.theme-footer__link-col a:hover, .theme-footer__link-col button:hover { color: var(--color-foreground); }
.theme-footer__contact-item { display: flex; align-items: flex-start; gap: 0.5rem; }
.theme-footer__bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; }
@media (min-width: 640px) { .theme-footer__bottom { flex-direction: row; } }
.theme-footer__bottom p { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); text-align: center; font-family: var(--font-body); }
.theme-footer__bottom a { text-decoration: underline; text-underline-offset: 4px; }
.theme-footer__bottom a:hover { color: var(--color-foreground); }

/* ============================= CART DRAWER / OVERLAY ============================= */
#theme-cart-overlay { position: fixed; inset: 0; z-index: 95; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); opacity: 0; visibility: hidden; transition: opacity 0.3s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }
#theme-cart-drawer { position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 32rem; background: var(--color-background); z-index: 96; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s var(--transition-smooth); }
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 2rem 2rem 1.25rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__title { font-size: 1.5rem; font-style: italic; font-weight: 400; text-transform: none; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; }
.theme-cart-drawer__empty-icon { width: 3rem; height: 3rem; color: var(--color-muted-foreground); margin-bottom: 1.25rem; }
.theme-cart-drawer__empty p { color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 2rem; }
.theme-cart-item { display: flex; gap: 1.25rem; }
.theme-cart-item__image { width: 6rem; height: 8rem; flex-shrink: 0; overflow: hidden; background: var(--color-secondary); position: relative; display: block; }
.theme-cart-item__image img { height: 100% !important; width: 100%; object-fit: cover; }
.theme-cart-drawer__pair-image img { height: 100% !important; width: 100%; object-fit: cover; transition: transform 0.5s ease; }
.theme-cart-item__info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-item__name { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; }
.theme-cart-item__name:hover { opacity: 0.7; }
.theme-cart-item__variation { font-size: 0.75rem; color: var(--color-muted-foreground); font-style: italic; margin-top: 0.375rem; font-family: var(--font-body); }
.theme-cart-item__price { font-size: 0.875rem; margin-top: 0.375rem; font-family: var(--font-body); }
.theme-cart-item__controls { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; }
.theme-cart-item__qty { display: flex; align-items: center; border: 1px solid var(--color-border); }
.theme-cart-item__qty button { padding: 0.375rem 0.6rem; }
.theme-cart-item__qty button:hover { background: var(--color-secondary); }
.theme-cart-item__qty span { padding-inline: 0.5rem; font-size: 0.875rem; min-width: 28px; text-align: center; display: inline-block; }
.theme-cart-item__remove { font-size: 0.75rem; color: var(--color-muted-foreground); text-decoration: underline; text-underline-offset: 4px; }
.theme-cart-item__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__pair-with { padding-top: 1rem; border-top: 1px solid var(--color-border); }
.theme-cart-drawer__pair-heading { font-family: var(--font-display); font-style: italic; text-transform: none; font-size: 1.125rem; margin-bottom: 1rem; font-weight: 400; }
.theme-cart-drawer__pair-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
@media (min-width: 640px) { .theme-cart-drawer__pair-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.theme-cart-drawer__pair-item { display: block; text-align: left; min-width: 0; background: none; border: none; padding: 0; color: inherit; cursor: pointer; }
.theme-cart-drawer__pair-item.is-hidden-mobile { display: none; }
@media (min-width: 640px) { .theme-cart-drawer__pair-item.is-hidden-mobile { display: block; } }
.theme-cart-drawer__pair-image { display: block; aspect-ratio: 3/4; background: var(--color-secondary); overflow: hidden; margin-bottom: 0.5rem; position: relative; }
.theme-cart-drawer__pair-image img { height: 100% !important; width: 100%; object-fit: cover; transition: transform 0.7s ease; }
.theme-cart-drawer__pair-item:hover .theme-cart-drawer__pair-image img { transform: scale(1.05); }
.theme-cart-drawer__pair-name { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-family: var(--font-body); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; line-height: 1.3; }
.theme-cart-drawer__pair-price { display: block; font-size: 0.75rem; font-family: var(--font-body); color: var(--color-muted-foreground); margin-top: 0.125rem; }
.theme-cart-drawer__footer { padding: 1.5rem 2rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal-row { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--font-display); font-size: 1.25rem; text-transform: none; }
.theme-cart-drawer__note { font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout { width: 100%; border-radius: var(--btn-radius); }

/* ============================= WOOCOMMERCE OVERRIDES ============================= */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-accent) !important;
	color: var(--color-accent-foreground) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-accent) !important;
	color: var(--color-accent-foreground) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-accent) !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

.theme-cart-drawer__pair-item.add_to_cart_button { display: block; }

/* Product page layout */
.single-product .site-main { padding-top: 7rem; padding-bottom: 4rem; background: var(--color-background); }
@media (min-width: 1024px) { .single-product .site-main { padding-top: 8rem; } }
.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 1.15fr 1fr; gap: 2.5rem 4rem; } }
.theme-product-gallery { position: relative; background: var(--color-background); }
@media (min-width: 1024px) { .theme-product-gallery { position: sticky; top: 8rem; align-self: start; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery__row { display: flex; }
.theme-product-thumbnails { display: none; flex-direction: column; gap: 0.75rem; padding: 1rem 1.5rem; flex-wrap: wrap; max-width: 100%; background: color-mix(in srgb, var(--color-background) 40%, transparent); }
@media (min-width: 768px) { .theme-product-thumbnails { display: flex; } }
.theme-product-thumbnails--mobile { display: flex; flex-direction: row; gap: 0.5rem; padding: 1rem; overflow-x: auto; }
@media (min-width: 768px) { .theme-product-thumbnails--mobile { display: none; } }
.theme-product-thumb { width: 3.5rem; height: 3.5rem; overflow: hidden; border: 1px solid transparent; opacity: 0.6; transition: all 0.3s ease; position: relative; flex-shrink: 0; }
@media (min-width: 1024px) { .theme-product-thumb { width: 4rem; height: 4rem; } }
.theme-product-thumb.is-active, .theme-product-thumb:hover { opacity: 1; border-color: var(--color-foreground); }
.theme-product-main-image { flex: 1; min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 1rem; }
@media (min-width: 768px) { .theme-product-main-image { min-height: 70vh; padding: 2rem; } }
@media (min-width: 1024px) { .theme-product-main-image { min-height: 78vh; } }
.theme-product-main-img-el { width: 100%; height: 100% !important; max-height: 88vh; object-fit: contain; }
.theme-product-info { padding: 2.5rem 0; }
@media (min-width: 1024px) { .theme-product-info { padding: 4rem 0; } }
.theme-product-breadcrumb { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 1.5rem; font-family: var(--font-body); }
.theme-product-breadcrumb a:hover { color: var(--color-foreground); }
.theme-product-breadcrumb span { margin-inline: 0.5rem; }
.theme-product-title { line-height: 0.92; margin-bottom: 1.5rem; font-family: var(--font-display); letter-spacing: -0.01em; text-transform: none; }
.theme-product-title__the { display: block; font-weight: 500; font-size: 1.875rem; }
@media (min-width: 768px) { .theme-product-title__the { font-size: 2.25rem; } }
.theme-product-title__main { display: block; font-weight: 800; font-size: 3rem; text-transform: uppercase; }
@media (min-width: 768px) { .theme-product-title__main { font-size: 3.75rem; } }
.theme-product-sku { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); font-family: var(--font-body); }
.theme-hr { height: 1px; background: var(--color-border); margin-block: 1.75rem; }
.theme-product-price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.theme-product-installments { font-size: 0.875rem; color: var(--color-muted-foreground); font-family: var(--font-body); }
.theme-product-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; text-transform: none; color: var(--color-foreground); }
.theme-product-shipping-note { margin-top: 0.5rem; font-size: 13px; color: var(--color-muted-foreground); font-family: var(--font-body); }
.theme-stock-badge--out { display: inline-block; margin-top: 0.75rem; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; background: var(--color-foreground); color: var(--color-background); padding: 0.3rem 0.7rem; }

.theme-attribute-group { margin-top: 1.75rem; }
.theme-attribute-group__label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 0.75rem; font-family: var(--font-body); font-weight: 600; }
.theme-attribute-group .variations .label { display: none !important; }
.theme-attribute-group .variations td.value { padding: 0; border: 0; }
.theme-attr-select-hidden { display: none !important; }
.theme-attribute-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-attribute-pill { min-width: 3.5rem; padding: 0.625rem 1rem; font-size: 0.75rem; letter-spacing: 0.05em; border: 1px solid var(--color-border); transition: all 0.2s ease; }
.theme-attribute-pill:hover { border-color: var(--color-foreground); }
.theme-attribute-pill.is-selected { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }

.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product .variations tbody td.value { padding-top: 0; }
.single-product .variations { display: none; }

.theme-quantity-wrapper { display: flex; align-items: center; border: 1px solid var(--color-border); height: var(--btn-height); flex-shrink: 0; }
.theme-qty-minus, .theme-qty-plus { padding-inline: 1rem; height: 100%; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input { width: 3rem; text-align: center; background: transparent; border: none; -moz-appearance: textfield; font-size: 0.875rem; height: 100%; color: #ffffff; font-family: var(--font-body); }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.single-product .theme-add-to-cart-area,
.single-product .theme-add-to-cart-mount .theme-add-to-cart-area {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2rem;
}
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

.theme-product-features { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; }
.theme-product-feature__icon { color: var(--color-accent); margin-bottom: 0.75rem; width: 2.5rem; height: 2.5rem; }
.theme-product-feature__title { font-size: 12px; font-weight: 600; line-height: 1.3; }
.theme-product-feature__sub { font-size: 11px; color: var(--color-muted-foreground); margin-top: 0.25rem; line-height: 1.3; }

.theme-product-description-block { margin-top: 3rem; }
.theme-product-description-block__title { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 1.25rem; font-family: var(--font-body); font-weight: 600; color: var(--color-foreground); }
.theme-product-description { font-family: var(--font-display); font-size: 1.1875rem; line-height: 1.55; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); text-transform: none; white-space: pre-line; }
.theme-product-description p { margin-bottom: 0; }
.theme-product-details-list { margin-top: 1.5rem; padding-left: 1.25rem; list-style: disc; }
.theme-product-details-list li { font-family: var(--font-body); font-size: 0.875rem; line-height: 1.625; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); margin-bottom: 0.625rem; }
.theme-product-details-list li::marker { color: var(--color-primary); }
.theme-product-short-description,
.woocommerce-product-details__short-description,
.woocommerce-variation-description,
.posted_in {
	overflow-wrap: break-word;
	word-break: break-word;
	margin-top: 1.5rem;
	font-family: var(--font-body);
	font-size: 14px;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	text-transform: none;
}
.variations label { font-family: var(--font-body); font-weight: 600; font-style: normal; }

.theme-related-products { padding-block: 6rem; border-top: 1px solid var(--color-border); margin-top: 3rem; }
.theme-related-heading { font-size: 1.875rem; line-height: 1.15; text-transform: none; font-weight: 600; margin-bottom: 3rem; }
@media (min-width: 768px) { .theme-related-heading { font-size: 2.25rem; } }
.theme-related-heading__italic { font-style: italic; font-weight: 400; }

/* Archive */
.theme-archive__head { padding-top: 5rem; padding-bottom: 2rem; text-align: center; }
.theme-archive__body { padding-bottom: 5rem; }
.woocommerce-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.woocommerce-pagination .page-numbers { padding: 0.5rem 1rem; border: 1px solid var(--color-border); font-size: 0.875rem; }
.woocommerce-pagination .page-numbers.current { background: var(--color-accent); color: var(--color-accent-foreground); border-color: var(--color-accent); }

/* Notices — scoped visibility (Section 14.1) */
.single-product .woocommerce-message, .single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	max-width: 80rem; margin: 1.5rem auto; padding: 1rem 1.5rem; border-radius: var(--radius);
	background: var(--color-secondary); color: var(--color-foreground); font-size: 0.875rem; list-style: none;
	border-left: 3px solid var(--color-accent);
}
.woocommerce-error { border-left-color: #b23b3b; }

/* ============================= CHECKOUT BLOCK ============================= */
body.woocommerce-checkout .site-main { padding-top: var(--header-height, 80px); padding-bottom: 4rem; }
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content { max-width: 100%; }
body.woocommerce-checkout .theme-page-shell,
body.woocommerce-cart .theme-page-shell,
body.woocommerce-account .theme-page-shell { padding-block: 2.5rem; }
body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title { font-size: 2rem; margin-bottom: 2rem; }

body.woocommerce-checkout .wc-block-checkout { display: block; }
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; }
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-textarea textarea,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout select.wc-block-components-select__select,
body.woocommerce-checkout .wc-block-components-select .wc-block-components-select__select {
	width: 100% !important;
	max-width: none !important;
	min-height: unset !important;
	font-family: var(--font-body) !important;
	font-size: 0.875rem !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	color: var(--color-foreground) !important;
	background: var(--color-background) !important;
	background-color: var(--color-background) !important;
	border: 1px solid var(--color-border) !important;
	border-radius: 0.375rem !important;
	box-shadow: none !important;
	appearance: auto !important;
	-webkit-appearance: auto !important;
}
body.woocommerce-checkout .wc-block-components-select {
	border: none !important;
	background: transparent !important;
	padding: 0 !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout select.wc-block-components-select__select:focus {
	outline: none !important;
	border-color: var(--color-primary) !important;
	box-shadow: 0 0 0 1px var(--color-primary) !important;
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-components-textarea textarea::placeholder {
	color: var(--color-muted-foreground) !important;
	opacity: 1 !important;
}
body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-select label,
body.woocommerce-checkout .wc-block-components-textarea label {
	font-family: var(--font-body) !important;
	font-size: 0.875rem !important;
	color: var(--color-foreground) !important;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary);
	border-radius: var(--card-radius);
	padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: var(--color-accent) !important;
	color: var(--color-accent-foreground) !important;
	border-radius: var(--btn-radius) !important;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-weight: 600;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.85; }

/* ============================= THANK YOU PAGE ============================= */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-customer-details,
body.theme-thankyou-page .woocommerce-order-details { max-width: 100%; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; margin: 1.5rem 0; }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.875rem; }
body.theme-thankyou-page h2, body.theme-thankyou-page .woocommerce-order-details__title { font-size: 1.5rem; padding: 0 0 1rem 0; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-bottom: 1.5rem; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.75rem; border-bottom: 1px solid var(--color-border); text-align: left; font-size: 0.875rem; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; overflow-wrap: break-word; }

/* ============================= 404 ============================= */
.theme-404-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--color-muted); }
.theme-404 { text-align: center; padding-block: 6rem; }
.theme-404__title { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; text-transform: none; }
.theme-404__text { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1rem; text-transform: none; }
.theme-404__link { color: var(--color-primary); text-decoration: underline; text-underline-offset: 4px; }
.theme-404__link:hover { color: color-mix(in srgb, var(--color-primary) 90%, transparent); }

/* ============================= UTILS ============================= */
[hidden] { display: none !important; }
