/* =========================================================================
 * Speak English Like Me — theme.css
 * ========================================================================= */

:root {
	--font-display: 'Outfit', sans-serif;
	--font-body: 'Nunito Sans', sans-serif;
	--radius: 0.85rem;
	--shadow-soft: 0 4px 24px -6px hsl(217 94% 20% / 0.14);
	--shadow-elevated: 0 16px 48px -12px hsl(217 94% 20% / 0.3);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--header-height: 88px;
	--btn-radius: 999px;
	--btn-height: 3rem;
	--btn-padding: 0.9rem 1.75rem;
	--btn-font-size: 0.75rem;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.22em;
	--btn-text-transform: uppercase;
	--card-radius: 1rem;
	--section-padding: 2rem;
	--checkout-gap: 2rem;
}

/* ---------------------------------------------------------------------
 * RESET / BASE
 * ------------------------------------------------------------------- */
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
img:not(.cover-img):not(.hero-section__video):not(.theme-product-card__image) {
	height: auto;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.02em;
	margin: 0;
}

.container-wide { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container-wide { padding: 0 2rem; } }

#about, #shop, #support, #journal, #selm-show, #services, #contact, #owners, #featured {
	scroll-margin-top: 6rem;
}

body ::selection {
	background: color-mix(in srgb, var(--color-accent) 35%, transparent);
	color: var(--color-foreground);
}

.link-underline { position: relative; display: inline-block; }
.link-underline::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--transition-smooth);
}
.link-underline:hover::after { transform: scaleX(1); }

.cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.eyebrow {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
	color: var(--color-primary); font-family: var(--font-body); font-weight: 700;
	margin-bottom: 0.75rem;
}
.eyebrow svg { color: var(--color-accent); flex-shrink: 0; }
.section-heading {
	font-family: var(--font-display); font-weight: 800;
	letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 1.25rem;
}
.section-subtitle {
	color: hsl(var(--color-foreground-hsl, 217 45% 14%) / 0.75);
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	font-family: var(--font-body); font-size: 1rem; line-height: 1.6;
	max-width: 42rem; margin: 0 auto;
}
.section-heading-block { text-align: center; margin-bottom: 3rem; }
.gold-rule { height: 1px; background: linear-gradient(90deg, transparent, var(--color-accent), transparent); }

/* ---------------------------------------------------------------------
 * REVEAL ANIMATIONS (Section 2.1)
 * ------------------------------------------------------------------- */
.reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
body.is-customizer .reveal-item { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none !important; opacity: 1 !important; transform: none !important; }
}

.animate-bob { animation: selmBob 2.2s ease-in-out infinite; }
@keyframes selmBob { 0%, 100% { transform: translateY(0); opacity: 0.85; } 50% { transform: translateY(6px); opacity: 1; } }
.animate-pulse-soft { animation: selmPulse 2.4s ease-in-out infinite; }
@keyframes selmPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
@media (prefers-reduced-motion: reduce) { .animate-bob, .animate-pulse-soft { animation: none !important; } }

/* ---------------------------------------------------------------------
 * BUTTONS
 * ------------------------------------------------------------------- */
.theme-btn-hero-primary, .theme-btn-hero-outline, .theme-btn-primary, .theme-btn-outline, .theme-btn-ghost, .theme-btn-rosa {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	border-radius: var(--btn-radius); padding: var(--btn-padding);
	font-size: var(--btn-font-size); letter-spacing: var(--btn-letter-spacing);
	text-transform: none; font-weight: var(--btn-font-weight); font-family: var(--font-body);
	transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
}
.theme-btn-hero-primary, .theme-btn-hero-outline { text-transform: uppercase; }
.theme-btn-hero-primary { background: var(--color-accent); color: var(--color-accent-foreground); box-shadow: var(--shadow-elevated); }
.theme-btn-hero-primary:hover { opacity: 0.9; }
.theme-btn-hero-outline { border: 2px solid color-mix(in srgb, var(--color-primary-foreground) 70%, transparent); color: var(--color-primary-foreground); }
.theme-btn-hero-outline:hover { background: color-mix(in srgb, var(--color-primary-foreground) 10%, transparent); }
.theme-btn-primary { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-btn-primary:hover { opacity: 0.9; }
.theme-btn-outline { border: 1px solid var(--color-primary); color: var(--color-primary); background: transparent; text-transform: uppercase; }
.theme-btn-outline:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-btn-ghost { border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); background: color-mix(in srgb, var(--color-background) 80%, transparent); color: var(--color-foreground); }
.theme-btn-rosa { background: var(--color-rosa); color: var(--color-primary-foreground); box-shadow: var(--shadow-soft); text-transform: uppercase; letter-spacing: 0.24em; }
.theme-btn-rosa:hover { opacity: 0.9; }

/* ---------------------------------------------------------------------
 * HEADER
 * ------------------------------------------------------------------- */
.site-header {
	position: sticky; top: 0; left: 0; right: 0; z-index: 50; width: 100%;
	background: transparent; transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-solid, .site-header.mobile-open {
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(10px);
	box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.site-header:not(.is-solid) .site-header__inner { border-bottom: none; }
.site-header.is-solid .site-header__inner, .site-header.mobile-open .site-header__inner { border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); }
.site-nav { display: flex; align-items: center; height: 5rem; position: relative; }
@media (min-width: 768px) { .site-nav { height: 7rem; } }
.site-nav__side { display: none; align-items: center; gap: 2rem; flex: 1; }
@media (min-width: 1024px) { .site-nav__side { display: flex; } }
.site-nav__side--right { justify-content: flex-end; }
.theme-nav-list { display: flex; align-items: center; gap: 2rem; }
.theme-nav-list a {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.025em;
	transition: color 0.2s ease;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
}
.site-header:not(.is-solid) .theme-nav-list a { color: color-mix(in srgb, white 95%, transparent); }
.theme-nav-list a:hover { color: var(--color-primary); }
.site-header:not(.is-solid) .theme-nav-list a:hover { color: var(--color-accent); }

.site-logo-link { display: none; flex-shrink: 0; padding: 0 1.5rem; align-items: center; justify-content: center; height: var(--logo-height); }
@media (min-width: 1024px) { .site-logo-link--desktop { display: flex; } }
.site-logo-img { height: 100% !important; width: auto !important; max-height: var(--logo-height); display: block; transition: filter 0.3s ease; object-fit: contain; }
.site-header:not(.is-solid) .site-logo-img { filter: brightness(0) invert(1); }
.site-logo-text { line-height: 1; display: flex; align-items: center; height: 100%; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--color-primary); }
.site-header:not(.is-solid) .site-logo-text { color: white; }

.theme-cart-btn {
	position: relative; display: inline-flex; align-items: center; justify-content: center;
	width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--color-foreground) 30%, transparent);
	color: var(--color-foreground); transition: border-color 0.2s ease, color 0.2s ease;
}
.site-header:not(.is-solid) .theme-cart-btn { border-color: color-mix(in srgb, white 40%, transparent); color: white; }
.theme-cart-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.site-header:not(.is-solid) .theme-cart-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.theme-cart-count {
	position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; padding: 0 4px;
	border-radius: 999px; background: var(--color-primary); color: var(--color-primary-foreground);
	font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.theme-cart-count:empty { display: none; }
.site-header:not(.is-solid) .theme-cart-count { background: var(--color-accent); color: var(--color-accent-foreground); }

.site-nav__mobile-bar { display: flex; align-items: center; justify-content: space-between; width: 100%; }
@media (min-width: 1024px) { .site-nav__mobile-bar { display: none; } }
.site-logo-link--mobile { display: flex; padding: 0; height: calc(var(--logo-height) * 0.75); }
.site-logo-link--mobile .site-logo-img { height: 100% !important; max-height: none; }
.site-logo-link--mobile .site-logo-text { height: 100%; font-size: 1.25rem; }
.site-nav__mobile-actions { display: flex; align-items: center; gap: 0.75rem; }
.theme-mobile-toggle { padding: 0.5rem; color: var(--color-foreground); }
.site-header:not(.is-solid) .theme-mobile-toggle { color: white; }

.theme-mobile-menu { display: none; padding: 1rem 0; border-top: 1px solid var(--color-border); }
.theme-mobile-menu.is-open { display: block; }
.theme-mobile-nav-list { display: flex; flex-direction: column; }
.theme-mobile-nav-list li { width: 100%; }
.theme-mobile-nav-list a, .theme-mobile-nav-list li > a {
	display: block; padding: 0.75rem 0; font-size: 14px; border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	color: var(--color-foreground);
}

/* ---------------------------------------------------------------------
 * HERO
 * ------------------------------------------------------------------- */
.hero-section { position: relative; margin-top: -5rem; }
@media (min-width: 768px) { .hero-section { margin-top: -7rem; } }
.hero-section__video { z-index: 0; }
.hero-section__overlay {
	position: absolute; inset: 0;
	background:
		radial-gradient(circle at center, color-mix(in srgb, var(--color-foreground) 55%, transparent) 0%, color-mix(in srgb, var(--color-foreground) 22%, transparent) 45%, transparent 72%),
		linear-gradient(to bottom, color-mix(in srgb, var(--color-nopal) 20%, transparent), color-mix(in srgb, var(--color-nopal) 5%, transparent), color-mix(in srgb, var(--color-nopal) 25%, transparent)),
		color-mix(in srgb, var(--color-nopal) 10%, transparent);
	background-color: color-mix(in srgb, var(--color-nopal) 10%, transparent);
}
.hero-section__content {
	position: relative; min-height: 100vh; display: flex; flex-direction: column; z-index: 1;
	padding-top: 5rem;
}
@media (min-width: 768px) { .hero-section__content { padding-top: 7rem; } }
.hero-section__center { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; max-width: 56rem; margin: 0 auto; padding: 4rem 0; }
.hero-section__badge {
	display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px;
	background: color-mix(in srgb, var(--color-accent) 15%, transparent); border: 1px solid color-mix(in srgb, var(--color-accent) 40%, transparent);
	padding: 0.4rem 1rem; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--color-accent);
	font-weight: 700; margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .hero-section__badge { font-size: 12px; } }
.theme-btn-hero-primary, .theme-btn-hero-outline { padding: 1rem 2rem; letter-spacing: 0.24em; }
.hero-section__title { color: white; font-weight: 800; line-height: 0.98; letter-spacing: -0.02em; font-size: clamp(2.5rem, 7vw, 5.5rem); }
.hero-section__title-accent { display: block; color: var(--color-accent); }
.hero-section__subtitle {
	margin-top: 1.5rem; max-width: 36rem; color: color-mix(in srgb, white 95%, transparent);
	font-size: 1rem; line-height: 1.6; text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}
@media (min-width: 768px) { .hero-section__subtitle { font-size: 1.25rem; } }
.hero-section__actions { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; width: 100%; }
@media (min-width: 640px) { .hero-section__actions { flex-direction: row; width: auto; } }
.hero-section__features {
	margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.75rem 1rem;
	color: color-mix(in srgb, white 85%, transparent); font-size: 12px;
}
.hero-section__features span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-section__features svg { color: var(--color-accent); }
@media (min-width: 768px) { .hero-section__features { font-size: 1rem; } }
.hero-section__scroll { padding-bottom: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: color-mix(in srgb, white 75%, transparent); align-self: center; }
.hero-section__scroll span { font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase; }

/* ---------------------------------------------------------------------
 * VALUE PILLARS
 * ------------------------------------------------------------------- */
.pillars-section { background: var(--color-card); padding: 3.5rem 0; }
.pillars-section__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .pillars-section__grid { grid-template-columns: repeat(3, 1fr); } }
.pillars-section__item { display: flex; align-items: flex-start; gap: 1rem; }
.pillars-section__icon {
	flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	background: color-mix(in srgb, var(--color-primary) 10%, transparent); border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent);
	color: var(--color-primary);
}
.pillars-section__item h3 { font-size: 1.125rem; margin-bottom: 0.375rem; font-weight: 800; }
@media (min-width: 768px) { .pillars-section__item h3 { font-size: 1.25rem; } }
.pillars-section__item p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; }

/* ---------------------------------------------------------------------
 * CATEGORY STRIP
 * ------------------------------------------------------------------- */
.category-strip-section { padding: 4rem 0; }
@media (min-width: 768px) { .category-strip-section { padding: 5rem 0; } }
.category-strip-section .section-heading { font-size: 1.875rem; }
@media (min-width: 768px) { .category-strip-section .section-heading { font-size: 3rem; } }
.category-strip__row {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; place-items: center;
	padding: 1.5rem 0 1rem;
}
@media (min-width: 768px) { .category-strip__row { display: flex; flex-wrap: nowrap; overflow-x: auto; justify-content: center; gap: 2.5rem; } }
.category-strip__tile { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.category-strip__circle {
	width: 7rem; height: 7rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	background: color-mix(in srgb, var(--color-secondary) 70%, transparent); border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	color: var(--color-primary); transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s ease, background-color 0.4s ease;
}
@media (min-width: 640px) { .category-strip__circle { width: 8rem; height: 8rem; } }
@media (min-width: 768px) { .category-strip__circle { width: 10rem; height: 10rem; } }
.category-strip__tile:hover .category-strip__circle { transform: scale(1.05); box-shadow: var(--shadow-elevated), 0 0 0 2px color-mix(in srgb, var(--color-accent) 70%, transparent); background: color-mix(in srgb, var(--color-primary) 10%, transparent); }
.category-strip__tile:hover .category-strip__circle svg { color: var(--color-accent); transform: scale(1.1); }
.category-strip__circle svg { transition: transform 0.4s var(--transition-smooth), color 0.4s ease; }
.category-strip__label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
@media (min-width: 768px) { .category-strip__label { font-size: 14px; } }
.category-strip__tile:hover .category-strip__label { color: var(--color-primary); }

/* ---------------------------------------------------------------------
 * FEATURED PRODUCTS / SHOP GRID / PRODUCT CARDS (Section 31.3/31.9)
 * ------------------------------------------------------------------- */
.featured-section, .shop-section { padding: 4rem 0; }
@media (min-width: 768px) { .featured-section, .shop-section { padding: 6rem 0; } }
.featured-section .section-heading, .shop-section .section-heading { font-size: 1.875rem; }
@media (min-width: 768px) { .featured-section .section-heading, .shop-section .section-heading { font-size: 3rem; } }
.featured-section__cta { text-align: center; margin-top: 3.5rem; }

.theme-product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.25rem; align-items: stretch; }
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .shop-section .theme-product-grid { gap: 2.5rem; } }
.theme-product-grid--featured { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2rem; }
@media (min-width: 768px) { .theme-product-grid--featured { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-product-grid--featured { gap: 3rem; } }
.theme-product-grid--related { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (min-width: 1024px) { .theme-product-grid--related { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card { display: flex; flex-direction: column; height: 100%; min-width: 0; }
.theme-product-card__image-wrapper {
	position: relative; aspect-ratio: 1 / 1; border-radius: var(--card-radius); overflow: hidden;
	background: var(--color-card); margin-bottom: 1.25rem; transition: transform 0.3s var(--transition-smooth);
}
.theme-product-card:hover .theme-product-card__image-wrapper { transform: translateY(-3px); }
.theme-product-card__image-wrapper > .theme-card-image-link {
	position: absolute; inset: 0; z-index: 1; display: block;
}
.theme-product-card__image-wrapper > .theme-card-image-link .theme-product-card__image {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.theme-product-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--transition-smooth); }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.05); }
.theme-product-card__image.is-sold-out { opacity: 0.6; }
.theme-product-card__badge {
	position: absolute; top: 1rem; right: 1rem; z-index: 3; padding: 0.25rem 0.75rem; border-radius: 6px;
	font-size: 11px; letter-spacing: 0.02em; background: var(--color-foreground); color: var(--color-background);
}
.theme-product-card__add-btn {
	position: absolute; z-index: 4; left: 1rem; right: 1rem; bottom: 1rem; padding: 0.75rem 0;
	border-radius: 999px; background: var(--color-primary); color: var(--color-primary-foreground);
	border: 1px solid var(--color-primary); text-align: center;
	font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
	opacity: 0; transform: translateY(8px); transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease, color 0.2s ease;
	pointer-events: auto;
}
@media (hover: none) {
	.theme-product-card__add-btn { opacity: 1; transform: none; }
}
.theme-product-card__add-btn:active { transform: scale(0.96); }
.theme-product-card:hover .theme-product-card__add-btn { opacity: 1; transform: translateY(0); }
.theme-product-card__add-btn:hover,
.theme-product-card .theme-product-card__add-btn:hover,
.theme-product-card .add_to_cart_button.theme-product-card__add-btn:hover {
	background: var(--color-accent) !important;
	color: var(--color-accent-foreground) !important;
	border-color: var(--color-accent) !important;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-accent) 35%, transparent) !important;
	opacity: 1 !important;
	transform: translateY(0) !important;
}
.theme-product-card__info { flex: 1; display: flex; flex-direction: column; gap: 0.375rem; padding: 0 0.25rem; }
.theme-product-card__category { font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-product-card__title { font-family: var(--font-display); font-size: 1rem; font-weight: 500; line-height: 1.35; transition: color 0.2s ease; min-width: 0; }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.125rem; } }
.theme-product-card__price { font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-product-card__price .woocommerce-Price-amount { font-family: var(--font-body); }

/* ---------------------------------------------------------------------
 * BANNER SLIDER
 * ------------------------------------------------------------------- */
.banner-slider { position: relative; width: 100%; height: 40vh; overflow: hidden; }
@media (min-width: 768px) { .banner-slider { height: 55vh; } }
@media (min-width: 1024px) { .banner-slider { height: 65vh; } }
.banner-slider__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--transition-smooth); }
.banner-slider__slide.is-active { opacity: 1; }
.banner-slider__overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-nopal) 20%, transparent); }
.banner-slider__dots { position: absolute; bottom: 1.5rem; left: 0; right: 0; display: flex; justify-content: center; gap: 0.75rem; z-index: 2; }
.banner-slider__dot { width: 10px; height: 10px; border-radius: 50%; background: color-mix(in srgb, var(--color-primary-foreground) 50%, transparent); transition: all 0.3s ease; }
.banner-slider__dot.is-active { background: var(--color-accent); transform: scale(1.25); }

/* ---------------------------------------------------------------------
 * ABOUT
 * ------------------------------------------------------------------- */
.about-section { padding: 3.5rem 0 6rem; }
@media (min-width: 768px) { .about-section { padding: 5rem 0 8rem; } }
.about-section__inner { max-width: 48rem; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
@media (min-width: 768px) { .about-section__inner { padding: 0 3.5rem; } }
.about-section .eyebrow { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.about-section__quote { font-size: 1.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 2.5rem; font-family: var(--font-display); }
@media (min-width: 768px) { .about-section__quote { font-size: 2.25rem; } }
@media (min-width: 1024px) { .about-section__quote { font-size: 2.75rem; } }
.about-section__quote .accent { color: var(--color-primary); }
.about-section__paragraph { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; font-size: 1rem; margin-bottom: 0; }
@media (min-width: 768px) { .about-section__paragraph { font-size: 1.125rem; } }
.about-section__paragraph + .about-section__paragraph { margin-top: 1.25rem; }
.about-section .gold-rule { width: 10rem; margin: 2.5rem auto; }
.about-section__link { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-family: var(--font-display); font-weight: 700; position: relative; }
.about-section__link::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transition: transform 0.3s var(--transition-smooth); }
.about-section__link:hover::after { transform: scaleX(1); }

/* ---------------------------------------------------------------------
 * MEET WILSON
 * ------------------------------------------------------------------- */
.wilson-section { background: var(--color-primary); color: var(--color-primary-foreground); }
.wilson-section__grid { display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 1024px) { .wilson-section__grid { grid-template-columns: 1fr 1fr; } }
.wilson-section__media { position: relative; min-height: 22.5rem; overflow: hidden; }
@media (min-width: 768px) { .wilson-section__media { min-height: 31rem; } }
@media (min-width: 1024px) { .wilson-section__media { min-height: 0; } }
.wilson-section__media-overlay { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-nopal) 85%, transparent), color-mix(in srgb, var(--color-nopal) 20%, transparent), transparent); }
.wilson-section__media-caption { position: absolute; bottom: 2rem; left: 2rem; right: 2rem; color: white; }
.wilson-section__media-caption p { font-size: 1.5rem; font-weight: 800; line-height: 1.2; }
@media (min-width: 768px) { .wilson-section__media-caption p { font-size: 1.875rem; } }
.wilson-section__media-caption span { color: var(--color-accent); font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 700; display: block; margin-top: 0.25rem; }
.wilson-section__content { display: flex; align-items: center; background: var(--color-background); padding: 4rem 1.5rem; }
@media (min-width: 768px) { .wilson-section__content { padding: 6rem 3.5rem; } }
.wilson-section__content > div { max-width: 36rem; }
.wilson-section__title { font-size: 2.25rem; font-weight: 800; line-height: 1.15; margin-bottom: 1.75rem; color: var(--color-foreground); }
@media (min-width: 768px) { .wilson-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .wilson-section__title { font-size: 3.75rem; } }
.wilson-section__quote { font-size: 1.25rem; font-weight: 700; color: var(--color-primary); line-height: 1.3; margin-bottom: 2rem; font-family: var(--font-display); }
@media (min-width: 768px) { .wilson-section__quote { font-size: 1.5rem; } }
.wilson-section__content p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; margin-bottom: 1.25rem; }
.wilson-section__credentials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
.wilson-section__credential { display: flex; align-items: flex-start; gap: 0.75rem; }
.wilson-section__credential svg { color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.wilson-section__credential span { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.4; }
.wilson-section__contact { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.875rem; }
.wilson-section__contact a { display: inline-flex; align-items: center; gap: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); transition: color 0.2s ease; }
.wilson-section__contact a svg { color: var(--color-accent); flex-shrink: 0; }
.wilson-section__contact a:hover { color: var(--color-primary); }

/* ---------------------------------------------------------------------
 * SHOW SEGMENTS
 * ------------------------------------------------------------------- */
.segments-section { background: color-mix(in srgb, var(--color-secondary) 50%, transparent); padding: 5rem 0; }
@media (min-width: 768px) { .segments-section { padding: 7rem 0; } }
.segments-section .section-heading { font-size: 1.875rem; }
@media (min-width: 768px) { .segments-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .segments-section .section-heading { font-size: 3.75rem; } }
.segments-section__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .segments-section__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .segments-section__grid { grid-template-columns: repeat(5, 1fr); } }
.segments-section__item {
	display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem;
	border-radius: 1rem; background: var(--color-card); border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	padding: 1.5rem; transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.segments-section__item:hover { box-shadow: var(--shadow-elevated); transform: translateY(-4px); }
.segments-section__item img { width: 6rem; height: 6rem; object-fit: contain; transition: transform 0.3s ease; }
@media (min-width: 768px) { .segments-section__item img { width: 7rem; height: 7rem; } }
.segments-section__item:hover img { transform: scale(1.08); }
.segments-section__item h3 { font-size: 1rem; font-weight: 800; }
@media (min-width: 768px) { .segments-section__item h3 { font-size: 1.125rem; } }
.segments-section__item p { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.5; }
@media (min-width: 768px) { .segments-section__item p { font-size: 14px; } }

/* ---------------------------------------------------------------------
 * WATCH & LEARN
 * ------------------------------------------------------------------- */
.watch-section { padding: 5rem 0; }
@media (min-width: 768px) { .watch-section { padding: 7rem 0; } }
.watch-section .section-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .watch-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .watch-section .section-heading { font-size: 3.75rem; } }
.watch-section__top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 4rem; }
@media (min-width: 1024px) { .watch-section__top { grid-template-columns: 3fr 2fr; gap: 3.5rem; } }
.watch-section__video { position: relative; aspect-ratio: 16 / 9; border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-elevated); background: var(--color-nopal); border: 1px solid var(--color-border); }
.watch-section__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.watch-section__side { display: flex; flex-direction: column; justify-content: center; }
.watch-section__side h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
@media (min-width: 768px) { .watch-section__side h3 { font-size: 1.875rem; } }
.watch-section__side > p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; margin-bottom: 1.5rem; }
.watch-section__bullets { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.watch-section__bullets li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.watch-section__bullets svg,
.watch-section__bullets .watch-bullet-icon { color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.watch-section__play .watch-play-icon { fill: currentColor; stroke: none; color: var(--color-accent-foreground); }
.watch-section__episodes-title { text-align: center; font-size: 1.5rem; font-weight: 800; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .watch-section__episodes-title { font-size: 1.875rem; } }
.watch-section__episodes-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .watch-section__episodes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .watch-section__episodes-grid { grid-template-columns: repeat(4, 1fr); } }
.watch-section__episode {
	display: flex; flex-direction: column; border-radius: 1rem; overflow: hidden; background: var(--color-card);
	border: 1px solid var(--color-border); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.watch-section__episode:hover { transform: translateY(-8px); box-shadow: var(--shadow-elevated); border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.watch-section__episode-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.watch-section__episode-thumb img { transition: transform 0.5s ease; }
.watch-section__episode:hover .watch-section__episode-thumb img { transform: scale(1.05); }
.watch-section__play {
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0;
	background: color-mix(in srgb, var(--color-foreground) 10%, transparent); transition: opacity 0.3s ease;
}
.watch-section__episode:hover .watch-section__play { opacity: 1; }
.watch-section__play svg { width: 3.5rem; height: 3.5rem; padding: 1rem; background: var(--color-accent); color: var(--color-accent-foreground); border-radius: 50%; box-shadow: var(--shadow-elevated); }
.watch-section__episode-body { padding: 1.25rem; }
.watch-section__episode-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-primary); font-weight: 600; }
.watch-section__episode-body h4 { font-size: 1.125rem; font-weight: 700; margin: 0.25rem 0 0.5rem; transition: color 0.2s ease; }
.watch-section__episode:hover .watch-section__episode-body h4 { color: var(--color-primary); }
.watch-section__episode-body p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.5; }

/* ---------------------------------------------------------------------
 * SERVICES / PROGRAMS
 * ------------------------------------------------------------------- */
.services-section { background: var(--color-card); padding: 5rem 0; }
@media (min-width: 768px) { .services-section { padding: 7rem 0; } }
.services-section .section-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .services-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .services-section .section-heading { font-size: 3.75rem; } }
.services-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 640px) { .services-section__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-section__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.services-section__card {
	display: flex; flex-direction: column; text-align: center; background: var(--color-background); border-radius: 1rem;
	padding: 2rem; border: 1px solid var(--color-border); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.services-section__card:hover { transform: translateY(-8px); box-shadow: var(--shadow-elevated); border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.services-section__icon { display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--color-primary); }
.services-section__kicker { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: var(--color-primary); margin-bottom: 0.5rem; }
.services-section__card--primary .services-section__icon,
.services-section__card--primary .services-section__kicker { color: var(--color-primary); }
.services-section__card--accent .services-section__icon,
.services-section__card--accent .services-section__kicker { color: var(--color-accent); }
.services-section__card--teal .services-section__icon,
.services-section__card--teal .services-section__kicker { color: var(--color-teal); }
.services-section__card--rosa .services-section__icon,
.services-section__card--rosa .services-section__kicker { color: var(--color-rosa); }
.services-section__card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.services-section__desc { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; margin-bottom: 1.5rem; flex: 1; }
.services-section__link { margin-top: auto; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: var(--color-primary); transition: color 0.2s ease; }
.services-section__link:hover { color: var(--color-accent); }

/* ---------------------------------------------------------------------
 * SHOP SECTION SPECIFIC
 * ------------------------------------------------------------------- */
.shop-section .section-heading-block .section-heading { margin-bottom: 2.5rem; }
.shop-section__search { position: relative; max-width: 26rem; margin: 0 auto 2rem; display: flex; align-items: center; }
.shop-section__search svg { position: absolute; left: 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.shop-section__search input {
	width: 100%; padding: 0.5rem 0 0.5rem 1.75rem; background: transparent; border: none; border-bottom: 1px solid var(--color-border);
	font-family: var(--font-body); font-size: 0.95rem; color: var(--color-foreground); outline: none; transition: border-color 0.2s ease;
}
.shop-section__search input:focus { border-color: var(--color-foreground); }
.shop-section__pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.shop-cat-pill {
	padding: 0.5rem 0.9rem; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 999px;
	border: 1px solid var(--color-border); color: var(--color-foreground); transition: all 0.3s ease; font-family: var(--font-body);
}
@media (min-width: 768px) { .shop-cat-pill { padding: 0.5rem 1.25rem; font-size: 12px; } }
.shop-cat-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.shop-cat-pill.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.shop-section__price-filter { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.shop-section__price-toggle {
	display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; font-size: 12px; letter-spacing: 0.2em;
	text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); transition: color 0.2s ease;
}
.shop-section__price-toggle:hover { color: var(--color-foreground); }
.shop-section__price-toggle svg { transition: transform 0.3s ease; }
.shop-section__price-toggle.is-open svg { transform: rotate(180deg); }
.shop-section__price-panel { width: 100%; max-width: 22rem; padding: 0.5rem 0; }
.shop-section__price-values { display: flex; justify-content: space-between; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-top: 0.75rem; }

/* Dual-handle price range (Section 31.4) */
.price-range-wrapper { position: relative; height: 1.5rem; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); pointer-events: none; border-radius: 999px; }
.range-track-bg { left: 0; right: 0; background: var(--color-border); }
.range-track-fill { background: var(--color-primary); left: 0; width: 100%; }
.range-input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; margin: 0; -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none; }
.range-input::-webkit-slider-thumb { -webkit-appearance: none; pointer-events: auto; width: 16px; height: 16px; border-radius: 50%; background: var(--color-primary); border: 2px solid var(--color-background); box-shadow: 0 1px 4px rgba(0,0,0,0.25); cursor: pointer; }
.range-input::-moz-range-thumb { pointer-events: auto; width: 16px; height: 16px; border-radius: 50%; background: var(--color-primary); border: 2px solid var(--color-background); cursor: pointer; }
.range-input::-moz-range-track { background: transparent; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.shop-section__note { text-align: center; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 1.5rem; }
.shop-section__more { text-align: center; margin-top: 3rem; }
.shop-section__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* ---------------------------------------------------------------------
 * FAQ
 * ------------------------------------------------------------------- */
.faq-section { padding: 5rem 0; }
@media (min-width: 768px) { .faq-section { padding: 7rem 0; } }
.faq-section .section-heading { font-size: 1.875rem; }
@media (min-width: 768px) { .faq-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .faq-section .section-heading { font-size: 3.75rem; } }
.faq-section__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 2.5rem; }
.faq-tab {
	padding: 0.65rem 1.25rem; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; border-radius: 999px;
	border: 1px solid var(--color-nopal); color: var(--color-foreground); background: transparent; transition: all 0.2s ease; font-weight: 600;
}
.faq-tab--nopal { border-color: var(--color-nopal); }
.faq-tab--teal { border-color: var(--color-teal); }
.faq-tab--rosa { border-color: var(--color-rosa); }
.faq-tab--marigold { border-color: var(--color-marigold); }
.faq-tab--lilac { border-color: var(--color-lilac); }
.faq-tab--nopal.is-active { background: var(--color-nopal); color: var(--color-background); }
.faq-tab--teal.is-active { background: var(--color-teal); color: var(--color-background); }
.faq-tab--rosa.is-active { background: var(--color-rosa); color: var(--color-background); }
.faq-tab--marigold.is-active { background: var(--color-marigold); color: var(--color-foreground); }
.faq-tab--lilac.is-active { background: var(--color-lilac); color: var(--color-foreground); }
.faq-panel { display: none; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-panel.is-active { display: block; }
.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.faq-item__question span:first-child { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.4; color: var(--color-foreground); }
@media (min-width: 768px) { .faq-item__question span:first-child { font-size: 1.25rem; } }
.faq-item__icon { flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.faq-item__icon svg { transition: transform 0.3s ease; }
.faq-item.is-open .faq-item__icon svg { transform: rotate(180deg); }
.faq-item__icon--nopal { border-color: var(--color-nopal); color: var(--color-nopal); }
.faq-item__icon--teal { border-color: var(--color-teal); color: var(--color-teal); }
.faq-item__icon--rosa { border-color: var(--color-rosa); color: var(--color-rosa); }
.faq-item__icon--marigold { border-color: var(--color-marigold); color: var(--color-marigold); }
.faq-item__icon--lilac { border-color: var(--color-lilac); color: var(--color-lilac); }
.faq-item.is-open .faq-item__icon--nopal { background: var(--color-nopal); color: var(--color-background); }
.faq-item.is-open .faq-item__icon--teal { background: var(--color-teal); color: var(--color-background); }
.faq-item.is-open .faq-item__icon--rosa { background: var(--color-rosa); color: var(--color-background); }
.faq-item.is-open .faq-item__icon--marigold { background: var(--color-marigold); color: var(--color-foreground); }
.faq-item.is-open .faq-item__icon--lilac { background: var(--color-lilac); color: var(--color-foreground); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--transition-smooth); }
.faq-item.is-open .faq-item__answer { max-height: 40rem; }
.faq-section__desktop { display: none; }
.faq-section__mobile { display: block; }
@media (min-width: 768px) {
	.faq-section__desktop { display: block; }
	.faq-section__mobile { display: none; }
}
.faq-tab--nopal:hover { background: color-mix(in srgb, var(--color-nopal) 10%, transparent); }
.faq-tab--teal:hover { background: color-mix(in srgb, var(--color-teal) 10%, transparent); }
.faq-tab--rosa:hover { background: color-mix(in srgb, var(--color-rosa) 10%, transparent); }
.faq-tab--marigold:hover { background: color-mix(in srgb, var(--color-marigold) 10%, transparent); }
.faq-tab--lilac:hover { background: color-mix(in srgb, var(--color-lilac) 10%, transparent); }
.faq-item__question:hover span:first-child { color: var(--color-primary); }
.faq-mobile-category { margin-bottom: 2.5rem; }
.faq-mobile-category__label {
	display: inline-block; border-radius: 999px; border: 1px solid; padding: 0.6rem 1.25rem;
	font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem;
}
.faq-mobile-category__label--nopal { background: var(--color-nopal); color: var(--color-background); border-color: var(--color-nopal); }
.faq-mobile-category__label--teal { background: var(--color-teal); color: var(--color-background); border-color: var(--color-teal); }
.faq-mobile-category__label--rosa { background: var(--color-rosa); color: var(--color-background); border-color: var(--color-rosa); }
.faq-mobile-category__label--marigold { background: var(--color-marigold); color: var(--color-foreground); border-color: var(--color-marigold); }
.faq-mobile-category__label--lilac { background: var(--color-lilac); color: var(--color-foreground); border-color: var(--color-lilac); }
.faq-mobile-category__items { border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-item__answer p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; padding-bottom: 1.5rem; padding-right: 2rem; max-width: 48rem; }
@media (min-width: 768px) { .faq-item__answer p { font-size: 17px; } }

/* ---------------------------------------------------------------------
 * JOURNAL / RESOURCES
 * ------------------------------------------------------------------- */
.journal-section { padding: 5rem 0; }
@media (min-width: 768px) { .journal-section { padding: 7rem 0; } }
.journal-section .section-heading { font-size: 1.875rem; }
@media (min-width: 768px) { .journal-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .journal-section .section-heading { font-size: 3.75rem; } }
.journal-section__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .journal-section__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .journal-section__grid { grid-template-columns: repeat(3, 1fr); } }
.journal-card { border-radius: 1rem; overflow: hidden; background: var(--color-card); border: 1px solid var(--color-border); transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease; }
.journal-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-elevated); border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.journal-card__link { display: flex; flex-direction: column; height: 100%; }
.journal-card__image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.journal-card__image img { transition: transform 0.5s ease; }
.journal-card:hover .journal-card__image img { transform: scale(1.05); }
.journal-card__type {
	position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 0.75rem;
	border-radius: 999px; background: color-mix(in srgb, var(--color-background) 95%, transparent); backdrop-filter: blur(4px);
	font-size: 11px; font-weight: 600; box-shadow: 0 1px 4px rgba(0,0,0,0.1); color: var(--color-primary);
}
.journal-type--article { color: var(--color-primary); }
.journal-type--video { color: var(--color-rosa); }
.journal-type--practice { color: var(--color-nopal); }
.journal-type--guide { color: var(--color-teal); }
.journal-card__read-time { display: inline-flex; align-items: center; gap: 0.35rem; text-transform: none; letter-spacing: normal; font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); font-weight: 400; }
.journal-card__cta { display: inline-flex; align-items: center; gap: 0.35rem; }
.journal-card:hover .journal-card__cta svg { transform: translateX(4px); }
.journal-card__cta svg { transition: transform 0.2s ease; }
.journal-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.75rem; }
.journal-card__meta { display: flex; align-items: center; gap: 0.75rem; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; color: var(--color-primary); }
.journal-card__meta .dot { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); }
.journal-card__body h3 { font-size: 1.25rem; line-height: 1.35; margin-bottom: 0.75rem; transition: color 0.2s ease; }
@media (min-width: 768px) { .journal-card__body h3 { font-size: 1.5rem; } }
.journal-card:hover .journal-card__body h3 { color: var(--color-primary); }
.journal-card__body p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; margin-bottom: 1.5rem; }
.journal-card__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.journal-card__date { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.journal-card__cta { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--color-primary); }

/* ---------------------------------------------------------------------
 * FINAL CTA
 * ------------------------------------------------------------------- */
.cta-section { position: relative; overflow: hidden; min-height: 85vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 6rem 1rem; }
.cta-section__overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-nopal) 70%, transparent); }
.cta-section__card {
	position: relative; z-index: 2; width: 100%; max-width: 56rem; border-radius: 2rem; overflow: hidden; box-shadow: var(--shadow-elevated);
	backdrop-filter: blur(12px); text-align: center; padding: 3.5rem 2rem;
	background: linear-gradient(135deg, color-mix(in srgb, var(--color-background) 97%, transparent) 0%, color-mix(in srgb, var(--color-card) 92%, transparent) 55%, color-mix(in srgb, var(--color-accent) 35%, transparent) 100%);
}
@media (min-width: 768px) { .cta-section__card { padding: 5rem 4rem; } }
.cta-section .eyebrow { justify-content: center; }
.cta-section .theme-btn-primary,
.cta-section .theme-btn-ghost { font-size: 0.875rem; text-transform: none; font-weight: 700; }
.cta-section h2 .accent { color: var(--color-primary); }
.cta-section__card h2 { font-size: 2.25rem; font-weight: 800; line-height: 1.05; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .cta-section__card h2 { font-size: 3rem; } }
@media (min-width: 1024px) { .cta-section__card h2 { font-size: 3.75rem; } }
.cta-section__card h2 span { color: var(--color-primary); }
.cta-section__text { max-width: 32rem; margin: 0 auto 2.5rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; }
.cta-section__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .cta-section__actions { flex-direction: row; } }
.cta-section__footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; font-size: 0.85rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.cta-section__footer a:hover { color: var(--color-primary); }

/* ---------------------------------------------------------------------
 * FOOTER
 * ------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--color-border); background: var(--color-card); }
.site-footer__inner { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-top: 5rem; padding-bottom: 5rem; } }
.site-footer__top { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--color-border); }
@media (min-width: 640px) { .site-footer__top { flex-direction: row; align-items: center; justify-content: space-between; } }
.site-logo-link--footer { display: flex; height: 3.5rem; padding: 0; }
@media (min-width: 768px) { .site-logo-link--footer { height: 5rem; } }
.site-logo-link--footer .site-logo-img { max-height: 100%; height: 100% !important; }
.footer-connect-icon { color: var(--color-accent); flex-shrink: 0; }
.footer-connect-static { display: inline-flex; align-items: flex-start; gap: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); font-size: 0.875rem; }
.footer-col a { display: inline-flex; align-items: center; gap: 0.5rem; }
.site-footer__intro { max-width: 36rem; }
@media (min-width: 640px) { .site-footer__intro { text-align: right; } }
.site-footer__intro p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; }
.site-footer__intro .dot { margin: 0 0.5rem; color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.site-footer__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.footer-col h3 { font-size: 1.25rem; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a, .footer-col li > span { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--color-primary); }
.footer-col--connect { grid-column: span 2 / span 2; }
@media (min-width: 768px) { .footer-col--connect { grid-column: auto; } }
.site-footer__bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-quote { font-size: 13px; color: var(--color-primary); font-family: var(--font-display); font-weight: 700; letter-spacing: 0.02em; }
.footer-legal { display: flex; flex-direction: column; gap: 0.25rem; align-items: center; }
@media (min-width: 640px) { .footer-legal { align-items: flex-end; } }
.footer-legal p { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.footer-legal a:hover { color: var(--color-primary); }

/* ---------------------------------------------------------------------
 * CONTACT MODAL (Section 9)
 * ------------------------------------------------------------------- */
#theme-contact-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 40%, transparent); z-index: 90; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
body.contact-open #theme-contact-overlay { opacity: 1; pointer-events: auto; }
#theme-contact-modal {
	position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%) scale(0.97); z-index: 91; width: 92%; max-width: 34rem;
	max-height: 90vh; overflow-y: auto; background: var(--color-background); border-radius: 1rem; box-shadow: var(--shadow-elevated);
	opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease;
}
body.contact-open #theme-contact-modal { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.theme-contact-modal__inner { padding: 2rem; }
.theme-contact-modal__close { position: absolute; top: 1.25rem; right: 1.25rem; padding: 0.4rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-contact-modal__close:hover { color: var(--color-foreground); }
#theme-contact-modal h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.theme-contact-modal__desc { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); font-size: 0.9rem; line-height: 1.5; margin-bottom: 1rem; }
.theme-contact-modal__meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; }
.theme-contact-modal__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-contact-modal__row { grid-template-columns: 1fr 1fr; } }
#theme-contact-form label { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.4rem; display: block; }
#theme-contact-form input, #theme-contact-form select, #theme-contact-form textarea {
	width: 100%; padding: 0.65rem 0.75rem; background: var(--color-background); border: 1px solid var(--color-border);
	border-radius: 6px; font-size: 1rem; font-family: var(--font-body); color: var(--color-foreground); margin-bottom: 1rem;
	transition: box-shadow 0.2s ease;
}
#theme-contact-form input:focus, #theme-contact-form select:focus, #theme-contact-form textarea:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 40%, transparent); }
#theme-contact-form textarea { resize: none; }
.theme-contact-modal__actions { display: flex; justify-content: flex-end; }
.theme-contact-modal__success { text-align: center; padding: 2rem 0; }
.theme-contact-modal__success-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--color-primary); color: var(--color-primary-foreground); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.theme-contact-modal__success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-contact-modal__success p { font-size: 0.9rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

/* ---------------------------------------------------------------------
 * SIDE CART DRAWER (Section 12)
 * ------------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 20%, transparent); z-index: 95; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
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: 28rem; background: var(--color-background); z-index: 96;
	box-shadow: var(--shadow-elevated); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s var(--transition-smooth);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__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.125rem; 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: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-cart-drawer__empty p { color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-drawer__item { display: flex; gap: 1rem; }
.theme-cart-drawer__item-image { width: 5rem; height: 6rem; background: var(--color-secondary); overflow: hidden; flex-shrink: 0; border-radius: 6px; }
.theme-cart-drawer__item-image img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-drawer__item-body { flex: 1; min-width: 0; }
.theme-cart-drawer__item-name { font-size: 0.875rem; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-drawer__item-price { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 2px; }
.theme-cart-drawer__item-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-drawer__qty-btn { padding: 0.25rem; border-radius: 4px; transition: background-color 0.2s ease; }
.theme-cart-drawer__qty-btn:hover { background: var(--color-secondary); }
.theme-cart-drawer__qty-value { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-drawer__remove { margin-left: auto; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__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.875rem; }
.theme-cart-drawer__shipping-note { font-size: 0.85rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__subtotal span:last-child { font-weight: 600; }
.theme-cart-drawer__checkout { width: 100%; min-height: 3rem; padding: 0.875rem 2.5rem; }
.theme-cart-drawer__empty-btn { width: 100%; }

/* Hide "View cart" injected by WooCommerce after AJAX add-to-cart */
.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; }

/* ---------------------------------------------------------------------
 * WOOCOMMERCE: ADD TO CART BUTTON OVERRIDE (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-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: uppercase !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single-product .single_add_to_cart_button.button {
	width: 100% !important;
	padding: 1rem 0 !important;
	text-transform: uppercase !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-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;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

/* Card compact button — overrides global .add_to_cart_button rules */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	padding: 0.75rem 0 !important;
	border-radius: 999px !important;
}

/* ---------------------------------------------------------------------
 * WOOCOMMERCE NOTICES (Section 14.1)
 * ------------------------------------------------------------------- */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	border-radius: 8px; border: 1px solid var(--color-border); background: var(--color-card);
	color: var(--color-foreground); padding: 1rem 1.5rem; font-family: var(--font-body); font-size: 0.9rem;
	list-style: none; margin: 0 0 1.5rem;
}
.woocommerce-error { border-color: var(--color-rosa); }

/* ---------------------------------------------------------------------
 * SINGLE PRODUCT PAGE (Section 11.13)
 * ------------------------------------------------------------------- */
.single-product.site-main { padding-top: 1.5rem; }
@media (min-width: 1024px) { .single-product.site-main { padding-top: 2rem; } }
.theme-product-page { padding-top: 0; padding-bottom: 6rem; }
.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; min-width: 0; padding-top: 1rem; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; padding-bottom: 6rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery__main { aspect-ratio: 1/1; background: var(--color-secondary); overflow: hidden; border-radius: 1rem; position: relative; }
.theme-product-gallery__img,
#product-main-img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; max-width: 100%; overflow-x: auto; }
.theme-product-thumb { width: 5rem; height: 5rem; flex-shrink: 0; overflow: hidden; border-radius: 8px; opacity: 0.6; position: relative; }
.theme-product-thumb.is-active, .theme-product-thumb:hover { opacity: 1; }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-product-info__category { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-product-breadcrumb {
	display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin: 0.75rem 0 1.5rem;
	font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
}
.theme-product-breadcrumb a:hover { color: var(--color-foreground); }
.theme-product-breadcrumb__current { color: var(--color-foreground); }
.theme-product-gallery__stack { display: none; }
@media (min-width: 1024px) {
	.theme-product-gallery__main--mobile,
	.theme-product-thumbnails--mobile { display: none; }
	.theme-product-gallery__stack--desktop { display: flex; flex-direction: column; gap: 1rem; }
	.theme-product-gallery__stack-item { aspect-ratio: 1/1; background: var(--color-secondary); overflow: hidden; border-radius: 1rem; position: relative; }
	.theme-product-info { position: sticky; top: 7rem; align-self: start; }
}
.theme-product-info__title.product-title { font-family: var(--font-display); font-weight: 800; font-size: 1.875rem; line-height: 1.1; margin: 0.75rem 0 1.25rem; }
@media (min-width: 768px) { .theme-product-info__title.product-title { font-size: 2.375rem; } }
@media (min-width: 1024px) { .theme-product-info__title.product-title { font-size: 2.75rem; } }
.theme-product-info__qty-label { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 0.75rem; }
.theme-product-info__description { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.7; margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; font-size: 1rem; }
.theme-product-info__details-intro {
	font-size: 15px;
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
	line-height: 1.7;
	margin-bottom: 1rem;
	white-space: pre-line;
	overflow-wrap: break-word;
	word-break: break-word;
}
.theme-product-details { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.theme-product-details li {
	display: flex; align-items: flex-start; gap: 0.75rem; font-size: 15px;
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; margin: 0;
}
.theme-product-details li::before {
	content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--color-foreground); margin-top: 0.5rem; flex-shrink: 0;
}
.theme-product-thumb.is-active::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--color-primary);
}
.theme-product-info__price { font-size: 1.25rem; margin-bottom: 1.5rem; }
.theme-product-info__stock.is-out { color: var(--color-rosa); font-weight: 600; margin-bottom: 1rem; }

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: 999px; }
.theme-qty-minus, .theme-qty-plus { padding: 0.5rem 0.75rem; transition: background-color 0.2s ease; }
.theme-qty-minus { border-radius: 999px 0 0 999px; }
.theme-qty-plus { border-radius: 0 999px 999px 0; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input {
	min-width: 2.75rem;
	width: 2.75rem;
	padding: 0.5rem 0;
	text-align: center;
	border: none;
	background: transparent;
	font-family: var(--font-body);
	font-size: 0.875rem;
	line-height: 1.25;
	-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; flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 1rem;
}
.single-product .theme-quantity-wrapper { width: auto; max-width: fit-content; }
.single-product .single_add_to_cart_button { width: 100%; align-self: stretch; }

.theme-accordion { border-top: 1px solid var(--color-border); }
.theme-accordion:last-child { border-bottom: 1px solid var(--color-border); }
.theme-accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; }
.theme-accordion__trigger span { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; }
.theme-accordion__trigger svg { transition: transform 0.3s ease; }
.theme-accordion.is-open .theme-accordion__trigger svg { transform: rotate(180deg); }
.theme-accordion__panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.theme-accordion.is-open .theme-accordion__panel { max-height: 60rem; padding-bottom: 1.5rem; }
.theme-accordion__panel p { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.7; margin-bottom: 1rem; overflow-wrap: break-word; }
.theme-product-info__categories.posted_in { margin-top: 1rem; font-size: 0.85rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); overflow-wrap: break-word; word-break: break-word; }
.posted_in__label { font-weight: 600; }
.theme-product-info__categories a { color: var(--color-primary); }

.related-products-section { padding: 5rem 0; border-top: 1px solid var(--color-border); margin-top: 2rem; }
.related-products-section__heading { text-align: center; margin-bottom: 3rem; }
.related-products-section__kicker { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.25rem; }
.related-products-section__heading h2 { font-size: 1.875rem; font-weight: 800; }
@media (min-width: 768px) { .related-products-section__heading h2 { font-size: 2.25rem; } }

/* ---------------------------------------------------------------------
 * SHOP ARCHIVE
 * ------------------------------------------------------------------- */
.theme-archive { padding: 3rem 0 6rem; }
.theme-archive .page-title { font-size: 1.875rem; font-weight: 800; margin-bottom: 2rem; }
.theme-archive__empty { text-align: center; padding: 4rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.woocommerce-pagination { text-align: center; margin-top: 3rem; }
.woocommerce-pagination .page-numbers { display: inline-flex; gap: 0.5rem; }
.woocommerce-pagination a, .woocommerce-pagination span { padding: 0.5rem 0.9rem; border: 1px solid var(--color-border); border-radius: 6px; }
.woocommerce-pagination .current { background: var(--color-primary); color: var(--color-primary-foreground); }

/* ---------------------------------------------------------------------
 * BLOG / RESOURCES SINGLE POST
 * ------------------------------------------------------------------- */
.theme-blog-post__hero { position: relative; width: 100%; height: 46vh; overflow: hidden; }
@media (min-width: 768px) { .theme-blog-post__hero { height: 62vh; } }
.theme-blog-post__hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--color-background), color-mix(in srgb, var(--color-background) 40%, transparent), color-mix(in srgb, var(--color-background) 10%, transparent)); }
.theme-blog-post__hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .theme-blog-post__hero-content { padding-bottom: 3rem; } }
.theme-blog-post__category { display: inline-block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-primary); font-weight: 600; margin-bottom: 0.75rem; }
.theme-blog-post__hero-content h1 { font-size: 1.875rem; font-weight: 800; line-height: 1.05; margin-bottom: 1rem; max-width: 48rem; }
@media (min-width: 768px) { .theme-blog-post__hero-content h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-blog-post__hero-content h1 { font-size: 3.75rem; } }
.theme-blog-post__meta { display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: 0.9rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-blog-post__body { padding: 3rem 0 4rem; }
.theme-blog-post__back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--color-primary); margin-bottom: 2.5rem; }
.theme-blog-post__back:hover { color: var(--color-accent); }
.theme-blog-post__content { max-width: 48rem; }
.theme-blog-post__content p { font-size: 1rem; line-height: 1.75; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .theme-blog-post__content p { font-size: 1.125rem; } }

/* ---------------------------------------------------------------------
 * GENERIC PAGE / 404
 * ------------------------------------------------------------------- */
.theme-page { padding: 3rem 0 5rem; }
.theme-page .page-title { font-size: 2rem; font-weight: 800; margin-bottom: 1.5rem; }
.theme-404 { min-height: 100vh; display: flex; align-items: center; }
.theme-404__inner { text-align: center; padding: 5rem 0; }
.theme-404__inner h1 { font-size: 2.25rem; margin-bottom: 1rem; }
.theme-404__inner p { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; }
.theme-404__link { color: var(--color-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.theme-404__link:hover { color: var(--color-accent); }

/* ---------------------------------------------------------------------
 * COVER / FULL-BLEED IMAGE EXCLUSION LIST (Section 15.1)
 * ------------------------------------------------------------------- */
img:not(.cover-img):not(.hero-section__video):not(.theme-product-card__image):not(.theme-product-gallery__img):not(#product-main-img) {
	max-width: 100%; height: auto;
}
.cover-img, .hero-section__video, .theme-product-card__image {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

/* ---------------------------------------------------------------------
 * CHECKOUT (Section 13)
 * ------------------------------------------------------------------- */
body.woocommerce-checkout .site-main { padding-top: 1.5rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { body.woocommerce-checkout .site-main { padding-top: 2rem; } }
body.woocommerce-checkout .page-title { max-width: 80rem; margin: 0 auto 2rem; padding: 0 1.5rem; }
@media (min-width: 1024px) { body.woocommerce-checkout .page-title { padding: 0 2rem; } }

body.woocommerce-checkout .wc-block-checkout { display: block; }
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	body.woocommerce-checkout .wc-block-checkout__main-and-sidebar {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap, 2rem);
		align-items: start;
	}
	body.woocommerce-checkout .wc-block-checkout__main { order: 2; }
	body.woocommerce-checkout .wc-block-checkout__sidebar { order: 1; }
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0; width: 100%; max-width: none;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	width: 100% !important; max-width: none !important;
	font-family: var(--font-body) !important; font-size: 1rem !important; color: var(--color-foreground) !important;
	border: 1px solid var(--color-border) !important; border-radius: 6px !important; background: var(--color-background) !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus {
	outline: none !important; box-shadow: 0 0 0 1px var(--color-primary) !important; border-color: var(--color-primary) !important;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-card);
	border-radius: var(--card-radius);
	padding: var(--section-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; font-family: var(--font-body) !important;
	text-transform: none !important; font-weight: 700 !important;
}
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; border-radius: 8px; }
body.woocommerce-checkout .woocommerce-error { display: block !important; }

/* ---------------------------------------------------------------------
 * OTHER WOOCOMMERCE PAGES: WIDTH & ALIGNMENT (Section 13.7)
 * ------------------------------------------------------------------- */
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content { max-width: 80rem; margin: 0 auto; }

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

/* ---------------------------------------------------------------------
 * VARIABLE PRODUCT PILLS
 * ------------------------------------------------------------------- */
.theme-variation-group { margin-bottom: 1.5rem; }
.theme-variation-group__label {
	font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
	font-family: var(--font-body); font-weight: 400; margin-bottom: 0.75rem;
}
.theme-variation-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-variation-pill {
	padding: 0.5rem 1rem; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
	border-radius: 999px; border: 1px solid var(--color-border); font-family: var(--font-body);
	color: var(--color-foreground); transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.theme-variation-pill:hover { border-color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-variation-pill.is-selected {
	background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground);
}

/* ---------------------------------------------------------------------
 * MOBILE / TABLET SIDE PADDING GUARD
 * ------------------------------------------------------------------- */
@media (max-width: 1023px) {
	body.woocommerce-checkout .site-main,
	.single-product .theme-product-page.container-wide,
	.site-footer .container-wide.site-footer__inner {
		padding-left: 1.5rem !important;
		padding-right: 1.5rem !important;
	}
}

/* ---------------------------------------------------------------------
 * CHECKOUT INPUT PARITY (!important)
 * ------------------------------------------------------------------- */
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-text-input input[type="text"],
body.woocommerce-checkout .wc-block-components-text-input input[type="email"],
body.woocommerce-checkout .wc-block-components-text-input input[type="tel"],
body.woocommerce-checkout .wc-block-components-text-input input[type="number"],
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-combobox .components-custom-select-control__button,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body) !important;
	font-size: 1rem !important;
	font-weight: 400 !important;
	color: var(--color-foreground) !important;
	background: var(--color-background) !important;
	border: 1px solid var(--color-border) !important;
	border-radius: 6px !important;
	box-shadow: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus {
	outline: none !important;
	box-shadow: 0 0 0 1px var(--color-primary) !important;
	border-color: var(--color-primary) !important;
}
body.woocommerce-checkout .wc-block-components-combobox .components-custom-select-control__menu {
	background: var(--color-background) !important;
	border: 1px solid var(--color-border) !important;
	border-radius: 6px !important;
}
body.woocommerce-checkout .wc-block-components-combobox .components-custom-select-control__item {
	font-family: var(--font-body) !important;
	color: var(--color-foreground) !important;
}

/* Product gallery stack images */
.theme-product-gallery__stack-item img,
.theme-product-gallery__stack-item .theme-product-gallery__img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

.theme-cart-drawer__item-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

/* Nav menus injected by WordPress on mobile */
.theme-mobile-menu .theme-nav-list,
.theme-mobile-menu ul {
	display: flex !important;
	flex-direction: column !important;
}
.theme-mobile-menu .theme-nav-list li,
.theme-mobile-menu ul li {
	width: 100%;
}
