/* =====================================================================
   AD Tees — theme stylesheet
   ===================================================================== */

:root {
	--background: #fcfcf8;
	--foreground: #24192e;
	--primary: #612c96;
	--primary-foreground: #fcfcf8;
	--secondary: #e3f2e8;
	--accent: #2c9658;
	--muted-foreground: #615969;
	--border: #dbd7e0;
	--butter: #f9f6e7;
	--aqua: #dbf0e4;
	--marigold: #facd38;
	--teal: #30a661;

	--font-display: 'Fraunces', serif;
	--font-body: 'Nunito', sans-serif;

	--radius: 1.25rem;
	--shadow-soft: 0 6px 24px -6px rgb(97 44 150 / 0.22);
	--shadow-elevated: 0 14px 50px -10px rgb(97 44 150 / 0.28);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--header-height: 104px;
	--logo-height: 90px;

	--btn-radius: 999px;
	--btn-height: 44px;
	--btn-padding: 0.9rem 2rem;
	--btn-font-size: 12px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.22em;
	--btn-text-transform: uppercase;
	--color-button-text: var(--primary-foreground);
}

/* ---------------------------------------------------------------------
   Reset / base
   ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
	margin: 0;
	background: var(--background);
	color: var(--foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.015em;
	margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
svg { display: block; }

img:not(.cover-img):not(.hero-carousel__slide):not(.image-divider__img):not(.product-card-img):not(.theme-product-card__img):not(.theme-product-gallery__img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-carousel__slide, .image-divider__img, .product-card-img, .theme-product-card__img, .theme-product-gallery__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.container-wide {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container-wide { padding: 0 2rem; } }

@media (min-width: 768px) { :root { --header-height: 152px; } }

.scroll-mt { scroll-margin-top: calc(var(--header-height) + 1rem); }
body.admin-bar .scroll-mt { scroll-margin-top: calc(var(--header-height) + var(--wp-admin--admin-bar--height, 32px) + 1rem); }
@media screen and (max-width: 782px) {
	body.admin-bar .scroll-mt { scroll-margin-top: calc(var(--header-height) + 46px + 1rem); }
}

.eyebrow {
	display: block;
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--primary);
	font-weight: 600;
}

.section-heading {
	font-family: var(--font-display);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.05;
	color: var(--foreground);
}
.shop-section__heading, .services-section__heading, .faq-section__heading { font-size: clamp(2rem, 4.4vw, 3.6rem); }
.about-section__heading { font-size: clamp(1.6rem, 3.4vw, 2.6rem); text-transform: uppercase; line-height: 1.1; }
.related-products-section__title { font-size: clamp(1.75rem, 3vw, 2.25rem); }

/* ---------------------------------------------------------------------
   Buttons / pills
   ------------------------------------------------------------------- */
.pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 999px;
	background: var(--primary);
	color: var(--primary-foreground);
	padding: 0.9rem 2rem;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	box-shadow: var(--shadow-soft);
	transition: all 0.3s var(--transition-smooth);
}
.pill svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.pill:hover { background: color-mix(in srgb, var(--primary) 90%, black); transform: translateY(-2px); box-shadow: var(--shadow-elevated); }
.pill:active { transform: translateY(0) scale(0.97); }

.pill-ghost {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--foreground) 25%, transparent);
	background: color-mix(in srgb, var(--background) 60%, transparent);
	color: var(--foreground);
	padding: 0.9rem 2rem;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	transition: all 0.3s var(--transition-smooth);
}
.pill-ghost:hover { border-color: var(--foreground); background: var(--background); transform: translateY(-2px); }

.btn-inverse {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 999px;
	border: 1px solid var(--background);
	background: var(--background);
	color: var(--foreground);
	padding: 0.75rem 2.2rem;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	transition: all 0.3s var(--transition-smooth);
}
.btn-inverse:hover { background: transparent; color: var(--background); }

.btn-outline-pill {
	padding: 0.75rem 2rem;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--foreground) 20%, transparent);
	background: transparent;
	color: var(--foreground);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 600;
	transition: all 0.3s ease;
}
.btn-outline-pill:hover { background: var(--foreground); color: var(--background); }

/* ---------------------------------------------------------------------
   Animations (Section 2.1)
   ------------------------------------------------------------------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marqueeX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes bump { 0% { transform: translateY(0); } 30% { transform: translateY(-4px) scale(1.05); } 100% { transform: translateY(0); } }
@keyframes pop { 0% { transform: scale(1); } 40% { transform: scale(1.25); } 100% { transform: scale(1); } }

.reveal-item { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--transition-smooth), transform 0.6s 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; }
	.marquee-bar__track, .hero-carousel__slide { animation: none !important; transition: none !important; }
}

/* ---------------------------------------------------------------------
   Header
   ------------------------------------------------------------------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 50;
	background: var(--background);
	border-bottom: 1px solid transparent;
	transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.is-solid {
	background: color-mix(in srgb, var(--butter) 95%, transparent);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-bottom-color: color-mix(in srgb, var(--foreground) 10%, transparent);
}

/* WordPress admin bar — keep fixed header below the toolbar */
@media screen {
	html { margin-top: 0 !important; }
	body.admin-bar .site-header { top: var(--wp-admin--admin-bar--height, 32px); }
	body.admin-bar .nav-menu-panel {
		top: var(--wp-admin--admin-bar--height, 32px);
		height: calc(100dvh - var(--wp-admin--admin-bar--height, 32px));
	}
	body.admin-bar .nav-menu-panel__aside {
		min-height: calc(100dvh - var(--wp-admin--admin-bar--height, 32px));
	}
}
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
	body.admin-bar .nav-menu-panel {
		top: 46px;
		height: calc(100dvh - 46px);
	}
	body.admin-bar .nav-menu-panel__aside {
		min-height: calc(100dvh - 46px);
	}
}

body.theme-no-hero .site-main {
	padding-top: var(--header-height);
}
body.admin-bar.theme-no-hero .site-main {
	padding-top: calc(var(--header-height) + var(--wp-admin--admin-bar--height, 32px));
}
@media screen and (max-width: 782px) {
	body.admin-bar.theme-no-hero .site-main {
		padding-top: calc(var(--header-height) + 46px);
	}
}
.site-nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 104px;
}
@media (min-width: 768px) { .site-nav { height: 152px; } }
.site-nav__side { display: flex; align-items: center; flex: 1; gap: 0.5rem; }
.site-nav__side--end { justify-content: flex-end; }

.menu-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem;
	margin-left: -0.25rem;
	color: var(--foreground);
	transition: color 0.2s ease;
}
.menu-toggle:hover { color: var(--primary); }
.menu-toggle .icon-close { display: none; }
body.nav-menu-open .menu-toggle .icon-hamburger { display: none; }
body.nav-menu-open .menu-toggle .icon-close { display: block; }
.menu-toggle__icon svg { width: 22px; height: 22px; }
.menu-toggle__label { display: none; font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
@media (min-width: 768px) { .menu-toggle__label { display: inline; } }

.site-brand {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	transition: transform 0.3s ease;
}
.site-brand:hover { transform: translateX(-50%) scale(1.05); }
.site-brand:active { transform: translateX(-50%) scale(0.95); }
.site-brand__logo, .site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; object-fit: contain; }
.site-logo-text { line-height: var(--logo-height); font-family: var(--font-display); font-size: 1.5rem; display: block; }
.site-brand__tagline { display: none; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--primary) 80%, transparent); }
@media (min-width: 768px) { .site-brand__tagline { display: inline; } }

.btn-shop-now {
	display: none;
	align-items: center;
	justify-content: center;
	background: var(--primary);
	color: var(--primary-foreground);
	border-radius: 999px;
	padding: 0.6rem 1.5rem;
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
@media (min-width: 640px) { .btn-shop-now { display: inline-flex; } }
.btn-shop-now:hover { background: color-mix(in srgb, var(--primary) 90%, black); transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.cart-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--foreground) 40%, transparent);
	color: var(--foreground);
	transition: all 0.3s ease;
}
.cart-toggle:hover { border-color: var(--primary); background: var(--primary); color: var(--primary-foreground); transform: scale(1.1); }
.cart-toggle .icon-bag { width: 20px; height: 20px; }
.theme-cart-count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--primary);
	color: var(--primary-foreground);
	font-size: 10px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.theme-cart-count:empty { display: none; }

/* Mobile nav panel */
.nav-menu-panel {
	position: fixed;
	inset: 0;
	z-index: 60;
	height: 100dvh;
	pointer-events: none;
}
body.nav-menu-open .nav-menu-panel { pointer-events: auto; }
.nav-menu-panel__overlay {
	position: absolute;
	inset: 0;
	background: color-mix(in srgb, var(--foreground) 40%, transparent);
	opacity: 0;
	transition: opacity 0.2s ease;
}
body.nav-menu-open .nav-menu-panel__overlay { opacity: 1; }
.nav-menu-panel__aside {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	min-height: 100dvh;
	width: 88vw;
	max-width: 420px;
	background: var(--background);
	border-radius: 0 24px 24px 0;
	box-shadow: var(--shadow-elevated);
	display: flex;
	flex-direction: column;
	min-height: 0;
	transform: translateX(-100%);
	transition: transform 0.3s ease-out;
}
body.nav-menu-open .nav-menu-panel__aside { transform: translateX(0); }
.nav-menu-panel__head { display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; padding: 1.75rem 1.75rem 1.25rem; }
.nav-menu-panel__logo { height: 48px; width: auto; object-fit: contain; }
.nav-menu-panel__close { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 999px; background: var(--primary); color: var(--primary-foreground); }
.nav-menu-panel__close svg { width: 20px; height: 20px; }
.nav-menu-panel__divider { flex-shrink: 0; height: 1px; margin: 0 1.75rem; background: color-mix(in srgb, var(--foreground) 10%, transparent); }
.nav-menu-panel__nav {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding: 2rem 1.75rem;
	-webkit-overflow-scrolling: touch;
}
.theme-nav-list { display: flex; flex-direction: column; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.theme-nav-list > li { list-style: none; margin: 0; padding: 0; }
.theme-nav-list li a, .theme-nav-link {
	display: block;
	font-family: var(--font-display);
	color: var(--primary);
	font-size: 2.25rem;
	line-height: 1.05;
	letter-spacing: -0.01em;
	transition: color 0.2s ease, transform 0.2s ease;
}
@media (min-width: 768px) { .theme-nav-list li a, .theme-nav-link { font-size: 2.75rem; } }
.theme-nav-list li a:hover, .theme-nav-link:hover { color: var(--accent); transform: translateX(4px); }
.nav-menu-panel__foot { flex-shrink: 0; padding: 1rem 1.75rem 2rem; }
.nav-menu-panel__social { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 12px; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.nav-menu-panel__social svg { width: 16px; height: 16px; }
.nav-menu-panel__social:hover { color: var(--primary); }

/* Footer nav (reuses list styling, smaller) */
.footer-nav-list { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav-link { color: color-mix(in srgb, var(--foreground) 70%, transparent); transition: color 0.2s ease; }
.footer-nav-link:hover { color: var(--primary); }

/* ---------------------------------------------------------------------
   Hero carousel
   ------------------------------------------------------------------- */
.hero-carousel {
	position: relative;
	width: 100%;
	margin-top: var(--header-height);
	height: 100vh;
	min-height: 100vh;
	overflow: hidden;
}
body.admin-bar:not(.theme-no-hero) .hero-carousel {
	margin-top: calc(var(--header-height) + var(--wp-admin--admin-bar--height, 32px));
}
@media screen and (max-width: 782px) {
	body.admin-bar:not(.theme-no-hero) .hero-carousel {
		margin-top: calc(var(--header-height) + 46px);
	}
}
body.theme-no-hero { padding-top: 0; }
.hero-carousel__slide { opacity: 0; transition: opacity 1.2s ease; object-position: center center; }
.hero-carousel__slide.is-active { opacity: 1; }
.hero-carousel__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, color-mix(in srgb, var(--foreground) 60%, transparent), color-mix(in srgb, var(--foreground) 50%, transparent), color-mix(in srgb, var(--foreground) 80%, transparent));
}
@media (min-width: 768px) {
	.hero-carousel__overlay { background: linear-gradient(to bottom, color-mix(in srgb, var(--foreground) 40%, transparent), color-mix(in srgb, var(--foreground) 30%, transparent), color-mix(in srgb, var(--foreground) 70%, transparent)); }
}
.hero-carousel__content {
	position: relative;
	z-index: 10;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
@media (min-width: 768px) {
	.hero-carousel__content { align-items: center; justify-content: flex-start; }
}
.hero-carousel__inner {
	padding-block: 6rem 7rem;
	padding-inline: 1.5rem;
}
@media (min-width: 768px) {
	.hero-carousel__inner {
		padding-block: 0;
		padding-inline: 2rem;
	}
}
.hero-carousel__copy { max-width: 42rem; text-align: center; color: var(--background); }
@media (min-width: 768px) { .hero-carousel__copy { text-align: left; } }
.hero-carousel__eyebrow { color: color-mix(in srgb, var(--background) 90%, transparent); margin-bottom: 1.25rem; }
.hero-carousel__title { font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -0.02em; color: var(--background); }
.hero-carousel__subtitle { margin-top: 1.5rem; font-size: 1.0625rem; line-height: 1.6; color: color-mix(in srgb, var(--background) 85%, transparent); }
@media (min-width: 768px) { .hero-carousel__subtitle { font-size: 1.125rem; } }
.hero-carousel__ctas { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
@media (min-width: 768px) { .hero-carousel__ctas { justify-content: flex-start; } }
.icon-arrow { width: 16px; height: 16px; }
.hero-carousel__dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; gap: 0.4rem; }
.hero-carousel__dot { height: 8px; width: 8px; border-radius: 999px; background: color-mix(in srgb, var(--background) 60%, transparent); transition: all 0.3s ease; }
.hero-carousel__dot.is-active { width: 24px; background: var(--background); }

/* ---------------------------------------------------------------------
   Marquee
   ------------------------------------------------------------------- */
.marquee-bar { width: 100%; overflow: hidden; padding: 0.75rem 0; }
.marquee-bar--teal { background: var(--teal); }
.marquee-bar--marigold { background: var(--marigold); }
.marquee-bar__track { display: flex; white-space: nowrap; animation: marqueeX 38s linear infinite; width: max-content; }
.marquee-bar__text { font-family: var(--font-display); font-size: 0.875rem; padding: 0 1rem; letter-spacing: 0.04em; text-transform: uppercase; }
@media (min-width: 768px) { .marquee-bar__text { font-size: 1rem; } }
.marquee-bar__text--background { color: var(--background); }
.marquee-bar__text--foreground { color: var(--foreground); }

/* ---------------------------------------------------------------------
   Shop section
   ------------------------------------------------------------------- */
.shop-section { background: color-mix(in srgb, var(--aqua) 40%, transparent); }
.shop-section__head { padding: 4rem 0 3rem; text-align: center; }
@media (min-width: 768px) { .shop-section__head { padding-top: 6rem; } }
.shop-section__head-inner { max-width: 42rem; margin: 0 auto; }
.shop-section__subtitle { margin-top: 1.25rem; font-size: 1.125rem; color: color-mix(in srgb, var(--foreground) 70%, transparent); max-width: 28rem; margin-left: auto; margin-right: auto; }
.shop-category-pills { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.shop-category-pill { padding: 0.5rem 1rem; border-radius: 999px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; background: var(--background); color: color-mix(in srgb, var(--foreground) 70%, transparent); border: 1px solid color-mix(in srgb, var(--foreground) 15%, transparent); transition: all 0.2s ease; }
.shop-category-pill.is-active { background: var(--foreground); color: var(--background); border-color: var(--foreground); }
.shop-category-pill:hover:not(.is-active) { border-color: var(--foreground); }

.shop-section__body { padding-bottom: 5rem; }
@media (min-width: 768px) { .shop-section__body { padding-bottom: 7rem; } }

.shop-filters { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; align-items: center; background: color-mix(in srgb, var(--background) 70%, transparent); border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent); border-radius: 1rem; padding: 1rem; }
@media (min-width: 768px) { .shop-filters { grid-template-columns: 2fr 1fr; } }
.shop-filters__search { position: relative; }
.shop-filters__search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: color-mix(in srgb, var(--foreground) 40%, transparent); }
.shop-filters__search-input { width: 100%; height: 44px; border-radius: 999px; padding: 0 1.25rem 0 2.75rem; background: var(--background); border: 1px solid color-mix(in srgb, var(--foreground) 15%, transparent); }
.shop-filters__search-input:focus { outline: none; border-color: var(--primary); }
.shop-filters__price { padding: 0 0.75rem; }
.shop-filters__price-label { font-size: 11px; text-align: center; margin-bottom: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--foreground) 60%, transparent); }

/* Dual range price slider (Section 31.4) */
.price-range-wrapper { position: relative; height: 1.5rem; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); border-radius: 999px; pointer-events: none; }
.range-track-bg { left: 0; right: 0; background: var(--border); }
.range-track-fill { background: var(--primary); }
.range-input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; margin: 0; -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none; }
.range-input::-webkit-slider-thumb { -webkit-appearance: none; pointer-events: auto; width: 18px; height: 18px; border-radius: 999px; background: var(--primary); border: 3px solid var(--background); box-shadow: var(--shadow-soft); cursor: pointer; }
.range-input::-moz-range-thumb { pointer-events: auto; width: 18px; height: 18px; border-radius: 999px; background: var(--primary); border: 3px solid var(--background); cursor: pointer; }
.range-input::-moz-range-track { background: transparent; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.shop-custom-message { text-align: center; max-width: 36rem; margin: 0 auto; border-radius: 1.5rem; border: 1px dashed color-mix(in srgb, var(--foreground) 20%, transparent); background: color-mix(in srgb, var(--background) 70%, transparent); padding: 2.5rem; }
.shop-custom-message__title { font-size: 1.5rem; margin-bottom: 0.75rem; }
.shop-custom-message__body { color: color-mix(in srgb, var(--foreground) 75%, transparent); margin-bottom: 1.5rem; }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; 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: 2.5rem; } }

.theme-product-card-wrap { min-width: 0; }
.theme-product-card { display: flex; flex-direction: column; height: 100%; }
.theme-product-card__image-link { display: block; }
.theme-product-card__image-wrapper {
	display: block;
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--secondary);
	box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
	margin-bottom: 1rem;
	transition: box-shadow 0.5s ease;
}
.theme-product-card:hover .theme-product-card__image-wrapper { box-shadow: var(--shadow-elevated); }
.theme-product-card__img--primary { transition: opacity 0.7s ease, transform 0.7s ease; }
.theme-product-card__img--hover { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.theme-product-card:hover .theme-product-card__img--primary { transform: scale(1.05); }
.theme-product-card:hover .theme-product-card__img--hover { opacity: 1; transform: scale(1.05); }
.theme-product-card__img.is-sold-out { opacity: 0.6 !important; }
.theme-product-card__badge { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 3; padding: 0.25rem 0.75rem; border-radius: 0.375rem; font-size: 11px; font-weight: 500; letter-spacing: 0.02em; background: var(--foreground); color: var(--background); }
.theme-product-card__info { flex: 1; text-align: center; display: flex; flex-direction: column; gap: 0.35rem; }
.theme-product-card__title { font-size: 0.875rem; font-weight: 600; line-height: 1.35; color: var(--foreground); transition: color 0.2s ease; }
.theme-product-card:hover .theme-product-card__title { color: var(--primary); }
.theme-product-card__price { font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 70%, transparent); }
.theme-product-card__choose-options { margin-top: 0.75rem; display: block; width: 100%; text-align: center; padding: 0.75rem 0; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--foreground) 20%, transparent); color: var(--foreground); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; transition: all 0.3s ease; }
.theme-product-card__choose-options:hover { background: var(--foreground); color: var(--background); }

.shop-load-more-row { display: flex; justify-content: center; gap: 0.75rem; margin-top: 3rem; }
.shop-empty-message { text-align: center; color: color-mix(in srgb, var(--foreground) 60%, transparent); margin-top: 3rem; }

/* ---------------------------------------------------------------------
   Image dividers
   ------------------------------------------------------------------- */
.image-divider { position: relative; width: 100%; height: 60vh; min-height: 420px; overflow: hidden; }
@media (min-width: 768px) { .image-divider { height: 70vh; } }
.image-divider__overlay { position: absolute; inset: 0; background: linear-gradient(to right, color-mix(in srgb, var(--foreground) 70%, transparent), color-mix(in srgb, var(--foreground) 40%, transparent), color-mix(in srgb, var(--foreground) 20%, transparent)); }
.image-divider__inner { position: relative; z-index: 10; height: 100%; display: flex; align-items: center; justify-content: flex-start; }
.image-divider__copy { max-width: 36rem; color: var(--background); text-align: left; }
.image-divider__title { font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--background); }
.image-divider__cta { margin-top: 1.75rem; display: flex; justify-content: flex-start; }

/* ---------------------------------------------------------------------
   Services
   ------------------------------------------------------------------- */
.services-section { padding: 5rem 0; }
@media (min-width: 768px) { .services-section { padding: 7rem 0; } }
.services-section__head { max-width: 42rem; margin-bottom: 3rem; }
.services-section__subtitle { margin-top: 1.25rem; font-size: 1.125rem; color: color-mix(in srgb, var(--foreground) 70%, transparent); }

.services-accordion { display: none; width: 100%; gap: 0.75rem; height: 28rem; }
@media (min-width: 768px) { .services-accordion { display: flex; } }
@media (min-width: 1024px) { .services-accordion { height: 32rem; } }
.services-accordion__item {
	position: relative;
	overflow: hidden;
	border-radius: 1.5rem;
	border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
	text-align: left;
	flex: 1;
	background-size: cover;
	background-position: center;
	transition: flex 0.7s ease-out;
}
.services-accordion__item.is-active { flex: 5; }
.services-accordion__gradient { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--foreground) 85%, transparent), color-mix(in srgb, var(--foreground) 40%, transparent), color-mix(in srgb, var(--foreground) 10%, transparent)); }
.services-accordion__collapsed-label {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(180deg);
	writing-mode: vertical-rl; font-family: var(--font-display); font-size: 1.25rem; color: var(--background);
	transition: opacity 0.3s ease; opacity: 1; white-space: nowrap;
}
.services-accordion__item.is-active .services-accordion__collapsed-label { opacity: 0; }
.services-accordion__expanded { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; opacity: 0; transition: opacity 0.5s ease 0.15s; }
.services-accordion__item.is-active .services-accordion__expanded { opacity: 1; }
.services-accordion__icon { width: 48px; height: 48px; border-radius: 999px; background: var(--primary); color: var(--primary-foreground); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.services-accordion__icon svg { width: 20px; height: 20px; }
.services-accordion__index { font-size: 12px; color: color-mix(in srgb, var(--background) 80%, transparent); margin-bottom: 0.5rem; display: block; }
.services-accordion__title { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--background); max-width: 26rem; display: block; }
@media (min-width: 1024px) { .services-accordion__title { font-size: 1.75rem; } }
.services-accordion__body { color: color-mix(in srgb, var(--background) 85%, transparent); line-height: 1.6; max-width: 26rem; display: block; }

.services-mobile-list { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .services-mobile-list { display: none; } }
.services-mobile-list__item { position: relative; overflow: hidden; border-radius: 1.5rem; border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent); min-height: 20rem; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; background-size: cover; background-position: center; }
.services-mobile-list__gradient { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--foreground) 85%, transparent), color-mix(in srgb, var(--foreground) 40%, transparent), color-mix(in srgb, var(--foreground) 10%, transparent)); }
.services-mobile-list__content { position: relative; }
.services-mobile-list__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--background); display: block; }
.services-mobile-list__body { color: color-mix(in srgb, var(--background) 85%, transparent); line-height: 1.6; display: block; }

/* ---------------------------------------------------------------------
   About
   ------------------------------------------------------------------- */
.about-section__top { background: var(--butter); padding: 5rem 0; }
@media (min-width: 768px) { .about-section__top { padding: 7rem 0; } }
.about-section__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-section__image-wrap { aspect-ratio: 1 / 1; border-radius: 1.5rem; background: var(--accent); overflow: hidden; position: relative; }
.about-section__body { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; color: color-mix(in srgb, var(--foreground) 80%, transparent); font-size: 1rem; line-height: 1.7; }
@media (min-width: 768px) { .about-section__body { font-size: 1.125rem; } }
.about-section__ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.about-section__features { background: var(--aqua); padding: 3.5rem 0 4rem; }
@media (min-width: 768px) { .about-section__features { padding: 5rem 0 6rem; } }
.about-section__features-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
@media (min-width: 768px) { .about-section__features-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.about-feature { display: flex; flex-direction: column; align-items: center; }
.about-feature__icon { width: 48px; height: 48px; border-radius: 999px; background: var(--background); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--primary); }
.about-feature__icon svg { width: 24px; height: 24px; }
.about-feature__title { font-size: 1.125rem; margin-bottom: 0.5rem; }
.about-feature__body { color: color-mix(in srgb, var(--foreground) 70%, transparent); font-size: 0.875rem; line-height: 1.6; max-width: 20rem; margin: 0 auto; }

/* ---------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------- */
.faq-section { background: color-mix(in srgb, var(--aqua) 30%, transparent); padding: 5rem 0; }
@media (min-width: 768px) { .faq-section { padding: 7rem 0; } }
.faq-section__head { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.faq-section__subtitle { margin-top: 1.25rem; font-size: 1.125rem; color: color-mix(in srgb, var(--foreground) 70%, transparent); }
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent); background: var(--background); overflow: hidden; }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; padding: 1.25rem 1.5rem; }
.faq-item__question span { font-family: var(--font-display); font-size: 1.125rem; }
@media (min-width: 768px) { .faq-item__question span { font-size: 1.25rem; } }
.faq-item__chevron { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.is-open .faq-item__chevron { transform: rotate(180deg); }
.faq-item__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-out; }
.faq-item.is-open .faq-item__panel { grid-template-rows: 1fr; }
.faq-item__panel-inner { overflow: hidden; }
.faq-item__answer { padding: 0 1.5rem 1.5rem; margin-top: -0.25rem; color: color-mix(in srgb, var(--foreground) 75%, transparent); line-height: 1.6; }

/* ---------------------------------------------------------------------
   Contact
   ------------------------------------------------------------------- */
.contact-section { background: var(--primary); color: var(--primary-foreground); padding: 5rem 0; }
@media (min-width: 768px) { .contact-section { padding: 7rem 0; } }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.contact-section__intro { height: 100%; display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-section__intro { justify-content: space-between; } }
.contact-section__title { font-weight: 700; line-height: 0.92; letter-spacing: -0.02em; text-transform: uppercase; font-size: clamp(3rem, 8vw, 6.5rem); color: var(--primary-foreground); }
.contact-section__subtitle { margin-top: 1.5rem; font-size: 1.125rem; color: color-mix(in srgb, var(--primary-foreground) 85%, transparent); }
@media (min-width: 768px) { .contact-section__subtitle { font-size: 1.25rem; } }
.contact-section__note { margin-top: 1rem; font-size: 0.875rem; color: color-mix(in srgb, var(--primary-foreground) 75%, transparent); }
.contact-section__cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { display: flex; align-items: center; gap: 1.25rem; border-radius: 1.5rem; border: 2px solid color-mix(in srgb, var(--primary-foreground) 20%, transparent); background: color-mix(in srgb, var(--primary-foreground) 10%, transparent); padding: 1.25rem 1.5rem; color: var(--primary-foreground); transition: background-color 0.2s ease, color 0.2s ease; }
.contact-card:not(.contact-card--static):hover { background: var(--primary-foreground); color: var(--primary); }
.contact-card__icon { display: flex; height: 48px; width: 48px; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 999px; border: 2px solid color-mix(in srgb, var(--primary-foreground) 30%, transparent); }
.contact-card__icon svg { width: 20px; height: 20px; }
.contact-card__label { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.2; display: block; }
.contact-card__value { font-size: 0.875rem; opacity: 0.8; display: block; }

.contact-form { height: 100%; display: flex; flex-direction: column; gap: 2rem; }
.contact-form__intro { font-size: 0.875rem; color: color-mix(in srgb, var(--primary-foreground) 90%, transparent); }
.contact-form__fields { display: flex; flex: 1; flex-direction: column; gap: 1.5rem; }
.contact-form__input { width: 100%; background: transparent; border: 0; border-bottom: 1px solid color-mix(in srgb, var(--primary-foreground) 30%, transparent); padding: 0.75rem 0; color: var(--primary-foreground); }
.contact-form__input::placeholder { color: color-mix(in srgb, var(--primary-foreground) 50%, transparent); }
.contact-form__input:focus { outline: none; border-color: var(--primary-foreground); }
.contact-form__textarea { width: 100%; flex: 1; min-height: 140px; background: color-mix(in srgb, var(--primary-foreground) 5%, transparent); border: 1px solid color-mix(in srgb, var(--primary-foreground) 20%, transparent); border-radius: 1rem; padding: 0.75rem 1rem; color: var(--primary-foreground); resize: none; }
.contact-form__textarea::placeholder { color: color-mix(in srgb, var(--primary-foreground) 50%, transparent); }
.contact-form__textarea:focus { outline: none; border-color: var(--primary-foreground); }
.contact-form__submit { display: inline-flex; align-items: center; gap: 0.75rem; border-radius: 999px; border: 2px solid var(--primary-foreground); color: var(--primary-foreground); padding: 0.9rem 2rem; font-weight: 600; font-size: 0.875rem; letter-spacing: 0.02em; transition: all 0.2s ease; }
.contact-form__submit:hover { background: var(--primary-foreground); color: var(--primary); }
.contact-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.contact-form__status { font-size: 0.875rem; }
.contact-form__status.is-success { color: var(--marigold); }
.contact-form__status.is-error { color: #ffb4b4; }

/* ---------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------- */
.site-footer { background: var(--butter); position: relative; overflow: hidden; }
.site-footer__inner {
	padding-block: 4rem 2.5rem;
	padding-inline: 1.5rem;
}
@media (min-width: 768px) {
	.site-footer__inner { padding-inline: 2rem; }
}
@media (min-width: 1024px) {
	.site-footer__inner { padding-block: 6rem 2.5rem; }
}
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(3, 1fr); gap: 4rem; } }
.site-footer__brand { max-width: 24rem; }
.site-footer__logo { height: 80px; width: auto; object-fit: contain; }
.site-footer__tagline { margin-top: 1rem; color: color-mix(in srgb, var(--foreground) 70%, transparent); line-height: 1.6; }
.site-footer__note { margin-top: 0.75rem; font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.site-footer__heading { font-size: 1.125rem; margin-bottom: 1rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-link, .footer-contact-list__static { display: flex; align-items: flex-start; gap: 0.75rem; color: color-mix(in srgb, var(--foreground) 70%, transparent); transition: color 0.2s ease; }
.footer-contact-link:hover { color: var(--primary); }
.footer-contact-list svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 0.15rem; }
.site-footer__bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--foreground) 15%, transparent); display: flex; flex-direction: column; justify-content: space-between; align-items: center; gap: 0.75rem; text-align: center; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; text-align: left; } }
.site-footer__copy { font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); }

/* =====================================================================
   WooCommerce — cart drawer
   ===================================================================== */
#theme-cart-overlay { position: fixed; inset: 0; z-index: 59; background: color-mix(in srgb, var(--foreground) 40%, transparent); opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }
#theme-cart-drawer {
	position: fixed; top: 0; right: 0; height: 100%; width: 88vw; max-width: 420px;
	background: var(--background); border-radius: 24px 0 0 24px; box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.3s ease-out;
	z-index: 60; pointer-events: none;
}
body.cart-open #theme-cart-drawer { transform: translateX(0); pointer-events: auto; }
#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: 1.75rem 1.75rem 1.25rem; }
.theme-cart-drawer__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--primary); }
.theme-cart-drawer__close { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 999px; background: var(--primary); color: var(--primary-foreground); flex-shrink: 0; }
.theme-cart-drawer__close svg { width: 20px; height: 20px; }
.theme-cart-drawer__divider { height: 1px; margin: 0 1.75rem; background: color-mix(in srgb, var(--foreground) 10%, transparent); }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 1.75rem; text-align: center; }
.theme-cart-drawer__empty-icon { width: 48px; height: 48px; color: color-mix(in srgb, var(--primary) 60%, transparent); margin-bottom: 1.5rem; }
.theme-cart-drawer__empty-title { font-family: var(--font-display); color: var(--primary); font-size: 1.875rem; margin-bottom: 2rem; }
.theme-cart-drawer__continue { display: inline-flex; align-items: center; justify-content: center; background: var(--primary); color: var(--primary-foreground); border-radius: 999px; padding: 0.6rem 1.5rem; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; }
.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__image { position: relative; width: 80px; height: 96px; flex-shrink: 0; border-radius: 0.75rem; overflow: hidden; background: var(--secondary); display: block; }
.theme-cart-item__image .theme-cart-item__img,
#theme-cart-drawer .theme-cart-item__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
	display: block;
}
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__title { font-family: var(--font-display); color: var(--primary); font-size: 1rem; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.theme-cart-item__variant { font-size: 11px; color: color-mix(in srgb, var(--foreground) 60%, transparent); margin-top: 0.15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.theme-cart-item__price { font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); margin-top: 0.15rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.35rem; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent); color: var(--primary); transition: all 0.2s ease; }
.theme-cart-item__qty-btn:hover { background: var(--primary); color: var(--primary-foreground); }
.theme-cart-item__qty-btn svg { width: 12px; height: 12px; }
.theme-cart-item__qty { font-size: 0.875rem; width: 24px; text-align: center; font-weight: 600; color: var(--primary); }
.theme-cart-item__remove { margin-left: auto; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 600; color: color-mix(in srgb, var(--foreground) 60%, transparent); transition: color 0.2s ease; }
.theme-cart-item__remove:hover { color: var(--primary); }
.theme-cart-drawer__footer { padding: 1.25rem 1.75rem 2rem; border-top: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; }
.theme-cart-drawer__subtotal-label { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.2em; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.theme-cart-drawer__subtotal-value { font-family: var(--font-display); color: var(--primary); font-size: 1.25rem; }
.theme-cart-drawer__shipping-note { font-size: 12px; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.theme-cart-drawer__checkout { width: 100%; display: inline-flex; align-items: center; justify-content: center; background: var(--primary); color: var(--primary-foreground); border-radius: 999px; padding: 0.75rem 1.5rem; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; transition: background-color 0.2s ease; }
.theme-cart-drawer__checkout:hover { background: color-mix(in srgb, var(--primary) 90%, black); }
.theme-cart-drawer__empty-btn { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 600; color: color-mix(in srgb, var(--foreground) 60%, transparent); transition: color 0.2s ease; }
.theme-cart-drawer__empty-btn svg { width: 14px; height: 14px; }
.theme-cart-drawer__empty-btn:hover { color: var(--primary); }

/* Hide WooCommerce's own "View cart" link (Section 11.4.2) */
.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; }

/* Scoped notice visibility (Section 14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }

/* =====================================================================
   WooCommerce — Add to cart button overrides (Section 11.4.1)
   ===================================================================== */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button,
button.single_add_to_cart_button {
	background-color: var(--primary) !important;
	color: var(--color-button-text) !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;
	width: 100%;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--primary) !important;
	color: var(--color-button-text) !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(--primary) !important;
}
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* =====================================================================
   Single product page
   ===================================================================== */
.single-product .site-main { padding-top: 1.5rem; padding-bottom: 4rem; }
.single-product .container-wide { padding-top: 0; }
.product-breadcrumb { padding: 0.75rem 0; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.product-breadcrumb a { transition: color 0.2s ease; }
.product-breadcrumb a:hover { color: var(--foreground); }
.product-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.back-to-shop-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 13px; color: color-mix(in srgb, var(--foreground) 65%, transparent); margin: 0.5rem 0 1.5rem; transition: color 0.2s ease; }
.back-to-shop-link:hover { color: var(--foreground); }
.back-to-shop-link svg { width: 16px; height: 16px; }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; min-width: 0; padding-bottom: 3rem; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery__main { aspect-ratio: 1 / 1; background: var(--secondary); overflow: hidden; border-radius: 1rem; position: relative; }
.theme-product-gallery__main .theme-product-gallery__img,
.theme-product-gallery__main #product-main-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
	display: block;
}
.theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; max-width: 100%; overflow-x: auto; }
.theme-product-thumb { position: relative; width: 76px; height: 76px; flex-shrink: 0; overflow: hidden; border-radius: 0.75rem; background: var(--secondary); border: 2px solid transparent; opacity: 0.65; transition: opacity 0.2s ease, border-color 0.2s ease; }
.theme-product-thumb.is-active, .theme-product-thumb:hover { opacity: 1; }
.theme-product-thumb.is-active { border-color: var(--foreground); }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.theme-product-info__category { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.theme-product-info__title.product-title { font-family: var(--font-body); font-weight: 600; font-size: 1.875rem; line-height: 1.1; margin: 0.75rem 0 1.25rem; text-transform: none; }
@media (min-width: 768px) { .theme-product-info__title.product-title { font-size: 2.25rem; } }
.theme-product-info__price { font-size: 1.25rem; margin-bottom: 1.5rem; }
.theme-product-info__excerpt { color: color-mix(in srgb, var(--foreground) 70%, transparent); line-height: 1.7; margin-bottom: 1.5rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__stock.is-out-of-stock { display: inline-block; margin-bottom: 1.5rem; padding: 0.3rem 0.9rem; border-radius: 999px; background: var(--foreground); color: var(--background); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.theme-product-info__price-note { margin-top: 0.75rem; font-size: 12px; color: color-mix(in srgb, var(--foreground) 60%, transparent); }

.option-group { margin-bottom: 1.5rem; }
.option-group__label { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--foreground) 60%, transparent); margin-bottom: 0.75rem; display: block; font-weight: 600; font-style: normal; font-family: var(--font-body); }
.option-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.option-pill { padding: 0.5rem 1rem; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; border: 1px solid var(--border); border-radius: 999px; transition: all 0.2s ease; background: transparent; }
.option-pill.is-active { background: var(--foreground); color: var(--background); border-color: var(--foreground); }
.option-pill:hover:not(.is-active) { border-color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.option-group__hint { font-size: 12px; color: color-mix(in srgb, var(--foreground) 60%, transparent); margin-top: 0.5rem; }

.styled-select { position: relative; }
.styled-select__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.75rem 1.25rem; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; border: 1px solid var(--border); border-radius: 999px; background: var(--background); transition: all 0.2s ease; }
.styled-select.is-open .styled-select__trigger { border-color: var(--foreground); box-shadow: var(--shadow-soft); }
.styled-select__value.is-placeholder { color: color-mix(in srgb, var(--foreground) 55%, transparent); }
.styled-select__chevron { width: 16px; height: 16px; transition: transform 0.2s ease; }
.styled-select.is-open .styled-select__chevron { transform: rotate(180deg); }
.styled-select__list { position: absolute; z-index: 30; margin-top: 0.5rem; width: 100%; max-height: 18rem; overflow: auto; border-radius: 1rem; border: 1px solid var(--border); background: var(--background); box-shadow: var(--shadow-soft); padding: 0.5rem 0; display: none; }
.styled-select.is-open .styled-select__list { display: block; }
.styled-select__list li button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.6rem 1rem; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; transition: background-color 0.2s ease; text-align: left; }
.styled-select__list li button:hover { background: color-mix(in srgb, var(--secondary) 60%, transparent); }
.styled-select__hint { opacity: 0.7; font-size: 11px; text-transform: none; letter-spacing: normal; }
.styled-select__swatch { width: 16px; height: 16px; border-radius: 999px; border: 1px solid var(--border); display: inline-block; margin-right: 0.5rem; flex-shrink: 0; }

.option-note-input { width: 100%; min-height: 80px; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 0.75rem; background: var(--background); resize: vertical; }
.option-note-input:focus { outline: none; border-color: var(--primary); }

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.theme-qty-minus, .theme-qty-plus { padding: 0.6rem 0.9rem; transition: background-color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--secondary); }
.theme-qty-input { width: 48px; text-align: center; border: none; background: transparent; padding: 0.6rem 0; -moz-appearance: textfield; }
.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 { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

.woocommerce-product-details__short-description,
.woocommerce-variation-description,
.posted_in { overflow-wrap: break-word; word-break: break-word; }

.product-accordions { margin-top: 2.5rem; border-top: 1px solid var(--border); }
.product-accordion { border-bottom: 1px solid var(--border); }
.product-accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; }
.product-accordion__chevron { width: 16px; height: 16px; transition: transform 0.2s ease; }
.product-accordion.is-open .product-accordion__chevron { transform: rotate(180deg); }
.product-accordion__panel { display: none; padding-bottom: 1.5rem; font-size: 15px; color: color-mix(in srgb, var(--foreground) 75%, transparent); line-height: 1.7; }
.product-accordion.is-open .product-accordion__panel { display: block; }
.product-features__description {
	margin: 0 0 1rem;
	font-size: 15px;
	color: var(--muted-foreground);
	line-height: 1.625;
	white-space: pre-line;
}
.product-features__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.product-features__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 15px;
	color: var(--muted-foreground);
	line-height: 1.625;
}
.product-features__list li::before {
	content: '';
	width: 4px;
	height: 4px;
	margin-top: 0.55rem;
	border-radius: 999px;
	background: var(--foreground);
	flex-shrink: 0;
}
.product-accordion__panel-inner--shipping {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.product-accordion__panel-inner--shipping p {
	margin: 0;
	font-size: 15px;
	color: var(--muted-foreground);
	line-height: 1.625;
}

.size-guide__note { margin-bottom: 1rem; }
.size-guide__table-wrap { overflow-x: auto; }
.size-guide__table { width: 100%; text-align: left; border-collapse: collapse; }
.size-guide__table th, .size-guide__table td { padding: 0.5rem 1rem 0.5rem 0; border-bottom: 1px solid var(--border); }
.size-guide__table th { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }

.related-products-section { padding: 5rem 0 1rem; border-top: 1px solid var(--border); }
.related-products-section__head { text-align: center; margin-bottom: 3rem; }
.related-products-section__eyebrow { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: color-mix(in srgb, var(--foreground) 70%, transparent); margin-bottom: 0.5rem; }
.related-products-section__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}
@media (min-width: 1024px) {
	.related-products-section__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 2rem;
	}
}
.related-products-section__grid .theme-product-card__image-wrapper {
	display: block;
}
.related-products-section__grid .theme-product-card__img,
.related-products-section__grid .product-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* =====================================================================
   Shop archive (fallback /shop/ page)
   ===================================================================== */
.shop-archive__title { padding-top: 2rem; margin-bottom: 2rem; font-size: 2rem; }
.shop-archive__grid { padding-bottom: 4rem; }

/* =====================================================================
   404
   ===================================================================== */
.not-found-page__inner { padding: 8rem 0; text-align: center; }
.not-found-page__title { font-size: 2.5rem; margin: 1rem 0; }
.not-found-page__body { color: color-mix(in srgb, var(--foreground) 70%, transparent); margin-bottom: 2rem; }

/* =====================================================================
   Generic page / entry content
   ===================================================================== */
.page-title { font-size: 2rem; margin: 2.5rem 0 1.5rem; }
.entry-content { padding-bottom: 4rem; line-height: 1.7; }
.entry-content p { margin-bottom: 1rem; }

/* =====================================================================
   Checkout / Cart / My Account / Thank you (Sections 13, 13.7, 22.8)
   ===================================================================== */
body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main,
body.theme-thankyou-page .site-main {
	padding-top: 2rem;
	padding-bottom: 4rem;
}

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-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	border: 1px solid var(--border);
	border-radius: 0.75rem;
	background: var(--background);
	color: var(--foreground);
	padding: revert;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus {
	outline: none;
	border-color: var(--primary);
}
body.woocommerce-checkout .wc-block-checkout {
	display: block;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
	body.woocommerce-checkout .wc-block-checkout.wc-block-components-sidebar-layout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap, 2rem);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-components-notice-banner {
	grid-column: 1 / -1;
	border-radius: 0.75rem;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--secondary);
	border-radius: var(--radius);
	padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: var(--primary) !important;
	color: var(--primary-foreground) !important;
	border-radius: var(--btn-radius) !important;
	text-transform: none !important;
	font-family: var(--font-body) !important;
}
body.woocommerce-checkout .wc-block-cart-items,
body.woocommerce-checkout .wc-block-components-checkbox label {
	font-family: var(--font-body);
}

body.woocommerce-cart .woocommerce, body.woocommerce-account .woocommerce {
	max-width: 100%;
}

body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem 0; font-size: 1.5rem; }
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 { border: none; padding: 0; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
body.theme-thankyou-page .woocommerce-customer-details address { max-width: 480px; overflow-wrap: break-word; border: 1px solid var(--border); border-radius: 0.75rem; padding: 1rem; }
@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; max-width: none; }
}
