/*
 * C.A.M.P. Clothing — theme stylesheet.
 * All color values reference CSS custom properties driven by the
 * Customizer (Section 6). Non-color design tokens (type scale, spacing,
 * radii) are ported verbatim from the original design's Tailwind config.
 */

/* =========================================================
 * 1. ROOT TOKENS
 * ========================================================= */
:root {
	--color-background: #f5f5f5;
	--color-foreground: #0f0f0f;
	--color-primary: #da1b1b;
	--color-primary-foreground: #ffffff;
	--color-secondary: #dbdbdb;
	--color-card: #ffffff;
	--color-border: #bababa;
	--color-muted-foreground: #5c5c5c;

	--font-display: 'Clash Grotesk', 'Arial Black', sans-serif;
	--font-body: 'Switzer', system-ui, sans-serif;

	--radius: 0.625rem;
	--shadow-soft: 0 6px 18px -8px rgba(0, 0, 0, 0.2);
	--shadow-elevated: 0 22px 55px -20px rgba(0, 0, 0, 0.4);
	--logo-height: 40px;
	--logo-height-mobile: 32px;
	--header-height: 96px;

	--btn-radius: 999px;
	--btn-height: 44px;
	--btn-padding: 0 1.5rem;
	--btn-font-size: 14px;
	--btn-font-weight: 500;
	--btn-letter-spacing: normal;
	--btn-text-transform: uppercase;
}

/* =========================================================
 * 2. RESET / BASE
 * ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	font-feature-settings: 'ss01', 'cv11';
}
h1, h2, h3, h4, h5, h6 { font-weight: inherit; font-size: inherit; margin: 0; font-family: var(--font-display); letter-spacing: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }
button,
a,
label,
summary,
select,
[role="button"],
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="checkbox"],
input[type="radio"],
input[type="file"],
.theme-card-link,
.theme-product-thumb,
.theme-filter-tab,
.theme-size-btn,
.theme-color-swatch,
.theme-qty-btn,
.theme-cart-item__qty-btn,
.theme-cart-btn,
.people-card,
.faq-item__trigger,
.promo-banner__dismiss {
	cursor: pointer;
}
section[id] { scroll-margin-top: 80px; }

/* WordPress admin bar — keep fixed header below it */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}

img:not(.cover-img):not(.theme-product-card__image):not(.people-card__image):not(.community-tile__image):not(.site-logo-img):not(.footer-logo-img) {
	max-width: 100%;
	height: auto;
}
.cover-img,
.theme-product-card__image,
.people-card__image,
.community-tile__image,
#product-main-img,
.theme-product-thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.theme-product-card__image {
	/* Match Lovable square product photos — avoid hard-crop zoom */
	object-fit: cover;
	object-position: center center;
	transform-origin: center center;
}

.container-wide { margin-inline: auto; width: 100%; max-width: 80rem; padding-inline: 1.25rem; }
@media (min-width: 640px) { .container-wide { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container-wide { padding-inline: 2.5rem; } }

.eyebrow { margin-bottom: 1.25rem; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.3em; color: var(--color-primary); }
.text-primary { color: var(--color-primary); }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* =========================================================
 * 3. SCROLL REVEAL (Section 2.1)
 * ========================================================= */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 800ms cubic-bezier(.22, 1, .36, 1), transform 800ms cubic-bezier(.22, 1, .36, 1);
	will-change: opacity, transform;
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
body.is-customizer [data-reveal] { opacity: 1 !important; transform: none !important; }

/* =========================================================
 * 4. BUTTONS
 * ========================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
	border-radius: var(--btn-radius);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	text-transform: var(--btn-text-transform);
	letter-spacing: var(--btn-letter-spacing);
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease;
	border: 1px solid transparent;
	height: var(--btn-height);
	padding: var(--btn-padding);
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}
.btn svg { pointer-events: none; width: 1rem; height: 1rem; flex-shrink: 0; }
.btn:hover { background: var(--color-foreground); border-color: var(--color-foreground); }
.btn:disabled { pointer-events: none; opacity: 0.6; }
.btn-outline { background: transparent; color: var(--color-foreground); border-color: color-mix(in srgb, var(--color-foreground) 30%, transparent); }
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); background: transparent; }
.btn-glass { background: color-mix(in srgb, var(--color-primary-foreground) 10%, transparent); color: var(--color-primary-foreground); border-color: color-mix(in srgb, var(--color-primary-foreground) 50%, transparent); backdrop-filter: blur(12px); }
.btn-glass:hover { background: color-mix(in srgb, var(--color-primary-foreground) 20%, transparent); border-color: color-mix(in srgb, var(--color-primary-foreground) 50%, transparent); }
.btn-ghost { background: transparent; border-color: transparent; color: var(--color-foreground); }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-foreground) 5%, transparent); }
.btn-sm { height: 36px; padding: 0 1rem; }
.btn-block { width: 100%; }
.btn-hero-primary, .btn-hero-outline { text-transform: var(--btn-text-transform); }

/* =========================================================
 * 5. HEADER
 * ========================================================= */
.announcement-bar {
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	text-align: center;
	padding: 0.5rem 1rem;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}
.site-header { position: fixed; inset-inline: 0; top: 0; z-index: 50; }
.site-header__bar {
	border-bottom: 1px solid transparent;
	background: transparent;
	transition: background-color .3s ease, border-color .3s ease;
}
.site-header.is-solid .site-header__bar {
	border-color: color-mix(in srgb, var(--color-foreground) 15%, transparent);
	background: color-mix(in srgb, var(--color-background) 90%, transparent);
	backdrop-filter: blur(20px);
}
.site-header__inner { display: flex; height: 64px; align-items: center; justify-content: space-between; }
@media (min-width: 1024px) { .site-header__inner { height: 80px; } }
.site-logo-link { order: 2; flex-shrink: 0; line-height: 0; }
@media (min-width: 1024px) { .site-logo-link { order: 1; } }
/* Match Lovable Header: h-8 (32px) → md:h-10 (40px) */
.site-header .site-logo-img {
	height: 32px;
	width: auto;
	max-height: 32px;
	max-width: none;
	display: block;
	object-fit: contain;
}
@media (min-width: 768px) {
	.site-header .site-logo-img {
		height: var(--logo-height, 40px);
		max-height: var(--logo-height, 40px);
	}
}
.footer-logo-img {
	height: 48px !important;
	max-height: 48px !important;
	width: auto !important;
	object-fit: contain;
}

.theme-nav-desktop { order: 2; display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 1024px) { .theme-nav-desktop { display: flex; } }
.theme-nav-list { display: flex; align-items: center; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.theme-nav-link {
	position: relative;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--color-primary-foreground);
	opacity: 0.85;
	transition: color .3s ease, opacity .3s ease;
}
.theme-nav-link::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: -6px;
	height: 2px;
	background: var(--color-primary-foreground);
	transform: scaleX(0);
	opacity: 0;
	transition: all .3s ease;
}
.theme-nav-link:hover { color: var(--color-primary); opacity: 1; }
.theme-nav-link.is-active { color: var(--color-primary-foreground); opacity: 1; }
.theme-nav-link.is-active::after { transform: scaleX(1); opacity: 1; }
.site-header.is-solid .theme-nav-link { color: var(--color-foreground); opacity: 1; }
.site-header.is-solid .theme-nav-link:hover,
.site-header.is-solid .theme-nav-link.is-active { color: var(--color-primary); }
.site-header.is-solid .theme-nav-link::after { background: var(--color-primary); }

.theme-mobile-toggle {
	order: 1;
	display: flex;
	height: 44px; width: 44px;
	align-items: center; justify-content: center;
	background: none; border: none;
	color: var(--color-primary-foreground);
}
.site-header.is-solid .theme-mobile-toggle { color: var(--color-foreground); }
@media (min-width: 1024px) { .theme-mobile-toggle { display: none; } }

.theme-cart-btn {
	order: 3;
	position: relative;
	display: flex;
	height: 44px; width: 44px;
	align-items: center; justify-content: center;
	background: none; border: none;
	color: var(--color-primary-foreground);
}
.site-header.is-solid .theme-cart-btn { color: var(--color-foreground); }
.theme-cart-count {
	position: absolute;
	top: 0; right: 0;
	display: flex;
	height: 19px; min-width: 19px;
	align-items: center; justify-content: center;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	font-size: 12px; font-weight: 500;
	padding: 0 4px;
}
.theme-cart-count:empty { display: none; }

.theme-nav-mobile {
	display: none;
	border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	background: var(--color-background);
	padding: 1.25rem;
}
.theme-nav-mobile.is-open { display: block; }
.theme-nav-mobile .theme-nav-list { flex-direction: column; align-items: stretch; gap: 0; }
.theme-nav-mobile .theme-nav-link {
	display: block;
	width: 100%;
	border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	padding: 0.75rem 0;
	color: var(--color-foreground);
	opacity: 1;
}
.theme-nav-mobile .theme-nav-link.is-active { color: var(--color-primary); }
.theme-nav-mobile .theme-nav-link::after { display: none; }

body.theme-no-hero .site-main,
body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main,
body.single-product .single-product-page,
body.error404 .notfound-page {
	/* Announcement (~36px) + header bar (64/80) + breathing room — matches Lovable pt-24/pt-28 */
	padding-top: 7.5rem;
}
@media (min-width: 1024px) {
	body.theme-no-hero .site-main,
	body.woocommerce-checkout .site-main,
	body.woocommerce-cart .site-main,
	body.woocommerce-account .site-main,
	body.single-product .single-product-page,
	body.error404 .notfound-page {
		padding-top: 8.5rem;
	}
}
body.admin-bar.theme-no-hero .site-main,
body.admin-bar.woocommerce-checkout .site-main,
body.admin-bar.woocommerce-cart .site-main,
body.admin-bar.woocommerce-account .site-main,
body.admin-bar.single-product .single-product-page,
body.admin-bar.error404 .notfound-page {
	padding-top: calc(7.5rem + 32px);
}
@media (min-width: 1024px) {
	body.admin-bar.theme-no-hero .site-main,
	body.admin-bar.woocommerce-checkout .site-main,
	body.admin-bar.woocommerce-cart .site-main,
	body.admin-bar.woocommerce-account .site-main,
	body.admin-bar.single-product .single-product-page,
	body.admin-bar.error404 .notfound-page {
		padding-top: calc(8.5rem + 32px);
	}
}
@media screen and (max-width: 782px) {
	body.admin-bar.theme-no-hero .site-main,
	body.admin-bar.woocommerce-checkout .site-main,
	body.admin-bar.woocommerce-cart .site-main,
	body.admin-bar.woocommerce-account .site-main,
	body.admin-bar.single-product .single-product-page,
	body.admin-bar.error404 .notfound-page {
		padding-top: calc(7.5rem + 46px);
	}
}
body.theme-no-hero .theme-page-wrap { padding-top: 3rem; padding-bottom: 5rem; }

/* =========================================================
 * 6. HERO
 * ========================================================= */
.hero-section { position: relative; min-height: 100vh; width: 100%; display: flex; align-items: flex-end; overflow: hidden; background: var(--color-foreground); }
.hero-section__video { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
.hero-section__scrim-flat { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.hero-section__scrim-linear { position: absolute; inset: 0; background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.84)); }
.hero-section__content { position: relative; z-index: 10; padding-block: 10rem 4rem; color: var(--color-primary-foreground); }
@media (min-width: 768px) { .hero-section__content { padding-bottom: 5rem; } }
@media (min-width: 1024px) { .hero-section__content { padding-bottom: 6rem; } }
.hero-section__eyebrow { margin-bottom: 1.25rem; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.28em; color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent); }
.hero-section__title { max-width: 64rem; font-size: 3rem; font-weight: 600; line-height: 1; color: var(--color-primary-foreground); }
@media (min-width: 640px) { .hero-section__title { font-size: 3.75rem; } }
@media (min-width: 768px) { .hero-section__title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-section__title { font-size: 6.25rem; } }
.hero-section__subtitle { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 500; color: var(--color-primary-foreground); }
@media (min-width: 768px) { .hero-section__subtitle { font-size: 1.5rem; } }
.hero-section__description { margin-top: 1.25rem; max-width: 42rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent); }
@media (min-width: 768px) { .hero-section__description { font-size: 1rem; } }
.hero-section__actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-section__scroll-btn {
	position: absolute; bottom: 1.5rem; right: 1.25rem;
	display: none;
	height: 44px; width: 44px;
	align-items: center; justify-content: center;
	border: 1px solid color-mix(in srgb, var(--color-primary-foreground) 40%, transparent);
	color: var(--color-primary-foreground);
}
@media (min-width: 640px) { .hero-section__scroll-btn { display: flex; } }

/* =========================================================
 * 7. ABOUT
 * ========================================================= */
.about-section { background: var(--color-background); padding-block: 6rem; }
@media (min-width: 768px) { .about-section { padding-block: 8rem; } }
.about-section__grid { display: grid; grid-template-columns: 1fr; align-items: center; gap: 3rem; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 4rem; } }
.about-section__media { min-width: 0; }
@media (min-width: 1024px) { .about-section__media { grid-column: span 6; } }
.about-section__image-wrap { position: relative; overflow: hidden; border-radius: 0.75rem; background: var(--color-foreground); }
.about-section__image-wrap { aspect-ratio: 4 / 5; }
.about-section__badge { position: absolute; inset-inline: 0; bottom: 0; background: linear-gradient(to top, var(--color-foreground), transparent); padding: 4rem 1.5rem 1.5rem; color: var(--color-primary-foreground); }
@media (min-width: 640px) { .about-section__badge { padding: 5rem 2rem 2rem; } }
.about-section__badge-eyebrow { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.3em; color: var(--color-primary); }
.about-section__badge-text { margin-top: 0.5rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1.2; }
@media (min-width: 640px) { .about-section__badge-text { font-size: 1.875rem; } }
.about-section__copy { min-width: 0; }
@media (min-width: 1024px) { .about-section__copy { grid-column: span 6; } }
.about-section__heading { font-size: 2.25rem; font-weight: 600; line-height: 1; }
@media (min-width: 768px) { .about-section__heading { font-size: 3rem; } }
.about-section__paragraph { margin-top: 1.5rem; font-size: 1.125rem; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.about-section__paragraph--lead { margin-top: 1.75rem; }
.about-section__paragraph:not(.about-section__paragraph--lead) { margin-top: 1.5rem; font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.about-section__ig-link { margin-top: 2.25rem; display: inline-flex; align-items: center; gap: 0.75rem; border-bottom: 2px solid var(--color-primary); padding-bottom: 0.5rem; font-size: 14px; font-weight: 500; text-transform: uppercase; }

/* =========================================================
 * 8. PEOPLE
 * ========================================================= */
.people-section { border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); background: var(--color-secondary); padding-block: 6rem; scroll-margin-top: 6rem; }
@media (min-width: 768px) { .people-section { padding-block: 8rem; } }
.people-section__head { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) { .people-section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.people-section__head-copy { max-width: 48rem; }
.people-section__heading { font-size: 2.25rem; font-weight: 600; line-height: 1; }
@media (min-width: 768px) { .people-section__heading { font-size: 3.75rem; } }
.people-section__description { margin-top: 1.5rem; max-width: 36rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

.theme-filter-tabs {
	margin-block: 2.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding-bottom: 0;
}
.theme-filter-tab {
	flex: 0 1 auto;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 25%, transparent);
	background: transparent;
	color: var(--color-foreground);
	padding: 0.5rem 0.875rem;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.25;
	white-space: nowrap;
	transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}
@media (min-width: 480px) {
	.theme-filter-tab {
		padding: 0.55rem 1rem;
		font-size: 13px;
	}
}
@media (min-width: 768px) {
	.theme-filter-tab {
		padding: 0.625rem 1.25rem;
		font-size: 14px;
	}
}
.theme-filter-tab:hover { border-color: var(--color-primary); }
.theme-filter-tab.is-active { border-color: var(--color-primary); background: var(--color-primary); color: var(--color-primary-foreground); }

.people-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .people-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .people-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.people-card {
	display: block;
	width: 100%;
	text-align: left;
	overflow: hidden;
	border-radius: 0.75rem;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	background: var(--color-card);
	transition: border-color .3s ease;
	padding: 0;
}
.people-card:hover { border-color: var(--color-primary); }
.people-card__image-wrap { position: relative; overflow: hidden; background: var(--color-foreground); aspect-ratio: 4 / 5; }
.people-card__image { transition: transform .7s ease; }
.people-card:hover .people-card__image { transform: scale(1.05); }
.people-card__badge { position: absolute; left: 1rem; top: 1rem; display: inline-flex; align-items: center; gap: 0.35rem; border-radius: 999px; background: var(--color-primary); padding: 0.25rem 0.75rem; font-size: 12px; font-weight: 500; color: var(--color-primary-foreground); }
.people-card__body { padding: 1.5rem; }
.people-card__role { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-primary); }
.people-card__name { margin-top: 0.5rem; font-size: 1.5rem; font-weight: 600; line-height: 1.25; }
.people-card__excerpt { margin-top: 0.75rem; font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.people-card__link { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 14px; font-weight: 500; color: var(--color-primary); }

.theme-modal { position: fixed; inset: 0; z-index: 60; display: none; }
.theme-modal.is-open { display: block; }
.theme-modal__overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-modal__panel {
	position: relative;
	margin: 5vh auto;
	max-height: 90vh;
	max-width: 48rem;
	overflow: hidden;
	overflow-y: auto;
	border-radius: 1rem;
	background: var(--color-card);
}
.theme-modal__close { position: absolute; top: 1rem; right: 1rem; z-index: 5; display: flex; height: 36px; width: 36px; align-items: center; justify-content: center; border-radius: 999px; background: color-mix(in srgb, var(--color-background) 90%, transparent); border: none; color: var(--color-foreground); }
.theme-modal__grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 640px) { .theme-modal__grid { grid-template-columns: repeat(2, 1fr); } }
.theme-modal__image { width: 100%; height: 100%; max-height: 420px; object-fit: cover; }
@media (min-width: 640px) { .theme-modal__image { max-height: none; } }
.theme-modal__content { padding: 1.5rem; }
@media (min-width: 640px) { .theme-modal__content { padding: 2rem; } }
.theme-modal__role { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-primary); }
.theme-modal__name { margin-top: 0.5rem; font-size: 1.875rem; font-weight: 600; line-height: 1.25; }
.theme-modal__location { margin-top: 0.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-modal__location svg { color: var(--color-primary); }
.theme-modal__bio { margin-top: 1.25rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.theme-modal__video-wrap { margin-top: 1.5rem; overflow: hidden; border-radius: 0.75rem; background: var(--color-foreground); }
.theme-modal__video { width: 100%; aspect-ratio: 16/9; display: block; }
body.theme-modal-open { overflow: hidden; }

/* =========================================================
 * 9. MARQUEE
 * ========================================================= */
.marquee-strip { background: var(--color-primary); padding-block: 1.25rem; overflow: hidden; }
.marquee-strip__track { display: flex; white-space: nowrap; animation: theme-marquee 22s linear infinite; width: max-content; }
.marquee-strip__item { display: flex; flex-shrink: 0; align-items: center; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; text-transform: uppercase; color: var(--color-primary-foreground); }
.marquee-strip__item span:first-child { margin-inline: 2rem; }
@keyframes theme-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-33.3333%); } }

/* =========================================================
 * 10. COMMUNITY / PILLARS
 * ========================================================= */
.community-section { background: var(--color-secondary); padding-block: 6rem; }
@media (min-width: 768px) { .community-section { padding-block: 8rem; } }
.community-section__head { max-width: 48rem; }
.community-section__heading { font-size: 2.25rem; font-weight: 600; line-height: 1; }
@media (min-width: 768px) { .community-section__heading { font-size: 3.75rem; } }
.community-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1px; overflow: hidden; border-radius: 0.75rem; border: 1px solid var(--color-border); background: var(--color-border); }
@media (min-width: 640px) { .community-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.community-tile { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--color-foreground); }
.community-tile__image { transition: transform .7s ease; }
.community-tile:hover .community-tile__image { transform: scale(1.05); }
.community-tile__scrim { position: absolute; inset: 0; background: linear-gradient(to top, var(--color-foreground), color-mix(in srgb, var(--color-foreground) 10%, transparent) 60%, transparent); }
.community-tile__content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem; color: var(--color-primary-foreground); }
@media (min-width: 640px) { .community-tile__content { padding: 2.25rem; } }
.community-tile__title { font-size: 1.875rem; font-weight: 600; line-height: 1.25; }
.community-tile__desc { margin-top: 0.75rem; max-width: 24rem; font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent); }
.community-tile__bar { margin-top: 1.5rem; height: 4px; width: 3rem; background: var(--color-primary); }
.community-tile--special { display: flex; flex-direction: column; justify-content: space-between; padding: 2rem; color: var(--color-primary-foreground); }
@media (min-width: 640px) { .community-tile--special { padding: 2.5rem; } }
.community-tile__icon { position: relative; z-index: 1; color: var(--color-primary); }
.community-tile__special-content { position: relative; z-index: 1; }
.community-tile__special-title { font-family: var(--font-display); font-size: 2.25rem; font-weight: 600; line-height: 1; }
.community-tile__special-link { margin-top: 2rem; display: inline-flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid var(--color-primary); padding-bottom: 0.25rem; font-size: 14px; font-weight: 500; color: var(--color-primary); }

/* =========================================================
 * 11. SHOP + PRODUCT CARDS
 * ========================================================= */
.shop-section { background: var(--color-background); padding-block: 6rem; scroll-margin-top: 6rem; }
@media (min-width: 768px) { .shop-section { padding-block: 8rem; } }
.shop-section__head { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) { .shop-section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.shop-heading { font-size: 2.25rem; font-weight: 600; line-height: 1; }
@media (min-width: 768px) { .shop-heading { font-size: 3.75rem; } }
.shop-section__search { position: relative; width: 100%; }
@media (min-width: 1024px) { .shop-section__search { width: 20rem; } }
.shop-section__search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.shop-section__search-input { height: 48px; width: 100%; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 25%, transparent); background: var(--color-card); padding-inline: 2.75rem 1rem; font-size: 14px; }
.shop-section__search-input:focus { outline: none; border-color: var(--color-primary); }
.shop-empty-message { padding-block: 5rem; text-align: center; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.theme-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); align-items: stretch; gap: 1.5rem 1.5rem; row-gap: 2.5rem; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card { display: flex; flex-direction: column; height: 100%; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1/1; background: color-mix(in srgb, var(--color-card) 100%, transparent); border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem; }
.theme-card-link {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
}
.theme-product-card__image {
	transition: transform 1.4s cubic-bezier(.22,.61,.36,1);
	pointer-events: none;
}
.theme-product-card:hover .theme-product-card__image { transform: scale(1.04); }
.theme-product-card__scrim { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 35%, transparent), transparent); opacity: 0; transition: opacity .5s ease; pointer-events: none; }
.theme-product-card:hover .theme-product-card__scrim { opacity: 1; }
.theme-product-card__badge { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 10; background: var(--color-foreground); color: var(--color-background); font-size: 11px; font-weight: 500; padding: 0.25rem 0.65rem; border-radius: 999px; }
.theme-product-card__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 32px; height: 32px; border-radius: 999px; background: color-mix(in srgb, var(--color-background) 85%, transparent); backdrop-filter: blur(6px); border: none; display: inline-flex; align-items: center; justify-content: center; color: var(--color-foreground); opacity: 0; transition: opacity .3s ease, background-color .3s ease, color .3s ease; box-shadow: var(--shadow-soft); }
.theme-product-card:hover .theme-product-card__nav { opacity: 1; }
.theme-product-card__nav:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-card__nav--prev { left: 0.5rem; }
.theme-product-card__nav--next { right: 0.5rem; }
.theme-product-card__dots { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 10; display: flex; gap: 0.25rem; pointer-events: none; }
.theme-product-card__dot { height: 4px; width: 4px; border-radius: 999px; background: color-mix(in srgb, var(--color-background) 60%, transparent); transition: all .2s ease; }
.theme-product-card__dot.is-active { width: 1rem; background: var(--color-background); }
.theme-product-card__actions { position: absolute; inset-inline: 0.75rem; bottom: 0.75rem; z-index: 20; display: flex; align-items: center; gap: 0.5rem; opacity: 0; transition: opacity .5s ease; }
.theme-product-card:hover .theme-product-card__actions { opacity: 1; }
a.theme-product-card__add.add_to_cart_button.ajax_add_to_cart {
	flex: 1 1 auto;
	min-height: 40px;
	height: 40px;
	border-radius: 999px !important;
	background: color-mix(in srgb, var(--color-background) 95%, transparent) !important;
	color: var(--color-foreground) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	letter-spacing: normal;
	text-transform: none !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	backdrop-filter: blur(6px);
	box-shadow: var(--shadow-soft);
	border: none !important;
	padding: 0 1rem !important;
}
a.theme-product-card__add.add_to_cart_button.ajax_add_to_cart:hover { background: var(--color-primary) !important; color: var(--color-primary-foreground) !important; opacity: 1 !important; }
.theme-product-card__quickview { width: 40px; height: 40px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: color-mix(in srgb, var(--color-background) 95%, transparent); color: var(--color-foreground); box-shadow: var(--shadow-soft); backdrop-filter: blur(6px); transition: background-color .3s ease, color .3s ease; }
.theme-product-card__quickview:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-card__info { display: block; padding-inline: 0.125rem; flex: 1; }
.theme-product-card__category { margin-bottom: 0.375rem; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-primary) 90%, transparent); }
.theme-product-card__title { font-size: 1.15rem; line-height: 1.375; color: var(--color-foreground); transition: color .3s ease; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.3rem; } }
@media (min-width: 1024px) { .theme-product-card__title { font-size: 1.4rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.375rem; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-product-card__price .woocommerce-Price-amount { font-weight: 500; }

.related-products-section { border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); padding-block: 5rem; }
.related-products-section__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.related-products-section__heading { font-family: var(--font-display); font-size: 1.875rem; font-weight: 600; }
@media (min-width: 768px) { .related-products-section__heading { font-size: 2.25rem; } }
.related-products-section__view-all { display: none; align-items: center; gap: 0.5rem; font-size: 14px; font-weight: 500; }
@media (min-width: 640px) { .related-products-section__view-all { display: inline-flex; } }
.related-products-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
@media (min-width: 640px) { .related-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .related-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* =========================================================
 * 12. FAQ
 * ========================================================= */
.faq-section { border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); background: var(--color-secondary); padding-block: 6rem; scroll-margin-top: 6rem; }
@media (min-width: 768px) { .faq-section { padding-block: 8rem; } }
.faq-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); } }
.faq-section__intro { min-width: 0; }
@media (min-width: 1024px) { .faq-section__intro { grid-column: span 4; } }
.faq-section__heading { font-size: 2.25rem; font-weight: 600; line-height: 1; }
@media (min-width: 768px) { .faq-section__heading { font-size: 3rem; } }
.faq-section__desc { margin-top: 1.5rem; max-width: 24rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.faq-section__card { display: none; margin-top: 2.5rem; border-radius: 0.75rem; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); background: var(--color-card); padding: 1.75rem; box-shadow: var(--shadow-soft); }
@media (min-width: 1024px) { .faq-section__card { display: block; } }
.faq-section__card-icon { margin-bottom: 1.25rem; display: inline-flex; height: 44px; width: 44px; align-items: center; justify-content: center; border-radius: 0.5rem; background: var(--color-primary); color: var(--color-primary-foreground); }
.faq-section__card-heading { margin-bottom: 0.5rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1.3; }
.faq-section__card-text { margin-bottom: 1.5rem; font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.faq-section__list { min-width: 0; }
@media (min-width: 1024px) { .faq-section__list { grid-column: span 8; } }
.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 25%, transparent); }
.faq-item__question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.5rem; background: none; border: none; text-align: left; }
.faq-item__question span:first-child { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; line-height: 1.35; }
@media (min-width: 768px) { .faq-item__question span:first-child { font-size: 1.5rem; } }
.faq-item__icon { flex-shrink: 0; color: var(--color-primary); }
.faq-item__icon-minus { display: none; }
.faq-item.is-open .faq-item__icon-minus { display: block; }
.faq-item.is-open .faq-item__icon-plus { display: none; }
.faq-item__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-item.is-open .faq-item__panel { grid-template-rows: 1fr; }
.faq-item__panel-inner { overflow: hidden; }
.faq-item__panel-inner p { max-width: 42rem; padding-bottom: 1.75rem; padding-right: 2rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }

/* =========================================================
 * 13. PRE-CONTACT CTA
 * ========================================================= */
.precta-section { position: relative; display: flex; min-height: 92vh; align-items: center; overflow: hidden; background: var(--color-foreground); }
.precta-section__video { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
.precta-section__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.precta-section__content { position: relative; z-index: 10; padding-block: 8rem; text-align: center; color: var(--color-primary-foreground); }
@media (min-width: 768px) { .precta-section__content { padding-block: 10rem; } }
.precta-section__heading { margin-inline: auto; max-width: 64rem; font-size: 3rem; font-weight: 600; line-height: 1; }
@media (min-width: 768px) { .precta-section__heading { font-size: 4.5rem; } }
.precta-section__desc { margin: 1.75rem auto 0; max-width: 42rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent); }
@media (min-width: 768px) { .precta-section__desc { font-size: 1.125rem; } }
.precta-section__actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

/* =========================================================
 * 14. CONTACT
 * ========================================================= */
.contact-section { background: var(--color-background); padding-block: 6rem; scroll-margin-top: 6rem; }
@media (min-width: 768px) { .contact-section { padding-block: 8rem; } }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 5rem; } }
.contact-section__info { min-width: 0; }
@media (min-width: 1024px) { .contact-section__info { grid-column: span 5; } }
.contact-title { font-size: 2.25rem; font-weight: 600; line-height: 1; }
@media (min-width: 768px) { .contact-title { font-size: 3.75rem; } }
.contact-section__desc { margin-top: 1.5rem; max-width: 28rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.contact-section__list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 14px; }
.contact-section__list li a, .contact-section__address { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-section__list li a:hover { color: var(--color-primary); }
.contact-section__list svg { flex-shrink: 0; color: var(--color-primary); margin-top: 1px; }
.contact-section__quote { margin-top: 2.5rem; max-width: 28rem; border-radius: 0.5rem; border-left: 2px solid var(--color-primary); background: var(--color-card); padding: 1rem 1.25rem; }
.contact-section__quote-text { font-family: var(--font-display); font-size: 15px; font-weight: 600; line-height: 1.4; }
.contact-section__quote-author { margin-top: 0.5rem; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-primary); }

.contact-form { min-width: 0; display: flex; flex-direction: column; gap: 1rem; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); background: var(--color-card); padding: 1.5rem; box-shadow: var(--shadow-soft); }
@media (min-width: 640px) { .contact-form { padding: 2rem; } }
@media (min-width: 1024px) { .contact-form { grid-column: span 7; } }
.contact-form__row--2col { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-form__row--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.contact-form__label { margin-bottom: 0.5rem; display: block; font-size: 12px; font-weight: 500; text-transform: uppercase; }
.contact-form__input { height: 48px; width: 100%; border-radius: 0.5rem; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); background: var(--color-background); padding-inline: 1rem; font-size: 14px; color: var(--color-foreground); font-family: var(--font-body); }
.contact-form__input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.contact-form__input:focus { outline: none; border-color: var(--color-primary); }
.contact-form__textarea { height: auto; padding-block: 0.75rem; resize: none; }
.contact-form__select-wrap { position: relative; }
.contact-form__select { appearance: none; padding-right: 2.5rem; }
.contact-form__select-icon { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; }
.contact-form__note { text-align: center; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* =========================================================
 * 15. FOOTER
 * ========================================================= */
.site-footer { border-top: 1px solid color-mix(in srgb, var(--color-primary-foreground) 15%, transparent); background: var(--color-foreground); color: var(--color-primary-foreground); }
.site-footer__inner { padding-block: 3.5rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-block: 5rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.site-footer__tagline { margin-top: 1.25rem; max-width: 20rem; font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-primary-foreground) 65%, transparent); }
.site-footer__instagram { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 14px; color: var(--color-primary); }
.site-footer__instagram:hover { color: var(--color-primary-foreground); }
.site-footer__heading { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; text-transform: uppercase; }
.site-footer__list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer-link { font-size: 14px; color: color-mix(in srgb, var(--color-primary-foreground) 65%, transparent); }
.theme-footer-link:hover { color: var(--color-primary); }
.site-footer__contact-list { gap: 1rem; font-size: 14px; color: color-mix(in srgb, var(--color-primary-foreground) 70%, transparent); }
.site-footer__contact-list a { display: flex; align-items: center; gap: 0.5rem; }
.site-footer__contact-list a:hover { color: var(--color-primary); }
.site-footer__address { display: flex; align-items: flex-start; gap: 0.5rem; }
.site-footer__address svg { margin-top: 2px; flex-shrink: 0; }
.site-footer__bottom { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 0.75rem; border-top: 1px solid color-mix(in srgb, var(--color-primary-foreground) 15%, transparent); padding-top: 1.75rem; font-size: 12px; color: color-mix(in srgb, var(--color-primary-foreground) 50%, transparent); }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; } }
.site-footer__bottom a:hover { color: var(--color-primary-foreground); }

/* =========================================================
 * 16. PROMO BANNER
 * ========================================================= */
.theme-promo-banner {
	position: fixed;
	bottom: 1.25rem;
	left: 1rem; right: 1rem;
	z-index: 50;
	display: flex;
	align-items: center;
	gap: 1rem;
	border-radius: 0.75rem;
	border: 1px solid color-mix(in srgb, var(--color-primary-foreground) 15%, transparent);
	background: color-mix(in srgb, var(--color-foreground) 95%, transparent);
	padding: 0.875rem 1rem;
	color: var(--color-primary-foreground);
	box-shadow: var(--shadow-elevated);
	backdrop-filter: blur(10px);
}
@media (min-width: 640px) { .theme-promo-banner { left: auto; right: 1.5rem; max-width: 24rem; } }
.theme-promo-banner[hidden] { display: none; }
.theme-promo-banner__body { flex: 1; }
.theme-promo-banner__eyebrow { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.24em; color: var(--color-primary); }
.theme-promo-banner__text { margin-top: 0.375rem; font-size: 14px; line-height: 1.4; color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent); }
.theme-promo-banner__code { border-radius: 999px; background: var(--color-primary); padding: 0.125rem 0.5rem; font-size: 13px; font-weight: 500; color: var(--color-primary-foreground); }
.theme-promo-banner__dismiss { flex-shrink: 0; align-self: flex-start; border-radius: 999px; padding: 0.375rem; background: none; border: none; color: color-mix(in srgb, var(--color-primary-foreground) 60%, transparent); }
.theme-promo-banner__dismiss:hover { background: color-mix(in srgb, var(--color-primary-foreground) 10%, transparent); color: var(--color-primary-foreground); }

/* =========================================================
 * 17. SIDE CART DRAWER
 * ========================================================= */
#theme-cart-overlay { position: fixed; inset: 0; z-index: 55; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); display: none; }
body.cart-open #theme-cart-overlay { display: block; }
#theme-cart-drawer {
	position: fixed;
	right: -100%;
	top: 0;
	height: 100%;
	width: 100%;
	max-width: 28rem;
	background: var(--color-background);
	z-index: 56;
	box-shadow: var(--shadow-elevated);
	display: flex;
	flex-direction: column;
	transition: right .35s cubic-bezier(.22,1,.36,1);
}
body.cart-open #theme-cart-drawer { right: 0; }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-cart-drawer__title { font-family: var(--font-display); font-size: 1.5rem; }
.theme-cart-drawer__close { padding: 0.375rem; border-radius: 999px; background: none; border: none; color: var(--color-foreground); }
.theme-cart-drawer__close:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-drawer__empty svg { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); margin-bottom: 1rem; }
.theme-cart-drawer__empty p { margin-bottom: 1.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__image {
	position: relative;
	width: 80px;
	height: 96px;
	flex-shrink: 0;
	border-radius: 0.375rem;
	overflow: hidden;
	background: var(--color-secondary);
	display: block;
}
.theme-cart-item__image img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	object-position: center center;
}
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__name { display: block; font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.theme-cart-item__name:hover { color: var(--color-primary); }
.theme-cart-item__price { margin-top: 0.125rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-cart-item__meta { margin-top: 0.25rem; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-item__controls { margin-top: 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; border-radius: 4px; background: none; border: none; color: var(--color-foreground); }
.theme-cart-item__qty-btn:hover { background: var(--color-secondary); }
.theme-cart-item__qty { font-size: 13px; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 13px; background: none; border: none; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-item__remove:hover { color: var(--color-primary); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); display: flex; flex-direction: column; gap: 1rem; background: color-mix(in srgb, var(--color-card) 40%, var(--color-background)); }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 14px; }
.theme-cart-drawer__subtotal span:first-child { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-drawer__subtotal span:last-child { font-weight: 500; }
.theme-cart-drawer__note { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__footer .btn-ghost { color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* Hide "View cart" injected after AJAX add-to-cart (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; }

/* =========================================================
 * 18. SINGLE PRODUCT
 * ========================================================= */
.single-product-page { padding-top: calc(var(--header-height) + 1.5rem); }
.single-product__breadcrumb { padding-block: 1.5rem; font-size: 12px; font-weight: 500; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.single-product__breadcrumb a:hover { color: var(--color-primary); }
.single-product__breadcrumb span { margin-inline: 0.5rem; }
.theme-product-layout { display: grid; grid-template-columns: 1fr; align-items: start; gap: 2.5rem; padding-bottom: 5rem; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 4rem; } }
.theme-product-gallery { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-gallery { grid-column: span 7; position: sticky; top: 7rem; } }
.theme-product-gallery__main { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 0.75rem; background: var(--color-secondary); }
.theme-product-thumbnails { margin-top: 1rem; display: flex; flex-wrap: wrap; max-width: 100%; gap: 0.75rem; }
.theme-product-thumb { position: relative; width: 72px; height: 90px; border-radius: 0.5rem; overflow: hidden; border: 2px solid transparent; background: var(--color-secondary); }
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-info { grid-column: span 5; } }
.product-title { font-family: var(--font-body); font-size: 2.25rem; font-weight: 600; line-height: 1.05; }
@media (min-width: 1024px) { .product-title { font-size: 3rem; } }
.theme-product-price { margin-block: 1.5rem; font-size: 1.25rem; font-weight: 500; }
.theme-stock-indicator--out { margin-bottom: 1rem; display: inline-block; font-size: 13px; font-weight: 500; text-transform: uppercase; color: var(--color-primary); }
.theme-product-description { font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); overflow-wrap: break-word; word-break: break-word; }
.theme-product-description p { margin-bottom: 1em; }
.theme-option-group { margin-top: 1.75rem; }
.theme-option-group__head { margin-bottom: 0.75rem; display: flex; justify-content: space-between; font-size: 12px; font-weight: 500; text-transform: uppercase; }
.theme-option-group__label { margin-bottom: 0.75rem; font-size: 12px; font-weight: 500; text-transform: uppercase; }
.theme-option-group__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-option-pill { min-height: 44px; min-width: 44px; border-radius: 0.5rem; border: 1px solid color-mix(in srgb, var(--color-foreground) 25%, transparent); background: transparent; padding-inline: 0.75rem; font-size: 14px; font-weight: 500; color: var(--color-foreground); }
.theme-option-pill:hover { border-color: var(--color-primary); }
.theme-option-pill.is-active { border-color: var(--color-primary); background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-option-pill--color { border-radius: 999px; padding-inline: 1rem; height: 44px; }
.theme-option-pill--color.is-active { border-color: var(--color-foreground); background: var(--color-foreground); color: var(--color-primary-foreground); }
.theme-quantity-label { margin-top: 1.75rem; margin-bottom: 0.75rem; font-size: 12px; font-weight: 500; text-transform: uppercase; }
.theme-product-form-wrapper { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-quantity-wrapper { display: inline-flex; align-items: center; height: 48px; width: fit-content; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 25%, transparent); }
.theme-quantity-wrapper .theme-qty-minus, .theme-quantity-wrapper .theme-qty-plus { padding-inline: 1rem; background: none; border: none; height: 100%; display: inline-flex; align-items: center; color: var(--color-foreground); }
.theme-qty-input { width: 2.5rem; border: none; background: none; text-align: center; font-size: 14px; -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: 0.75rem;
}
.single-product .single_add_to_cart_button,
.theme-btn-buynow { flex: 1 1 auto; min-width: 160px; }
.theme-btn-primary.single_add_to_cart_button.button { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-details { margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.theme-product-details__heading { margin-bottom: 1rem; font-size: 12px; font-weight: 500; text-transform: uppercase; }
.theme-product-details__list ul { display: flex; flex-direction: column; gap: 0.5rem; }
.theme-product-details__list li { position: relative; padding-left: 1.25rem; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.theme-product-details__list li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; background: var(--color-primary); }
.theme-product-trust-row { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); padding-top: 1.75rem; }
.theme-product-trust-row > div { text-align: center; }
.theme-product-trust-row svg { margin-inline: auto; margin-bottom: 0.5rem; color: var(--color-primary); }
.theme-product-trust-row p { font-size: 12px; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.single-product .woocommerce-product-details__short-description,
.single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }

/* Add-to-cart style 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(--color-primary) !important;
	color: var(--color-primary-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 .2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: .85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-primary-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-primary) !important;
}
.theme-btn-outline.theme-btn-buynow.btn-outline { background: transparent !important; color: var(--color-foreground) !important; }

/* Card compact button override — must come after the global rules */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	height: 40px !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; }

/* Notices — scoped hiding only where the theme already provides feedback */
.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: 1rem auto;
	padding: 1rem 1.5rem;
	border-radius: 0.5rem;
	background: var(--color-card);
	border-left: 4px solid var(--color-primary);
	font-size: 14px;
	list-style: none;
}

/* =========================================================
 * 19. SHOP ARCHIVE
 * ========================================================= */
.shop-archive { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 5rem; }
.shop-archive .page-title { font-size: 2.5rem; margin-bottom: 2rem; font-weight: 600; }
.shop-archive__pagination { margin-top: 3rem; display: flex; justify-content: center; gap: 0.5rem; }
.shop-archive__pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); }
.shop-archive__pagination .page-numbers.current { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.shop-empty-message { grid-column: 1 / -1; }

/* =========================================================
 * 20. WOOCOMMERCE CHECKOUT BLOCK OVERRIDES
 * ========================================================= */
.page-title { font-family: var(--font-display); font-size: 2.25rem; font-weight: 600; }
body.woocommerce-checkout .theme-page-wrap,
body.woocommerce-cart .theme-page-wrap,
body.woocommerce-account .theme-page-wrap { max-width: 80rem; }
body.woocommerce-checkout .site-main { padding-bottom: 4rem; }
body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title { margin-bottom: 2rem; }

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 {
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-foreground);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	border-radius: 0.5rem;
	background-color: var(--color-card);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus { border-color: var(--color-primary); outline: none; }
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important;
	text-transform: var(--btn-text-transform);
	font-weight: 500;
	height: 48px;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: .85; }

body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 0.5rem;
	border-left: 4px solid var(--color-primary);
}

/* Full-width checkout wrappers so WC container queries / is-large can resolve correctly */
body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wc-block-components-sidebar-layout {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box;
}
body.woocommerce-checkout .wp-block-woocommerce-checkout {
	container-type: inline-size;
	container-name: camp-checkout;
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-main,
body.woocommerce-checkout .wc-block-components-sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
	flex: none;
}
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-sidebar {
	background-color: var(--color-secondary);
	border-radius: var(--radius);
	padding: 2rem;
}

/*
 * Force 2 columns on desktop (Contact / form | Order summary).
 * Do NOT rely only on WC's JS `.is-large` class — on some installs the
 * checkout container stays "small" and collapses both columns left.
 */
@media (min-width: 1024px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout,
	body.woocommerce-checkout .wc-block-checkout,
	body.woocommerce-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
		display: grid !important;
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) !important;
		gap: 2.5rem !important;
		align-items: start !important;
		flex-direction: unset !important;
	}
	body.woocommerce-checkout .wc-block-checkout__main,
	body.woocommerce-checkout .wc-block-components-main {
		grid-column: 1 !important;
		grid-row: 1 !important;
		width: 100% !important;
		max-width: none !important;
	}
	body.woocommerce-checkout .wc-block-checkout__sidebar,
	body.woocommerce-checkout .wc-block-components-sidebar {
		grid-column: 2 !important;
		grid-row: 1 !important;
		width: 100% !important;
		max-width: none !important;
		position: sticky;
		top: 7.5rem;
	}
}

/* WC 10+ container-query path (same 2-col layout when the block is wide enough) */
@container camp-checkout (min-width: 700px) {
	.wc-block-components-sidebar-layout {
		display: grid !important;
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) !important;
		gap: 2.5rem !important;
		align-items: start !important;
		flex-direction: unset !important;
	}
	.wc-block-checkout__main,
	.wc-block-components-main {
		grid-column: 1 !important;
		width: 100% !important;
	}
	.wc-block-checkout__sidebar,
	.wc-block-components-sidebar {
		grid-column: 2 !important;
		width: 100% !important;
	}
}

/* Classic shortcode checkout fallback: customer fields | order review */
@media (min-width: 1024px) {
	body.woocommerce-checkout form.woocommerce-checkout {
		display: grid !important;
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) !important;
		gap: 2.5rem !important;
		align-items: start !important;
	}
	body.woocommerce-checkout form.woocommerce-checkout #customer_details {
		grid-column: 1;
		grid-row: 1;
		width: 100%;
		float: none !important;
	}
	body.woocommerce-checkout form.woocommerce-checkout #order_review_heading,
	body.woocommerce-checkout form.woocommerce-checkout #order_review {
		grid-column: 2;
		width: 100%;
		float: none !important;
	}
	body.woocommerce-checkout form.woocommerce-checkout #order_review_heading {
		grid-row: 1;
		align-self: start;
	}
	body.woocommerce-checkout form.woocommerce-checkout #order_review {
		grid-row: 1;
		padding-top: 3rem;
	}
	body.woocommerce-checkout .col2-set .col-1,
	body.woocommerce-checkout .col2-set .col-2 {
		float: none !important;
		width: 100% !important;
	}
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
	width: 100% !important;
	max-width: none !important;
}

/* =========================================================
 * 21. THANK-YOU PAGE
 * ========================================================= */
.theme-thankyou { max-width: 40rem; margin-inline: auto; padding-block: 5rem; text-align: center; }
.theme-thankyou__icon { display: inline-flex; height: 64px; width: 64px; align-items: center; justify-content: center; border-radius: 999px; background: var(--color-primary); color: var(--color-primary-foreground); margin-bottom: 1.5rem; }
.theme-thankyou__heading { font-size: 2.5rem; margin-bottom: 1rem; }
.theme-thankyou__text { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); margin-bottom: 2rem; font-size: 15px; }
.theme-thankyou .btn { margin-bottom: 2rem; }
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: 1.5rem 0 1rem; font-size: 1.5rem; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1rem 2rem; list-style: none; padding: 0; margin: 1.5rem 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; }
@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; }

/* =========================================================
 * 22. 404
 * ========================================================= */
.notfound-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--color-secondary); }
.notfound-page__inner { text-align: center; }
.notfound-page__heading { font-size: 3rem; margin-bottom: 1rem; font-weight: 700; }
.notfound-page__text { font-size: 1.25rem; margin-bottom: 1rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.notfound-page__link { color: var(--color-primary); text-decoration: underline; }
.notfound-page__link:hover { opacity: .9; }
