/* ==========================================================================
   Courage To Go — theme.css
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body), 'Inter', sans-serif;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
:root {
	--font-display: 'Playfair Display', serif;
	--font-body: 'Inter', sans-serif;
	--radius: 0.625rem;
	--shadow-soft: 0 4px 20px -4px rgba(0,0,0,0.10);
	--shadow-elevated: 0 12px 40px -12px rgba(0,0,0,0.22);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--header-height: 84px;
	--btn-radius: 999px;
	--btn-height: 48px;
	--btn-padding: 0.85rem 1.75rem;
	--btn-font-size: 0.875rem;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0.02em;
	--btn-text-transform: none;
}
h1, h2, h3, h4, h5, h6 { font-weight: inherit; font-size: inherit; margin: 0; font-family: var(--font-display); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
img.cover-img, img.hero-bg-img, img.section-bg-img {
	position: absolute; inset: 0; width: 100%; height: 100%;
	object-fit: cover; max-width: none;
}
input, textarea, select { font-family: inherit; font-size: 1rem; }

img:not(.cover-img):not(.hero-bg-img):not(.section-bg-img) { max-width: 100%; height: auto; }

.container-wide { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container-wide { padding: 0 2rem; } }
.section-pad { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 768px) { .section-pad { padding-top: 5rem; padding-bottom: 5rem; } }
.section-pad--lg { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 1024px) { .section-pad--lg { padding-top: 8rem; padding-bottom: 8rem; } }
.section--secondary { background: var(--color-secondary); }
.section--onyx { background: var(--color-onyx); color: var(--color-primary-foreground); position: relative; overflow: hidden; }
.section-relative { position: relative; z-index: 1; }
.section-bg-img { opacity: 0.25; }
.section--onyx__veil { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(46,25,32,0.85), rgba(46,25,32,0.8), rgba(46,25,32,0.95)); }
.scroll-mt { scroll-margin-top: 6rem; }
.eyebrow { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-accent); font-weight: 500; display: block; }
.eyebrow-rule { width: 1.5rem; height: 1px; background: var(--color-accent); display: inline-block; }
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.section-head--centered { text-align: center; }
.section-head__rule-wrap { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.section-head__rule-wrap .rule { width: 1.5rem; height: 1px; background: var(--color-accent); }
.section-head__desc { color: var(--color-muted-foreground); margin-top: 1rem; line-height: 1.7; }
.section-head__desc--light { color: rgba(255,255,255,0.75); }
em { font-style: italic; color: var(--color-accent); font-weight: 400; }
em.hero-heading__gold, .text-gold { background: linear-gradient(135deg, var(--color-gold-deep), var(--color-accent), var(--color-gold-soft), var(--color-accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-heading { font-size: 1.875rem; line-height: 1.15; }
@media (min-width: 768px) { .section-heading { font-size: 2.5rem; } }

/* ---------- Buttons ---------- */
.theme-btn-hero-accent, .theme-btn-primary-pill, .theme-btn-outline-pill, .theme-btn-primary, button.theme-btn-hero-accent {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	font-family: var(--font-body); font-size: 0.875rem; letter-spacing: 0.02em;
	padding: 0.9rem 1.75rem; border-radius: 999px; transition: all 0.3s var(--transition-smooth);
	cursor: pointer; white-space: nowrap;
}
.theme-btn-hero-accent { background: var(--color-accent); color: var(--color-accent-foreground); box-shadow: var(--shadow-elevated); }
.theme-btn-hero-accent:hover { background: color-mix(in srgb, var(--color-accent) 90%, black); }
.theme-btn-primary-pill { background: var(--color-primary); color: var(--color-primary-foreground); box-shadow: var(--shadow-soft); }
.theme-btn-primary-pill:hover { background: color-mix(in srgb, var(--color-primary) 90%, black); box-shadow: var(--shadow-elevated); }
.theme-btn-outline-pill { border: 1px solid var(--color-border); color: var(--color-foreground); background: transparent; }
.theme-btn-outline-pill:hover { border-color: var(--color-accent); color: var(--color-accent); }
.theme-btn-outline-pill--dark { border-color: rgba(255,255,255,0.3); color: var(--color-primary-foreground); }
.theme-btn-outline-pill--dark:hover { border-color: var(--color-accent); color: var(--color-accent); }
.theme-btn-primary { background: var(--color-primary); color: var(--color-primary-foreground); border-radius: var(--radius); padding: 0.9rem 1.5rem; text-align: center; }
.theme-btn-primary--block { display: block; width: 100%; }

/* ---------- Reveal animations (Section 2.1) ---------- */
.reveal-item { opacity: 0; will-change: opacity, transform; transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth); }
.reveal-item[data-reveal="up"] { transform: translateY(28px); }
.reveal-item[data-reveal="left"] { transform: translateX(-24px); }
.reveal-item[data-reveal="scale"] { transform: scale(0.94); }
.reveal-item[data-reveal="fade"] { transform: none; }
.reveal-item.is-visible { opacity: 1; transform: none; }
body.is-customizer .reveal-item, .is-customizer .reveal-item { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none !important; opacity: 1 !important; transform: none !important; }
	.hero-marquee__track, .animate-marquee { animation: none !important; }
}

@keyframes ctgFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes ctgMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- Header ---------- */
/* Sit below the hero marquee on the homepage (matches React top-10 / md:top-11). */
.site-header { position: fixed; top: 2.5rem; left: 0; right: 0; z-index: 50; transition: all 0.3s var(--transition-smooth); background: transparent; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
@media (min-width: 768px) { .site-header { top: 2.75rem; } }
.site-header.is-solid, .site-header.is-scrolled { top: 0; background: color-mix(in srgb, var(--color-onyx) 95%, transparent); backdrop-filter: blur(10px); color: var(--color-primary-foreground); text-shadow: none; box-shadow: var(--shadow-soft); border-bottom: 1px solid rgba(255,255,255,0.08); }
.site-nav { display: flex; align-items: center; justify-content: center; position: relative; gap: 0; height: 5rem; transition: height 0.3s var(--transition-smooth); }
@media (min-width: 1024px) { .site-nav { height: 6rem; } }
.site-header.is-scrolled .site-nav { height: 4rem; }
@media (min-width: 1024px) { .site-header.is-scrolled .site-nav { height: 5rem; } }
.site-nav__mobile-toggle { position: absolute; left: 0; top: 50%; transform: translateY(-50%); z-index: 2; }
.theme-mobile-menu-btn { display: flex; padding: 0.5rem; }
.theme-mobile-menu-icon { width: 20px; height: 14px; position: relative; }
.theme-mobile-menu-icon::before, .theme-mobile-menu-icon::after { content:''; position: absolute; left:0; right:0; height: 2px; background: currentColor; }
.theme-mobile-menu-icon::before { top: 0; }
.theme-mobile-menu-icon::after { bottom: 0; }
.theme-mobile-menu-icon span { display:none; }
@media (min-width: 1024px) { .site-nav__mobile-toggle { display: none; } }
.site-nav__left, .site-nav__right { display: none; align-items: center; }
@media (min-width: 1024px) {
	.site-nav__left, .site-nav__right { display: flex; }
	.site-nav__left { margin-right: 2rem; }
	.site-header.is-scrolled .site-nav__left { margin-right: 1.5rem; }
	.site-nav__right { margin-left: 2rem; }
	.site-header.is-scrolled .site-nav__right { margin-left: 1.5rem; }
}
.site-identity { display: flex; align-items: center; flex-shrink: 0; z-index: 1; margin: 0 2rem; transition: margin 0.3s var(--transition-smooth); }
.site-header.is-scrolled .site-identity { margin: 0 1.25rem; }
/* Circle sizes match React: transparent h-16/sm:h-20/lg:h-24; scrolled h-12/sm:h-14/lg:h-16; solid h-14/sm:h-16/lg:h-20 */
.site-logo-frame {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 4rem;
	width: 4rem;
	border-radius: 50%;
	overflow: hidden;
	background: var(--color-background);
	transition: height 0.3s var(--transition-smooth), width 0.3s var(--transition-smooth);
	flex-shrink: 0;
}
@media (min-width: 640px) { .site-logo-frame { height: 5rem; width: 5rem; } }
@media (min-width: 1024px) { .site-logo-frame { height: 6rem; width: 6rem; } }
.site-header.is-solid:not(.is-scrolled) .site-logo-frame { height: 3.5rem; width: 3.5rem; }
@media (min-width: 640px) { .site-header.is-solid:not(.is-scrolled) .site-logo-frame { height: 4rem; width: 4rem; } }
@media (min-width: 1024px) { .site-header.is-solid:not(.is-scrolled) .site-logo-frame { height: 5rem; width: 5rem; } }
.site-header.is-scrolled .site-logo-frame { height: 3rem; width: 3rem; }
@media (min-width: 640px) { .site-header.is-scrolled .site-logo-frame { height: 3.5rem; width: 3.5rem; } }
@media (min-width: 1024px) { .site-header.is-scrolled .site-logo-frame { height: 4rem; width: 4rem; } }
/* Fill the circle exactly like React: h-full w-full object-contain bg-cream */
.site-logo-img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: contain;
	object-position: center;
	background: var(--color-background);
}
.site-logo-text { font-family: var(--font-display); font-size: 1.1rem; padding: 0 0.5rem; }
.theme-nav-list { display: flex; align-items: center; gap: 2rem; margin: 0; padding: 0; list-style: none; }
.site-header.is-scrolled .theme-nav-list { gap: 1.5rem; }
.theme-nav-list a { font-size: 0.875rem; letter-spacing: 0.02em; position: relative; transition: color 0.25s; white-space: nowrap; }
.site-header.is-scrolled .theme-nav-list a { font-size: 0.75rem; }
.theme-nav-list a:hover { color: var(--color-accent); }
.theme-nav-list a::after { content:''; position: absolute; left:0; bottom:-4px; width:100%; height:1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--transition-smooth); }
.theme-nav-list a:hover::after { transform: scaleX(1); }
.site-nav__actions { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: flex; align-items: center; z-index: 2; }
.theme-cart-toggle { position: relative; padding: 0.5rem; display: flex; }
.theme-cart-count { position: absolute; top: -2px; right: -2px; min-width: 18px; height: 18px; padding: 0 4px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; background: var(--color-accent); color: var(--color-accent-foreground); border-radius: 999px; }
.theme-cart-count:empty { display: none; }
.theme-mobile-menu { display: none; border: 1px solid var(--color-border); border-radius: 0.5rem; padding: 1rem; margin-bottom: 0.5rem; background: var(--color-background); color: var(--color-foreground); text-shadow: none; box-shadow: var(--shadow-soft); }
.theme-mobile-menu.is-open { display: block; }
.theme-mobile-nav-list { display: flex !important; flex-direction: column !important; gap: 1rem; margin: 0; padding: 0; list-style: none; width: 100%; }
.theme-mobile-nav-list li { display: block; width: 100%; }
.theme-mobile-nav-list a { display: block; width: 100%; padding: 0.5rem 0; font-size: 0.875rem; letter-spacing: 0.02em; text-align: left; }
@media (min-width: 1024px) { .theme-mobile-menu { display: none !important; } }

body.theme-no-hero .site-main { padding-top: var(--header-height); }
body.theme-no-hero.single-product .site-main,
body.theme-no-hero .theme-shop-main { padding-top: var(--header-height); }

/* ---------- Marquee ---------- */
.hero-marquee { position: absolute; top: 0; left: 0; right: 0; z-index: 20; overflow: hidden; background: var(--color-primary); padding: 0.6rem 0; border-bottom: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent); }
.hero-marquee__track { display: flex; white-space: nowrap; animation: ctgMarquee 30s linear infinite; width: max-content; }
.hero-marquee__group { display: flex; align-items: center; gap: 2rem; margin: 0 1rem; color: var(--color-primary-foreground); font-size: 0.8rem; letter-spacing: 0.02em; }
.hero-marquee__dot { color: var(--color-accent); }

/* ---------- Hero ---------- */
.hero-section { position: relative; min-height: 100vh; width: 100%; display: flex; align-items: center; overflow: hidden; background: var(--color-background); }
@media (min-width: 1024px) { .hero-section { min-height: 105vh; } }
.hero-video-wrap { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-video-veil { position: absolute; inset: 0; background: linear-gradient(to bottom, color-mix(in srgb, var(--color-onyx) 70%, transparent), color-mix(in srgb, var(--color-onyx) 55%, transparent), color-mix(in srgb, var(--color-onyx) 85%, transparent)); }
.hero-video-radial { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 30%, color-mix(in srgb, var(--color-onyx) 55%, transparent) 100%); }
.hero-dots { position: absolute; inset: 0; opacity: 0.08; pointer-events: none; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 28px 28px; }
.hero-glow { position: absolute; top: -8rem; right: -8rem; width: 42rem; height: 42rem; border-radius: 50%; opacity: 0.3; filter: blur(64px); pointer-events: none; background: radial-gradient(circle, var(--color-accent) 0%, transparent 60%); }
.hero-glow--bottom { top: auto; bottom: -8rem; right: -8rem; }
.hero-glow--top-left { top: -8rem; left: -8rem; right: auto; opacity: 0.25; }
.hero-glow--bottom-left { top: auto; left: -8rem; right: auto; bottom: -8rem; opacity: 0.2; }
.hero-content { position: relative; z-index: 10; width: 100%; padding: 10rem 0 2.5rem; }
@media (min-width: 1024px) { .hero-content { padding: 12rem 0 3rem; } }
.hero-inner { max-width: 72rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem; padding: 0.4rem 0.85rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); color: rgba(255,255,255,0.85); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; }
.hero-badge svg { color: var(--color-accent); flex-shrink: 0; }
.hero-heading { color: #fff; text-align: center; letter-spacing: -0.01em; text-shadow: 0 4px 24px rgba(0,0,0,0.45); font-size: 2.75rem; line-height: 1; }
.hero-heading__line { display: block; white-space: nowrap; }
.hero-heading em { font-style: italic; font-weight: 300; color: inherit; -webkit-text-fill-color: unset; }
.hero-heading em.hero-heading__gold { background: linear-gradient(135deg, var(--color-gold-deep), var(--color-accent), var(--color-gold-soft), var(--color-accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: italic; }
@media (min-width: 640px) { .hero-heading { font-size: 3.5rem; } }
@media (min-width: 768px) { .hero-heading { font-size: 4.25rem; } }
@media (min-width: 1024px) { .hero-heading { font-size: 5.5rem; } }
@media (min-width: 1280px) { .hero-heading { font-size: 7.5rem; } }
.hero-subtitle { margin-top: 2rem; color: rgba(255,255,255,0.95); font-family: var(--font-display); font-size: 1.15rem; line-height: 1.4; max-width: 48rem; }
.hero-subtitle__word { color: var(--color-accent); white-space: nowrap; }
@media (min-width: 640px) { .hero-subtitle { font-size: 1.4rem; } }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.7rem; } }
@media (min-width: 1024px) { .hero-subtitle { font-size: 2rem; } }
.hero-cta-wrap { margin-top: 2rem; display: flex; justify-content: center; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 3rem; max-width: 34rem; width: 100%; border-top: 1px solid rgba(255,255,255,0.3); padding-top: 1.5rem; text-align: center; }
.hero-stat__value { font-family: var(--font-display); font-size: 1.4rem; color: #fff; font-variant-numeric: tabular-nums; }
@media (min-width: 768px) { .hero-stat__value { font-size: 1.7rem; } }
.hero-stat__label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card { position: relative; background: var(--color-background); border-radius: 1.25rem; border: 1px solid var(--color-border); padding: 1.75rem; min-height: 16rem; display: flex; flex-direction: column; overflow: hidden; transition: all 0.5s var(--transition-smooth); }
.feature-card:hover { border-color: color-mix(in srgb, var(--color-accent) 60%, transparent); box-shadow: var(--shadow-elevated); transform: translateY(-6px); }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--color-accent), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.7s ease-out; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card__glow { pointer-events: none; position: absolute; top: -5rem; left: -5rem; width: 16rem; height: 16rem; border-radius: 50%; opacity: 0; background: radial-gradient(circle, color-mix(in srgb, var(--color-accent) 18%, transparent) 0%, transparent 70%); filter: blur(48px); transition: opacity 0.7s; }
.feature-card:hover .feature-card__glow { opacity: 1; }
.feature-card__title { position: relative; z-index: 1; font-size: 1.4rem; margin-bottom: 0.75rem; transition: color 0.4s; }
.feature-card:hover .feature-card__title { color: var(--color-accent); }
.feature-card__desc { position: relative; z-index: 1; color: var(--color-muted-foreground); font-size: 0.9rem; line-height: 1.6; transition: color 0.5s; }
.feature-card:hover .feature-card__desc { color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
/* Rule is the bottom anchor; decorative icon lives here and paints into the card corner.
   Keep rule position:static so the absolute icon anchors to .feature-card, not the rule. */
.feature-card__rule { position: static; z-index: 1; display: block; margin-top: auto; padding-top: 1.25rem; width: 100%; height: auto; background: none; }
.feature-card__rule-line { display: block; width: 1.5rem; height: 1px; background: color-mix(in srgb, var(--color-accent) 40%, transparent); transition: all 0.5s; }
.feature-card:hover .feature-card__rule-line { width: 3rem; background: var(--color-accent); }
.feature-card__icon { pointer-events: none; position: absolute; bottom: -1.5rem; right: -1.5rem; width: 10rem; height: 10rem; color: color-mix(in srgb, var(--color-accent) 10%, transparent); transition: all 0.7s ease-out; z-index: 0; }
@media (min-width: 768px) { .feature-card__icon { width: 12rem; height: 12rem; } }
.feature-card__icon svg { display: block; width: 100%; height: 100%; }
.feature-card:hover .feature-card__icon { color: color-mix(in srgb, var(--color-accent) 25%, transparent); transform: scale(1.1) rotate(-6deg) translateY(-4px); }
@media (min-width: 768px) { .feature-card__title { font-size: 1.6rem; } }

/* ---------- Framework strip ---------- */
.framework-strip__head { text-align: center; margin-bottom: 2rem; }
.framework-strip__eyebrow { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.6rem; }
.framework-strip__heading { font-size: 1.35rem; line-height: 1.4; }
@media (min-width: 768px) { .framework-strip__heading { font-size: 1.7rem; } }
.framework-strip__grid { display: grid; grid-template-columns: 1fr; gap: 0.85rem; align-items: stretch; }
@media (min-width: 640px) { .framework-strip__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .framework-strip__grid { grid-template-columns: repeat(4, 1fr); } }
.framework-strip__item { position: relative; display: flex; min-width: 0; }
.framework-strip__card { flex: 1; border-radius: 1rem; border: 1px solid var(--color-border); background: var(--color-background); padding: 1.35rem; transition: all 0.3s; }
.framework-strip--dark .framework-strip__card { border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); }
.framework-strip__card:hover { border-color: color-mix(in srgb, var(--color-accent) 60%, transparent); }
.framework-strip__card-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.framework-strip__num { flex-shrink: 0; width: 1.75rem; height: 1.75rem; border-radius: 50%; background: var(--color-accent); color: var(--color-accent-foreground); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.85rem; }
.framework-strip__title { font-size: 1.1rem; }
.framework-strip--dark .framework-strip__title { color: var(--color-primary-foreground); }
.framework-strip__caption { font-size: 0.85rem; color: var(--color-muted-foreground); line-height: 1.6; }
.framework-strip--dark .framework-strip__caption { color: rgba(255,255,255,0.7); }
.framework-strip__arrow { display: none; position: absolute; top: 50%; right: -0.75rem; transform: translateY(-50%); color: color-mix(in srgb, var(--color-accent) 60%, transparent); }
@media (min-width: 1024px) { .framework-strip__arrow { display: block; } }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; margin-top: 3.5rem; }
@media (min-width: 768px) { .about-grid { margin-top: 5rem; } }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.about-media { position: relative; max-width: 28rem; margin: 0 auto; }
@media (min-width: 1024px) { .about-media { margin: 0 2rem 0 0; max-width: none; } }
.about-media__frame { position: relative; aspect-ratio: 4/5; border-radius: 1.25rem; overflow: hidden; background: var(--color-primary); box-shadow: var(--shadow-elevated); }
.about-media__badge { position: absolute; top: 1.25rem; right: 1.25rem; background: var(--color-accent); color: var(--color-accent-foreground); border-radius: 0.85rem; padding: 0.7rem 1rem; box-shadow: var(--shadow-elevated); display: flex; align-items: center; gap: 0.75rem; }
.about-media__badge svg { width: 28px; height: 28px; flex-shrink: 0; }
.about-media__badge-title { font-family: var(--font-display); font-size: 1.3rem; }
.about-media__badge-sub { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85; }
.about-media__logo { position: absolute; bottom: -2rem; left: 0.5rem; width: 7rem; height: 7rem; border-radius: 50%; overflow: hidden; border: 6px solid var(--color-background); box-shadow: var(--shadow-elevated); background: var(--color-background); }
@media (min-width: 768px) { .about-media__logo { bottom: -2.5rem; left: -1rem; width: 9rem; height: 9rem; } }
.about-media__logo .site-logo-img { width: 100% !important; height: 100% !important; object-fit: contain; }
.about-copy__eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.about-section__heading { margin-bottom: 1.25rem; font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .about-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section__heading { font-size: 3.75rem; } }
.about-copy__p { color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 1.5rem; max-width: 36rem; }
.about-copy__list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.about-copy__list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; }
.about-copy__check { flex-shrink: 0; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--color-accent); color: var(--color-accent-foreground); display: flex; align-items: center; justify-content: center; }
.about-copy__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }

/* ---------- Services ---------- */
.services-heading { font-size: 1.875rem; }
@media (min-width: 768px) { .services-heading { font-size: 3rem; } }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card { background: var(--color-background); border-radius: 1.25rem; border: 1px solid var(--color-border); padding: 1.75rem; display: flex; flex-direction: column; height: 100%; transition: all 0.3s; }
.service-card:hover { border-color: color-mix(in srgb, var(--color-accent) 60%, transparent); box-shadow: var(--shadow-elevated); transform: translateY(-4px); }
.service-card__icon { width: 3rem; height: 3rem; border-radius: 0.85rem; background: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: all 0.3s; }
.service-card:hover .service-card__icon { background: var(--color-accent); color: var(--color-accent-foreground); }
.service-card__title { font-size: 1.35rem; margin-bottom: 0.5rem; transition: color 0.3s; }
.service-card:hover .service-card__title { color: var(--color-accent); }
.service-card__desc { font-size: 0.9rem; color: var(--color-muted-foreground); line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.service-card__cta { align-self: flex-start; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; transition: color 0.3s; }
.service-card__cta:hover { color: var(--color-accent); }

/* ---------- Shop ---------- */
.shop-head { text-align: center; margin-bottom: 3rem; }
.shop-heading { font-size: 1.875rem; margin: 0.5rem 0 1rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
.shop-head__desc { max-width: 36rem; margin: 0 auto 2rem; color: var(--color-muted-foreground); line-height: 1.7; }
.collection-banner { margin-bottom: 3rem; border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--color-border); background: var(--color-secondary); display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .collection-banner { grid-template-columns: repeat(2, 1fr); align-items: center; } }
.collection-banner__media { position: relative; aspect-ratio: 3/2; }
@media (min-width: 768px) { .collection-banner__media { aspect-ratio: auto; height: 100%; } }
.collection-banner__copy { padding: 1.5rem; }
@media (min-width: 768px) { .collection-banner__copy { padding: 2.5rem; } }
.collection-banner__title { font-size: 1.5rem; margin: 0.5rem 0 0.75rem; }
@media (min-width: 768px) { .collection-banner__title { font-size: 1.9rem; } }
.collection-banner__desc { color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 1rem; }
.collection-banner__note { font-size: 0.875rem; color: var(--color-muted-foreground); }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; margin-bottom: 3rem; }
@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)); gap: 2rem; } }
.theme-product-card-wrap { display: flex; height: 100%; }
.theme-product-card { position: relative; display: flex; flex-direction: column; height: 100%; width: 100%; background: var(--color-background); border-radius: 1.5rem; border: 1px solid var(--color-border); overflow: hidden; transition: all 0.5s var(--transition-smooth); }
.theme-product-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-4px); }
.theme-product-card > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--color-secondary); }
.theme-product-card__image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease-out; }
.theme-product-card:hover .theme-product-card__image-wrapper img { transform: scale(1.08); }
.theme-product-card__veil { position: absolute; inset: 0; top: 0; height: 6rem; background: linear-gradient(to bottom, color-mix(in srgb, var(--color-primary) 40%, transparent), transparent); }
.theme-badge { position: absolute; top: 1rem; left: 1rem; z-index: 3; padding: 0.4rem 0.85rem; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; border-radius: 999px; }
.theme-badge--dark { background: var(--color-foreground); color: var(--color-background); }
.theme-badge--primary { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-card__price-chip { position: absolute; top: 1rem; right: 1rem; z-index: 3; background: var(--color-accent); color: var(--color-accent-foreground); border-radius: 999px; padding: 0.4rem 0.9rem; font-family: var(--font-display); font-size: 0.9rem; box-shadow: var(--shadow-elevated); }
.theme-product-card__hover-cta { position: absolute; bottom: 1rem; right: 1rem; z-index: 3; width: 2.75rem; height: 2.75rem; border-radius: 50%; background: var(--color-background); color: var(--color-foreground); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-elevated); opacity: 0; transform: translateY(0.5rem); transition: all 0.3s; }
.theme-product-card:hover .theme-product-card__hover-cta { opacity: 1; transform: translateY(0); }
.theme-product-card__info { flex: 1; display: flex; flex-direction: column; padding: 1.25rem 1.4rem; }
.theme-product-card__category { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.5rem; }
.theme-product-card__category a { color: inherit; pointer-events: auto; position: relative; z-index: 4; }
.theme-product-card__title { font-size: 1.15rem; line-height: 1.4; transition: color 0.3s; min-width: 0; }
.theme-product-card:hover .theme-product-card__title:not(.is-muted) { color: var(--color-accent); }
.theme-product-card__title.is-muted { color: var(--color-muted-foreground); }
.theme-product-card__footer { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--color-border); display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.theme-product-card__meta { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.theme-product-card__price { font-family: var(--font-display); font-size: 1rem; flex-shrink: 0; }
.theme-product-card__price .price ins { text-decoration: none; }
.theme-empty-state { text-align: center; padding: 4rem 0; color: var(--color-muted-foreground); }

.newsletter-banner { display: flex; flex-direction: column; sm-flex-direction: row; align-items: flex-start; gap: 1rem; margin-bottom: 3rem; background: color-mix(in srgb, var(--color-accent) 10%, transparent); border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent); border-radius: 1.25rem; padding: 1.5rem; }
@media (min-width: 640px) { .newsletter-banner { flex-direction: row; align-items: center; } }
.newsletter-banner__icon { width: 3rem; height: 3rem; border-radius: 50%; background: var(--color-accent); color: var(--color-accent-foreground); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.newsletter-banner__title { font-size: 1.1rem; margin-bottom: 0.5rem; }
.newsletter-banner__text { font-size: 0.9rem; color: var(--color-muted-foreground); line-height: 1.6; }

.gallery-strip__head { text-align: center; margin-bottom: 1.5rem; }
.gallery-strip__title { font-size: 1.5rem; margin-top: 0.5rem; }
.gallery-strip { position: relative; margin: 0 -1rem; }
.gallery-strip__scroller { display: flex; gap: 1rem; overflow-x: auto; padding: 0 1rem 1rem; scroll-snap-type: x mandatory; scrollbar-width: none; }
.gallery-strip__scroller::-webkit-scrollbar { display: none; }
.gallery-strip__item { position: relative; flex-shrink: 0; width: 75vw; aspect-ratio: 4/5; border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--color-border); box-shadow: var(--shadow-soft); background: var(--color-secondary); scroll-snap-align: center; transition: transform 0.3s; }
.gallery-strip__item:hover { transform: scale(1.02); }
@media (min-width: 640px) { .gallery-strip__item { width: 55vw; } }
@media (min-width: 768px) { .gallery-strip__item { width: 360px; } }
.gallery-strip__fade { position: absolute; top: 0; bottom: 0; width: 3rem; pointer-events: none; }
.gallery-strip__fade--left { left: 0; background: linear-gradient(to right, var(--color-background), transparent); }
.gallery-strip__fade--right { right: 0; background: linear-gradient(to left, var(--color-background), transparent); }

/* ---------- Programs / Events ---------- */
.programs-heading, .events-heading { font-size: 1.875rem; margin: 0.5rem 0 1rem; }
@media (min-width: 768px) { .programs-heading, .events-heading { font-size: 2.75rem; } }
.programs-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .programs-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.program-card { display: flex; flex-direction: column; height: 100%; background: var(--color-background); border-radius: 1.5rem; border: 1px solid var(--color-border); padding: 1.75rem; transition: all 0.3s; }
.program-card:hover { border-color: color-mix(in srgb, var(--color-accent) 60%, transparent); box-shadow: var(--shadow-elevated); transform: translateY(-4px); }
.program-card__tag { align-self: flex-start; display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0.75rem; border-radius: 999px; background: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.program-card__title { font-size: 1.35rem; margin-bottom: 0.75rem; transition: color 0.3s; }
.program-card:hover .program-card__title { color: var(--color-accent); }
.program-card__desc { font-size: 0.9rem; color: var(--color-muted-foreground); line-height: 1.6; flex: 1; margin-bottom: 1.5rem; }
.program-card__cta { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }

.events-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .events-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.event-card { display: flex; flex-direction: column; height: 100%; background: var(--color-background); border-radius: 1.5rem; border: 1px solid var(--color-border); padding: 1.75rem; transition: all 0.3s; }
.event-card:hover { border-color: color-mix(in srgb, var(--color-accent) 60%, transparent); box-shadow: var(--shadow-elevated); transform: translateY(-4px); }
.event-card__head { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.event-card__icon { flex-shrink: 0; width: 2.75rem; height: 2.75rem; border-radius: 0.85rem; background: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.event-card:hover .event-card__icon { background: var(--color-accent); color: var(--color-accent-foreground); }
.event-card__title { font-size: 1.35rem; line-height: 1.3; transition: color 0.3s; }
.event-card:hover .event-card__title { color: var(--color-accent); }
.event-card__date { margin-top: 0.25rem; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-muted-foreground); }
.event-card__desc { font-size: 0.9rem; color: var(--color-muted-foreground); line-height: 1.6; flex: 1; margin-bottom: 1.5rem; }
.event-card__cta { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 0.5rem; background: var(--color-primary); color: var(--color-primary-foreground); padding: 0.6rem 1.25rem; border-radius: 999px; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; box-shadow: var(--shadow-soft); transition: all 0.3s; }
.event-card__cta:hover { box-shadow: var(--shadow-elevated); background: color-mix(in srgb, var(--color-primary) 90%, black); }

/* ---------- Speaking ---------- */
.speaking-heading, .stories-heading { font-size: 1.875rem; margin: 0.5rem 0; }
@media (min-width: 768px) { .speaking-heading, .stories-heading { font-size: 3rem; } }
.talks-block { margin-top: 3.5rem; }
.talks-block__title, .reel-block__title { font-size: 1.5rem; margin-top: 0.5rem; }
.talks-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
@media (min-width: 640px) { .talks-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.talk-card { display: flex; align-items: flex-start; gap: 1rem; background: var(--color-background); border-radius: 1.25rem; border: 1px solid var(--color-border); padding: 1.5rem; transition: all 0.3s; }
.talk-card:hover { border-color: color-mix(in srgb, var(--color-accent) 60%, transparent); box-shadow: var(--shadow-elevated); transform: translateY(-4px); }
.talk-card__icon { flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: 0.85rem; background: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.talk-card:hover .talk-card__icon { background: var(--color-accent); color: var(--color-accent-foreground); }
.talk-card__title { font-size: 1.1rem; line-height: 1.3; margin-bottom: 0.5rem; transition: color 0.3s; }
.talk-card:hover .talk-card__title { color: var(--color-accent); }
.talk-card__desc { font-size: 0.9rem; color: var(--color-muted-foreground); line-height: 1.6; }
.reel-block { margin-top: 3.5rem; max-width: 56rem; margin-left: auto; margin-right: auto; }
.reel-block__frame { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--color-border); box-shadow: var(--shadow-elevated); background: var(--color-onyx); margin-top: 1.5rem; }
.reel-block__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.reel-block__ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; }

/* ---------- Stories ---------- */
.stories-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .stories-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.story-card { border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--color-border); box-shadow: var(--shadow-elevated); background: var(--color-background); }
.story-card__media { position: relative; aspect-ratio: 16/9; background: var(--color-onyx); }
.story-card__media video, .story-card__media iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.story-card__body { padding: 1.25rem 1.5rem; }
.story-card__body--split { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; }
.story-card__tag { display: flex; align-items: center; gap: 0.5rem; color: var(--color-accent); }
.story-card__tag span { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; }
.story-card__title { font-size: 1.15rem; margin-top: 0.5rem; }
.story-card__open { flex-shrink: 0; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--color-muted-foreground); transition: color 0.3s; }
.story-card__open:hover { color: var(--color-accent); }

/* ---------- Podcast ---------- */
.pill-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.85rem; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-accent) 40%, transparent); background: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1.25rem; }
.podcast-heading { font-size: 2.25rem; line-height: 1.05; margin-bottom: 1rem; }
@media (min-width: 768px) { .podcast-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .podcast-heading { font-size: 3.75rem; } }
.podcast-subheading { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--color-accent); margin-bottom: 1.25rem; }

/* ---------- Crew ---------- */
.crew-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: flex-start; margin-bottom: 3.5rem; }
@media (min-width: 1024px) { .crew-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.crew-media { position: relative; max-width: 28rem; margin: 0 auto; }
@media (min-width: 1024px) { .crew-media { margin: 0; } }
.crew-media__ring { position: absolute; inset: -0.75rem; border-radius: 2rem; border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent); pointer-events: none; }
.crew-media__frame { position: relative; aspect-ratio: 4/5; border-radius: 1.75rem; overflow: hidden; box-shadow: var(--shadow-elevated); background: var(--color-background); }
.crew-copy__eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.crew-heading { margin-bottom: 1.25rem; font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .crew-heading { font-size: 3rem; } }
.crew-copy__p { color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 1.25rem; }
.crew-copy__intro { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-accent); margin-bottom: 1rem; }
.crew-copy__list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.crew-copy__list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; line-height: 1.6; }
.crew-questions-card { border-radius: 1.25rem; border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent); background: color-mix(in srgb, var(--color-accent) 10%, transparent); padding: 1.75rem; margin-bottom: 2rem; }
.crew-questions-card__intro { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; margin-bottom: 1rem; }
.crew-questions-card__list { display: grid; grid-template-columns: 1fr; gap: 0.5rem 1.5rem; }
@media (min-width: 640px) { .crew-questions-card__list { grid-template-columns: repeat(2, 1fr); } }
.crew-questions-card__list li { font-family: var(--font-display); font-size: 1.05rem; display: flex; align-items: center; gap: 0.5rem; }
.crew-questions-card__arrow { color: var(--color-accent); }
.crew-questions-card__note { margin-top: 1.25rem; font-size: 0.9rem; color: var(--color-muted-foreground); line-height: 1.6; }

/* ---------- Founder ---------- */
.section-dots { position: absolute; inset: 0; opacity: 0.06; pointer-events: none; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 28px 28px; }
.founder-head { max-width: 48rem; margin-bottom: 3.5rem; }
.founder-heading { font-size: 2.25rem; line-height: 1.05; letter-spacing: -0.01em; margin-top: 0.5rem; }
@media (min-width: 768px) { .founder-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .founder-heading { font-size: 3.75rem; } }
.founder-role { margin-top: 1rem; color: rgba(255,255,255,0.6); font-size: 0.9rem; letter-spacing: 0.02em; }
.founder-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: flex-start; }
@media (min-width: 1024px) { .founder-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.founder-media { position: relative; max-width: 28rem; margin: 0 auto; }
@media (min-width: 1024px) { .founder-media { margin: 0; position: sticky; top: 7rem; } }
.founder-media__ring { position: absolute; inset: -0.75rem; border-radius: 2rem; border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent); pointer-events: none; }
.founder-media__glow { position: absolute; top: -2rem; left: -2rem; width: 6rem; height: 6rem; border-radius: 50%; opacity: 0.5; filter: blur(32px); background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%); pointer-events: none; }
.founder-media__frame { position: relative; aspect-ratio: 4/5; border-radius: 1.75rem; overflow: hidden; box-shadow: var(--shadow-elevated); background: var(--color-background); }
.founder-media__veil { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-onyx) 40%, transparent), transparent, transparent); }
.founder-media__floating-badge { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; display: flex; align-items: center; gap: 0.75rem; border-radius: 1rem; background: color-mix(in srgb, var(--color-onyx) 70%, transparent); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); padding: 0.75rem 1rem; }
.founder-media__badge-photo { flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: 50%; overflow: hidden; border: 1px solid color-mix(in srgb, var(--color-accent) 40%, transparent); position: relative; }
.founder-media__badge-eyebrow { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-accent); }
.founder-media__badge-title { font-family: var(--font-display); font-size: 0.9rem; }
.founder-quote { position: relative; margin-bottom: 2.5rem; padding-left: 1.5rem; border-left: 2px solid color-mix(in srgb, var(--color-accent) 60%, transparent); }
.founder-quote__mark { position: absolute; top: -1.5rem; left: -0.25rem; font-family: var(--font-display); font-size: 4.5rem; color: color-mix(in srgb, var(--color-accent) 30%, transparent); line-height: 1; user-select: none; }
.founder-quote p { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; line-height: 1.4; color: rgba(255,255,255,0.95); }
.founder-bio { display: flex; flex-direction: column; gap: 1.25rem; color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 40rem; }
.founder-bio em { color: var(--color-accent); font-style: normal; font-weight: 500; }
.founder-stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; max-width: 34rem; }
.founder-stat { border-radius: 1rem; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); padding: 1rem; text-align: center; }
.founder-stat__value { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; background: linear-gradient(135deg, var(--color-gold-deep), var(--color-accent), var(--color-gold-soft), var(--color-accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.founder-stat__label { margin-top: 0.4rem; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.founder-ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }

/* ---------- FAQ ---------- */
.faq-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .faq-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .faq-heading { font-size: 3.75rem; } }
.faq-split { display: grid; grid-template-columns: 1fr; gap: 1.25rem; align-items: flex-start; max-width: 72rem; margin: 0 auto; }
@media (min-width: 1024px) { .faq-split { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem; } }
.faq-split__list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-split__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; border-radius: 0.85rem; padding: 1rem 1.25rem; border: 1px solid var(--color-border); background: var(--color-background); transition: all 0.3s; }
.faq-split__btn:hover { border-color: color-mix(in srgb, var(--color-accent) 50%, transparent); box-shadow: var(--shadow-soft); }
.faq-split__btn.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); box-shadow: var(--shadow-elevated); }
.faq-split__q { font-family: var(--font-display); font-size: 1rem; line-height: 1.4; }
.faq-split__icon { flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 0.5rem; border: 1px solid var(--color-border); background: var(--color-background); display: flex; align-items: center; justify-content: center; }
.faq-split__btn.is-active .faq-split__icon { border-color: color-mix(in srgb, var(--color-accent) 40%, transparent); background: color-mix(in srgb, var(--color-accent) 15%, transparent); color: var(--color-accent); }
.faq-split__icon .icon-minus { display: none; }
.faq-split__btn.is-active .icon-plus { display: none; }
.faq-split__btn.is-active .icon-minus { display: block; }
.faq-split__panel { background: var(--color-primary); color: var(--color-primary-foreground); border-radius: 1.25rem; padding: 1.75rem; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column; min-height: 20rem; }
@media (min-width: 1024px) { .faq-split__panel { position: sticky; top: 7rem; } }
.faq-split__panel-q { font-size: 1.35rem; margin-bottom: 1.25rem; line-height: 1.4; color: var(--color-accent); }
.faq-split__panel-rule { height: 1px; width: 100%; background: color-mix(in srgb, var(--color-primary-foreground) 20%, transparent); margin-bottom: 1.25rem; }
.faq-split__panel-a { font-size: 0.95rem; line-height: 1.7; color: color-mix(in srgb, var(--color-primary-foreground) 85%, transparent); flex: 1; }
.faq-split__panel-cta { margin-top: 2rem; align-self: flex-start; display: inline-flex; align-items: center; gap: 0.5rem; background: var(--color-accent); color: var(--color-accent-foreground); border-radius: 999px; padding: 0.75rem 1.5rem; font-size: 0.85rem; box-shadow: var(--shadow-soft); transition: box-shadow 0.3s; }
.faq-split__panel-cta:hover { box-shadow: var(--shadow-elevated); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; width: 100%; min-height: 55vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--color-primary); }
@media (min-width: 768px) { .cta-band { min-height: 65vh; } }
.cta-band__bg { opacity: 0.4; }
.cta-band__veil { position: absolute; inset: 0; background: linear-gradient(to bottom, color-mix(in srgb, var(--color-primary) 80%, transparent), color-mix(in srgb, var(--color-primary) 85%, transparent), var(--color-onyx)); }
.cta-band__content { position: relative; z-index: 1; text-align: center; padding: 5rem 1.5rem; max-width: 40rem; }
.cta-band__star { color: var(--color-accent); margin: 0 auto 1rem; display: block; }
.cta-band__title { font-size: 1.875rem; margin-bottom: 1rem; color: var(--color-primary-foreground); }
@media (min-width: 768px) { .cta-band__title { font-size: 3rem; } }
.cta-band__desc { color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent); margin-bottom: 2rem; line-height: 1.7; }

/* ---------- Contact ---------- */
.contact-head { max-width: 48rem; margin-bottom: 3.5rem; }
.contact-title { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3.75rem; } }
.contact-head__desc { color: rgba(255,255,255,0.7); margin-top: 1.25rem; font-size: 1.05rem; line-height: 1.7; max-width: 36rem; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 2.5rem; } }
.contact-info { position: relative; border-radius: 1.5rem; background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.1); padding: 2rem; box-shadow: var(--shadow-elevated); height: 100%; }
.contact-info__badge { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; padding: 0.4rem 0.85rem; border-radius: 999px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.contact-info__title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-info__desc { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.6; margin-bottom: 2rem; }
.contact-info__rows { display: flex; flex-direction: column; gap: 1rem; }
.contact-info__row { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; border-radius: 1rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); transition: background 0.3s; }
.contact-info__row:hover { background: rgba(255,255,255,0.1); }
.contact-info__row-icon { flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: 0.85rem; background: var(--color-accent); color: var(--color-accent-foreground); display: flex; align-items: center; justify-content: center; }
.contact-info__row-text { min-width: 0; flex: 1; }
.contact-info__row-label { display: block; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.contact-info__row-value { display: block; font-size: 0.95rem; word-break: break-word; }
.contact-info__row-arrow { margin-top: 0.25rem; color: rgba(255,255,255,0.4); flex-shrink: 0; transition: all 0.3s; }
.contact-info__row:hover .contact-info__row-arrow { color: var(--color-accent); transform: translate(2px, -2px); }
.contact-info__meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-info__meta-item { display: flex; align-items: center; gap: 0.6rem; }
.contact-info__meta-item svg { color: var(--color-accent); flex-shrink: 0; }
.contact-info__meta-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.contact-info__meta-value { font-size: 0.85rem; color: rgba(255,255,255,0.85); }
.contact-form-wrap { position: relative; border-radius: 1.5rem; background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.1); padding: 1.75rem; box-shadow: var(--shadow-soft); height: 100%; display: flex; flex-direction: column; }
@media (min-width: 768px) { .contact-form-wrap { padding: 2.5rem; } }
.contact-form { display: flex; flex-direction: column; flex: 1; gap: 1.25rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .contact-form__row { grid-template-columns: repeat(2, 1fr); } }
.contact-form__field { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-form__field--grow { flex: 1; }
.contact-form__field label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.6rem 0; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,0.15); color: #fff; font-size: 0.95rem; transition: border-color 0.3s; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-accent); }
.contact-form textarea { resize: none; min-height: 140px; }
.contact-form__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.contact-form__chip { padding: 0.5rem 1rem; font-size: 0.75rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.8); transition: all 0.3s; }
.contact-form__chip:hover { border-color: var(--color-accent); color: var(--color-accent); }
.contact-form__chip.is-active { background: var(--color-accent); color: var(--color-accent-foreground); border-color: var(--color-accent); box-shadow: var(--shadow-soft); }
.contact-form__footer { display: flex; flex-direction: column; gap: 1rem; padding-top: 0.5rem; }
@media (min-width: 640px) { .contact-form__footer { flex-direction: row; align-items: center; justify-content: space-between; } }
.contact-form__note { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
/* display:flex must never apply while hidden — author CSS overrides the UA [hidden] rule. */
.contact-form[hidden],
.contact-success,
.contact-success[hidden],
#theme-contact-success:not(.is-visible) {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}
.contact-success.is-visible,
#theme-contact-success.is-visible {
	display: flex !important;
	visibility: visible !important;
	pointer-events: auto !important;
	flex: 1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 3rem 1rem;
}
.contact-success__icon { width: 4rem; height: 4rem; border-radius: 50%; background: var(--color-accent); color: var(--color-accent-foreground); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.contact-success h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-success p { color: rgba(255,255,255,0.7); max-width: 24rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--color-border); background: var(--color-primary); color: var(--color-primary-foreground); }
.site-footer__inner { padding-top: 3.5rem; padding-bottom: 1.5rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-top: 5rem; padding-bottom: 2rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.site-footer__logo-link { display: flex; align-items: center; gap: 0.75rem; }
.site-footer__logo-frame { display: flex; align-items: center; justify-content: center; width: 4rem; height: 4rem; border-radius: 50%; overflow: hidden; background: var(--color-background); border: 2px solid var(--color-accent); flex-shrink: 0; }
@media (min-width: 1024px) { .site-footer__logo-frame { width: 5rem; height: 5rem; } }
.site-footer__logo-frame .site-logo-img { width: 100% !important; height: 100% !important; object-fit: contain; }
.site-footer__name { font-family: var(--font-display); font-size: 1.1rem; }
.site-footer__tagline { margin-top: 1.25rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); max-width: 24rem; line-height: 1.6; }
.site-footer__socials { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
.site-footer__social-btn { width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 0.3s; }
.site-footer__social-btn:hover { background: var(--color-accent); color: var(--color-accent-foreground); border-color: var(--color-accent); }
.site-footer__heading { font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-accent); }
.site-footer__nav-list, .site-footer__contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__nav-list a { font-size: 0.9rem; color: rgba(255,255,255,0.7); text-transform: capitalize; transition: color 0.3s; }
.site-footer__nav-list a:hover { color: var(--color-accent); }
.site-footer__contact-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.site-footer__contact-list svg { color: var(--color-accent); flex-shrink: 0; }
.site-footer__contact-list a { word-break: break-all; }
.site-footer__contact-list a:hover { color: var(--color-accent); }
.site-footer__bottom { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.15); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; } }
.site-footer__copyright, .site-footer__credit { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.site-footer__credit:hover { color: var(--color-accent); }

/* ---------- Cart drawer + overlay ---------- */
#theme-cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.25); z-index: 60; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }
#theme-cart-drawer { position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 420px; background: var(--color-background); color: var(--color-foreground); z-index: 61; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s var(--transition-smooth); }
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__header h2 { font-size: 1.1rem; font-weight: 700; }
.theme-cart-drawer__close { padding: 0.25rem; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 1rem; }
.theme-cart-drawer__empty svg { color: var(--color-muted-foreground); }
.theme-cart-drawer__empty p { color: var(--color-muted-foreground); }
.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__image { width: 5rem; height: 6rem; flex-shrink: 0; background: var(--color-secondary); overflow: hidden; display: block; }
.theme-cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__title { font-size: 0.9rem; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-item__price { font-size: 0.85rem; color: var(--color-muted-foreground); margin-top: 0.15rem; }
.theme-cart-item__variation { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { width: 1.5rem; height: 1.5rem; display: flex; align-items: center; justify-content: center; border-radius: 0.25rem; transition: background 0.2s; }
.theme-cart-item__qty-btn:hover { background: var(--color-secondary); }
.theme-cart-item__qty { font-size: 0.85rem; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-item__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 0.9rem; }

/* ---------- WooCommerce: add to cart button (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 {
	background-color: var(--color-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;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-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(--color-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; }

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

/* ---------- Single product page ---------- */
.single-product .site-main { padding-top: calc(var(--header-height) + 1.5rem); }
.theme-back-link-wrap { margin-bottom: 1.5rem; }
.theme-back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--color-muted-foreground); transition: color 0.3s; }
.theme-back-link:hover { color: var(--color-foreground); }
.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 4rem; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 3.5rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery__main { position: relative; aspect-ratio: 3/4; background: var(--color-secondary); overflow: hidden; border-radius: 1rem; margin-bottom: 1rem; }
.theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.5rem; max-width: 100%; }
.theme-product-thumb { position: relative; width: 4.5rem; height: 4.5rem; overflow: hidden; border-radius: 0.5rem; border: 2px solid transparent; opacity: 0.6; transition: all 0.3s; }
.theme-product-thumb.is-active, .theme-product-thumb:hover { opacity: 1; border-color: var(--color-primary); }
.theme-product-info__category { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-muted-foreground); }
.theme-product-info__category a { color: inherit; }
.product-title { font-family: var(--font-body); font-weight: 600; font-size: 1.5rem; margin-top: 0.5rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .product-title { font-size: 1.85rem; } }
.theme-product-info__price { font-size: 1.5rem; font-weight: 600; color: var(--color-primary); margin-bottom: 1.25rem; }
.theme-product-info__price .price { display: inline; }
.theme-stock-indicator { display: inline-block; font-size: 0.85rem; font-weight: 600; padding: 0.35rem 0.85rem; border-radius: 999px; margin-bottom: 1rem; }
.theme-stock-indicator--out { background: var(--color-foreground); color: var(--color-background); }
.theme-coming-soon-notice { margin-bottom: 1.25rem; padding: 1rem; background: color-mix(in srgb, var(--color-accent) 10%, transparent); border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent); border-radius: 0.5rem; font-size: 0.9rem; }
.theme-product-description, .woocommerce-product-details__short-description, .woocommerce-variation-description, .posted_in { overflow-wrap: break-word; word-break: break-word; }
.theme-product-description { color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 2rem; }
.theme-quantity-wrapper { display: flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--btn-radius); overflow: hidden; }
.theme-qty-minus, .theme-qty-plus { padding: 0.85rem 1rem; transition: background 0.2s; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input { width: 3rem; text-align: center; border: none; background: transparent; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.theme-product-details { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--color-border); }
.theme-product-details h3 { font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; }
.theme-product-details__content ul { display: flex; flex-direction: column; gap: 0.5rem; }
.theme-product-details__content li { font-size: 0.9rem; color: var(--color-muted-foreground); display: flex; align-items: flex-start; gap: 0.6rem; }
.theme-product-details__content li::before { content: ''; width: 0.35rem; height: 0.35rem; border-radius: 50%; background: var(--color-primary); margin-top: 0.4rem; flex-shrink: 0; }
.related-products-section { padding-top: 3rem; border-top: 1px solid var(--color-border); margin-top: 1rem; }
.related-products-section__title { font-size: 1.35rem; font-weight: 700; margin-bottom: 2rem; }
.theme-product-grid--related { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (min-width: 1024px) { .theme-product-grid--related { grid-template-columns: repeat(3, minmax(0,1fr)); } }

/* Variation table layout (Section 11.5.1) */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; font-weight: 600; }
.single-product .variations tbody td.value { padding-top: 0; }
.single-product .theme-add-to-cart-area {
	display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0;
}
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }
.variations label { font-family: var(--font-body); font-weight: 600; font-style: normal; }

/* ---------- WooCommerce shop archive ---------- */
.theme-shop-main { padding-top: calc(var(--header-height) + 1.5rem); }
.woocommerce-page .woocommerce-message,
.woocommerce-page .woocommerce-info { border-radius: 0.5rem; border: 1px solid var(--color-border); background: var(--color-secondary); color: var(--color-foreground); padding: 1rem; margin-bottom: 1.5rem; }
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }

/* ---------- Checkout / Cart / My Account / Thank you ---------- */
body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main,
body.theme-thankyou-page .site-main { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; }
.theme-page-container { max-width: 1280px; }
.page-title { font-size: 2rem; margin-bottom: 2rem; font-family: var(--font-display); }
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content { max-width: 100%; }

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 {
	width: 100% !important; max-width: none !important;
	font-family: var(--font-body); font-size: 0.95rem; color: var(--color-foreground);
	border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-background);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus { border-color: var(--color-accent); outline: none; }
body.woocommerce-checkout .wc-block-components-text-input input { padding: revert; }

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-checkout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary); border-radius: var(--radius); padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: var(--color-primary) !important; color: var(--color-primary-foreground) !important; border-radius: var(--btn-radius) !important; text-transform: none !important;
}
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: var(--radius); grid-column: 1 / -1; }

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart-collaterals { max-width: 100%; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-customer-details,
body.theme-thankyou-page .woocommerce-order-details { max-width: 100%; }
body.theme-thankyou-page { overflow-x: hidden; }
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 { flex: 1 1 10rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.6rem; border-bottom: 1px solid var(--color-border); }
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-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem 0; font-size: 1.35rem; }
@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; }
}

/* ---------- Utility / misc ---------- */
.theme-mobile-menu-btn svg { display: none; }
.theme-anchor-link { cursor: pointer; }
