/* ==========================================================================
   Chuck Paradise — theme.css
   Colors are emitted as CSS variables by functions.php (Section 6/22.9).
   Fallback values below mirror the original design tokens exactly.
   ========================================================================== */

:root {
	--color-background: #0d0d0d;
	--color-foreground: #eeebe8;
	--color-card: #171717;
	--color-primary: #e42525;
	--color-primary-foreground: #f6f5f3;
	--color-secondary: #242424;
	--color-muted: #292929;
	--color-muted-foreground: #a49e98;
	--color-accent: #f45a34;
	--color-border: #2e2e2e;
	--color-button-text: var(--color-primary-foreground);

	--font-display: 'Rubik Distressed', 'Rubik Wet Paint', 'Fraunces', serif;
	--font-body: 'Inter', sans-serif;

	--radius: 0.5rem;
	--btn-radius: 0px;
	--btn-height: 52px;
	--btn-padding: 0.9rem 2rem;
	--btn-font-size: 12px;
	--btn-font-weight: 700;
	--btn-letter-spacing: 0.22em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.75rem;
	--header-height: 96px;
	--logo-height: 60px;
	--checkout-gap: 2.5rem;

	--shadow-soft: 0 4px 20px -4px rgba(0, 0, 0, 0.55);
	--shadow-elevated: 0 12px 45px -10px rgba(228, 37, 37, 0.35);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET / BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: hidden; }

body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	background-image:
		radial-gradient(circle at 20% 10%, rgba(228, 37, 37, 0.14) 0%, transparent 55%),
		radial-gradient(circle at 80% 90%, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
	background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	font-size: inherit;
	font-family: var(--font-display);
	letter-spacing: 0.005em;
	margin: 0;
	text-shadow:
		0 1px 0 rgba(0, 0, 0, 0.5),
		0 2px 0 rgba(0, 0, 0, 0.4),
		0 3px 0 rgba(0, 0, 0, 0.3),
		0 4px 6px rgba(228, 37, 37, 0.35),
		0 8px 20px rgba(0, 0, 0, 0.55);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea, select { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

img:not(.cover-img):not(.hero-bg-img):not(.product-card-img):not(.theme-product-main-img):not(.theme-product-card__image):not(.attachment-theme-product) {
	max-width: 100%;
	height: auto;
	display: block;
}
.cover-img, .hero-bg-img, .theme-product-main-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

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

.section-pad-about { padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 768px) { .section-pad-about { padding-left: 3.5rem; padding-right: 3.5rem; } }

.scroll-mt { scroll-margin-top: 6rem; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.3333%); } }
@keyframes glitch {
	0%, 92%, 100% { transform: translate(0, 0); text-shadow: none; }
	93% { transform: translate(-1px, 0); text-shadow: 2px 0 rgba(228,37,37,0.7), -2px 0 rgba(244,90,52,0.5); }
	95% { transform: translate(1px, -1px); text-shadow: -2px 0 rgba(228,37,37,0.7), 2px 0 rgba(244,90,52,0.5); }
	97% { transform: translate(-1px, 1px); text-shadow: 2px 0 rgba(228,37,37,0.7), -2px 0 rgba(244,90,52,0.5); }
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
@keyframes modalExit { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.94); } }

.animate-marquee { animation: marquee 35s linear infinite; }
.animate-glitch { animation: glitch 3.2s steps(1, end) infinite; }

.reveal-item {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
	will-change: opacity, transform;
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

body.is-customizer .reveal-item,
body.is-customizer [data-reveal] {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none !important; opacity: 1 !important; transform: none !important; }
	.animate-marquee, .animate-glitch, .shimmer-bg { animation: none !important; }
}

.shimmer-bg {
	background: linear-gradient(90deg, rgba(41,41,41,0.4) 0%, rgba(41,41,41,0.7) 50%, rgba(41,41,41,0.4) 100%);
	background-size: 200% 100%;
	animation: shimmer 2.2s linear infinite;
}

.btn-shine { position: relative; overflow: hidden; isolation: isolate; }
.btn-shine::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.28) 50%, transparent 80%);
	transform: translateX(-120%);
	transition: transform 0.7s var(--transition-smooth);
	pointer-events: none;
	z-index: 1;
}
.btn-shine:hover::after { transform: translateX(120%); }

.link-underline { position: relative; display: inline-block; }
.link-underline::after {
	content: '';
	position: absolute;
	bottom: 0; left: 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); }

.grunge-edge { position: relative; }
.grunge-edge::after {
	content: '';
	position: absolute;
	left: 0; bottom: -0.35em;
	width: 3rem; height: 3px;
	background: var(--color-primary);
	box-shadow: 0.6rem 0 0 rgba(228,37,37,0.5), 1.2rem 0 0 rgba(228,37,37,0.25);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-hero-primary, .btn-hero-outline, .theme-btn-primary, .theme-btn-outline,
.btn-outline-primary {
	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);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	transition: transform 0.3s var(--transition-smooth), background-color 0.3s, color 0.3s, opacity 0.2s;
	cursor: pointer;
	text-transform: none;
}
.btn-hero-primary, .theme-btn-primary { background: var(--color-primary); color: var(--color-primary-foreground); text-transform: uppercase; }
.btn-hero-primary:hover, .theme-btn-primary:hover { background: color-mix(in srgb, var(--color-primary) 90%, transparent); transform: scale(1.03); }
.btn-hero-outline, .theme-btn-outline, .btn-outline-primary {
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
	background: transparent;
	text-transform: uppercase;
}
.btn-hero-outline:hover, .theme-btn-outline:hover, .btn-outline-primary:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.btn-hero-outline { border-color: color-mix(in srgb, var(--color-foreground) 80%, transparent); color: var(--color-foreground); }
.btn-hero-outline:hover { border-color: var(--color-primary); color: var(--color-primary); background: color-mix(in srgb, var(--color-foreground) 10%, transparent); }

.single-product .single_add_to_cart_button.button,
.theme-btn-primary,
a.single_add_to_cart_button,
a.add_to_cart_button {
	text-transform: none;
}

/* ==========================================================================
   SECTION HEADINGS (Section 2.2.5 — per-section scales)
   ========================================================================== */

.section-kicker {
	display: block;
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 700;
	margin-bottom: 0.75rem;
}
.section-head--center { text-align: center; margin-bottom: 3rem; }

.section-heading, .category-strip-heading, .services-heading, .videos-heading,
.listening-heading, .news-heading, .faq-heading, .shop-heading, .featured-heading,
.artist-heading {
	font-weight: 400;
	line-height: 1.05;
	font-size: 1.875rem;
}
@media (min-width: 768px) {
	.category-strip-heading { font-size: 2.25rem; }
	.services-heading { font-size: 3rem; }
	.featured-heading, .videos-heading, .listening-heading, .news-heading, .shop-heading { font-size: 3rem; }
	.faq-heading { font-size: 3rem; }
	.artist-heading { font-size: 3rem; }
}
@media (min-width: 1024px) {
	.services-heading { font-size: 3.75rem; }
	.featured-heading, .videos-heading, .listening-heading, .news-heading, .shop-heading, .faq-heading { font-size: 3.75rem; }
}

.section-cta-row { text-align: center; margin-top: 3.5rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	width: 100%;
	background: var(--color-background);
	transition: background-color 0.3s, box-shadow 0.3s;
}
.site-header.is-solid,
.site-header.is-scrolled,
.site-header.is-menu-open {
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.site-header__bar { border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); }
.site-nav { display: flex; align-items: center; height: 80px; }
@media (min-width: 768px) { .site-nav { height: 96px; } }

.site-nav__side { display: none; align-items: center; flex: 1; gap: 2.5rem; }
.site-nav__side--left { justify-content: flex-start; }
.site-nav__side--right { justify-content: flex-end; gap: 2rem; }
@media (min-width: 1024px) { .site-nav__side { display: flex; } }

.theme-nav-list { display: flex; align-items: center; gap: 2.5rem; }
.theme-nav-list--right { gap: 2rem; }
.theme-nav-link, .theme-nav-list a {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	transition: color 0.2s;
}
.theme-nav-link:hover, .theme-nav-list a:hover { color: var(--color-primary); }

.site-logo { display: none; flex-shrink: 0; padding: 0 1.5rem; align-items: center; justify-content: center; }
@media (min-width: 1024px) { .site-logo { display: flex; } }
.site-logo-img { height: 48px !important; width: auto !important; display: block; object-fit: contain; }
@media (min-width: 1024px) { .site-logo-img { height: 64px !important; } }
.site-logo-text { line-height: var(--logo-height); font-family: var(--font-display); font-size: 1.5rem; display: block; }

.theme-cart-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 30%, transparent);
	transition: transform 0.3s, border-color 0.3s, color 0.3s;
	color: var(--color-foreground);
}
.theme-cart-button:hover { transform: scale(1.1); border-color: var(--color-primary); color: var(--color-primary); }
.theme-cart-count {
	position: absolute; top: -6px; right: -6px;
	min-width: 18px; height: 18px;
	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;
	padding: 0 4px;
}
.theme-cart-count:empty { display: none; }

.mobile-menu-toggle { display: inline-flex; padding: 0.5rem; align-items: center; justify-content: center; }
.mobile-menu-toggle .icon-close { display: none; }
.mobile-menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.mobile-menu-toggle[aria-expanded="true"] .icon-close { display: inline-flex; }
.mobile-menu-toggle .theme-icon { width: 20px; height: 20px; }
.theme-cart-button .theme-icon { width: 16px; height: 16px; }
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

.site-nav__side--right { display: flex; margin-left: auto; align-items: center; gap: 1.25rem; }
@media (max-width: 1023px) {
	.site-nav__side--right .theme-nav-list--right { display: none; }
	.site-logo { display: flex; margin-right: auto; padding-left: 0; }
	.site-nav { justify-content: space-between; }
}

.mobile-menu { display: none; border-top: 1px solid var(--color-border); padding: 1rem 0; }
.mobile-menu.is-open { display: block; animation: fadeIn 0.3s ease; }
.theme-nav-list--mobile { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
.theme-nav-list--mobile .menu-item { width: 100%; border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); }
.theme-nav-list--mobile a { display: block; padding: 0.75rem 0; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero-section { margin-top: -80px; }
@media (min-width: 768px) { .hero-section { margin-top: -96px; } }
.hero-video-wrap {
	position: relative;
	width: 100%;
	min-height: 620px;
	height: 100vh;
	overflow: hidden;
	background: #000;
	padding-top: 80px;
}
@media (min-width: 768px) { .hero-video-wrap { padding-top: 96px; } }
.hero-video { z-index: 0; }
.hero-gradient {
	position: absolute; inset: 0;
	background: linear-gradient(to bottom, color-mix(in srgb, var(--color-background) 20%, transparent), color-mix(in srgb, var(--color-background) 10%, transparent), color-mix(in srgb, var(--color-background) 50%, transparent));
	z-index: 1;
}
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-content__inner { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; max-width: 64rem; padding: 0 0.5rem; }
.hero-kicker { display: block; font-family: var(--font-body); font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--color-primary); font-weight: 700; margin-bottom: 1.5rem; }
.hero-title { font-family: var(--font-display); font-weight: 400; line-height: 0.95; letter-spacing: -0.02em; font-size: clamp(3rem, 10vw, 8rem); }
.hero-title em { font-style: italic; color: var(--color-primary); }
.hero-subtitle { margin-top: 1.5rem; max-width: 36rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); font-size: 1rem; font-family: var(--font-body); font-weight: 400; }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.125rem; } }
.hero-actions { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
.hero-actions .btn-hero-primary, .hero-actions .btn-hero-outline { padding: 1rem 2.5rem; font-size: 11px; letter-spacing: 0.28em; }
.hero-marquee-wrap { width: 100vw; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }

.hero-marquee {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-top: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
	background: color-mix(in srgb, var(--color-background) 70%, transparent);
	backdrop-filter: blur(4px);
	padding: 1rem 0;
}
.hero-marquee__track { display: flex; width: max-content; }
.hero-marquee__track:hover { animation-play-state: paused; }
.hero-marquee__item { display: flex; align-items: center; gap: 0.75rem; padding: 0 1.5rem; flex-shrink: 0; white-space: nowrap; }
.hero-marquee__item span { font-size: 0.75rem; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); }
.hero-marquee__item svg { color: var(--color-primary); }

/* ==========================================================================
   CATEGORY STRIP
   ========================================================================== */

.category-strip-section { padding: 4rem 0 5rem; }
.category-tiles { display: grid; grid-template-columns: repeat(3, 1fr); justify-items: center; gap: 2rem 1rem; padding: 1.5rem 0.5rem 1rem; }
@media (min-width: 1024px) { .category-tiles { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; } }
.category-tile { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.category-tile__icon {
	width: 6rem; height: 6rem;
	display: flex; align-items: center; justify-content: center;
	background: var(--color-secondary);
	border: 2px solid var(--color-border);
	padding: 1.5rem;
	transition: transform 0.5s, border-color 0.5s, box-shadow 0.5s;
	color: var(--color-primary);
}
@media (min-width: 640px) { .category-tile__icon { width: 8rem; height: 8rem; } }
@media (min-width: 768px) { .category-tile__icon { width: 10rem; height: 10rem; } }
.category-tile:hover .category-tile__icon { transform: scale(1.05); border-color: color-mix(in srgb, var(--color-primary) 80%, transparent); box-shadow: var(--shadow-elevated); }
.category-tile__icon svg { width: 100%; height: 100%; transition: transform 0.7s; }
.category-tile:hover .category-tile__icon svg { transform: scale(1.1) rotate(6deg); }
.category-tile__label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.category-tile:hover .category-tile__label { color: var(--color-primary); }
.category-tile.is-active .category-tile__icon { border-color: var(--color-primary); }

/* ==========================================================================
   PRODUCT GRID / CARDS
   ========================================================================== */

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

.theme-featured-products__grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 768px) { .theme-featured-products__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3rem; } }

.theme-product-card-wrap { display: flex; height: 100%; }
.theme-product-card { position: relative; display: flex; flex-direction: column; height: 100%; width: 100%; }
.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__add-to-cart,
.theme-product-card__info { pointer-events: auto; }

.theme-product-card__image-wrapper {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--color-card);
	margin-bottom: 1.25rem;
	border-radius: 1rem;
}
.theme-product-card__image-wrapper img,
.theme-product-card__image-wrapper .attachment-theme-product,
.theme-product-card__image-wrapper .wp-post-image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	transition: transform 0.7s var(--transition-smooth);
}
.theme-product-card { transition: transform 0.5s var(--transition-smooth); }
.theme-product-card:hover { transform: translateY(-4px); }
.theme-product-card:hover .theme-product-card__image-wrapper img { transform: scale(1.06); }

.theme-product-card__badge {
	position: absolute; top: 1rem; right: 1rem; z-index: 3;
	padding: 0.25rem 0.75rem;
	border-radius: 0.375rem;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.02em;
	background: var(--color-foreground);
	color: var(--color-background);
}

.theme-product-card__add-to-cart {
	position: absolute;
	left: 1rem; right: 1rem; bottom: 1rem;
	z-index: 3;
	padding: 0.75rem 1rem;
	border-radius: 999px;
	background: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border: 1px solid var(--color-primary) !important;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	text-align: center;
	opacity: 0;
	transform: translateY(0.5rem);
	transition: opacity 0.3s, transform 0.3s, background-color 0.3s, color 0.3s;
}
.theme-product-card:hover .theme-product-card__add-to-cart { opacity: 1; transform: translateY(0); }
.theme-product-card__add-to-cart:hover { background: var(--color-background) !important; color: var(--color-primary) !important; }

.theme-product-card__info { flex: 1; padding: 0 0.25rem; display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.theme-product-card__cat { font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-muted-foreground); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.theme-product-card__title { font-size: 1rem; font-weight: 500; line-height: 1.3; color: var(--color-foreground); transition: color 0.3s; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.125rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.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); }

/* ==========================================================================
   FEATURED / BANNER / ABOUT / ARTIST
   ========================================================================== */

.featured-section, .videos-section, .listening-section, .services-section,
.news-section, .faq-section, .shop-section, .about-section, .artist-section {
	padding: 4rem 0 6rem;
}
@media (min-width: 768px) {
	.featured-section, .videos-section, .listening-section, .services-section,
	.news-section, .faq-section, .shop-section, .about-section, .artist-section {
		padding: 5rem 0 7rem;
	}
}

.parallax-banner-section { position: relative; width: 100%; overflow: hidden; height: 40vh; background: var(--color-background); }
@media (min-width: 768px) { .parallax-banner-section { height: 55vh; } }
@media (min-width: 1024px) { .parallax-banner-section { height: 65vh; } }
.parallax-banner-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 120%;
	object-fit: cover;
	will-change: transform;
}
.parallax-banner-gradient { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, color-mix(in srgb, var(--color-background) 40%, transparent), transparent, color-mix(in srgb, var(--color-background) 70%, transparent)); pointer-events: none; }
.artist-section,
.news-section { background: var(--color-card); }

.about-section__inner { max-width: 48rem; margin: 0 auto; text-align: center; padding: 2.5rem 1.5rem 6rem; }
@media (min-width: 768px) { .about-section__inner { padding: 3.5rem 3.5rem 8rem; } }
.about-lead { font-size: 1.5rem; line-height: 1.25; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .about-lead { font-size: 2.25rem; } }
.about-lead em { font-style: italic; color: var(--color-primary); }
.about-copy { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; margin-bottom: 1.25rem; font-size: 1rem; }
@media (min-width: 768px) { .about-copy { font-size: 1.125rem; } }
.about-cta { margin-top: 2.5rem; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; color: var(--color-primary); }

.artist-section__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: stretch; }
@media (min-width: 768px) { .artist-section__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.artist-section__media { position: relative; min-height: 320px; overflow: hidden; background: var(--color-secondary); border: 1px solid var(--color-border); }
.artist-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding-top: 1.5rem; margin-top: 1.5rem; border-top: 1px solid var(--color-border); }
.artist-stat__value { font-size: 1.5rem; color: var(--color-primary); }
@media (min-width: 768px) { .artist-stat__value { font-size: 1.875rem; } }
.artist-stat__label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-muted-foreground); margin-top: 0.25rem; }

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */

.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: center;
	background: var(--color-card);
	padding: 2rem;
	border: 1px solid var(--color-border);
	transition: border-color 0.5s, box-shadow 0.5s, transform 0.3s;
}
.service-card:hover { border-color: color-mix(in srgb, var(--color-primary) 70%, transparent); box-shadow: var(--shadow-elevated); transform: translateY(-6px); }
.service-card__corner { position: absolute; width: 1.5rem; height: 1.5rem; border-color: color-mix(in srgb, var(--color-primary) 50%, transparent); }
.service-card__corner--tl { top: 0; left: 0; border-top: 1px solid; border-left: 1px solid; }
.service-card__corner--br { bottom: 0; right: 0; border-bottom: 1px solid; border-right: 1px solid; }
.service-card__icon { display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--color-primary); }
.service-card__icon svg { width: 2.5rem; height: 2.5rem; }
.service-card__kicker { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: var(--color-primary); margin-bottom: 0.5rem; }
.service-card__title { font-size: 1.125rem; margin-bottom: 0.75rem; }
.service-card__desc { font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.6; margin-bottom: 1.5rem; }
.service-card__cta { margin-top: auto; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: var(--color-primary); transition: color 0.2s; }
.service-card__cta:hover { color: var(--color-foreground); }

/* ==========================================================================
   VIDEOS / LISTENING
   ========================================================================== */

.videos-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .videos-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.video-card, .track-card { position: relative; display: block; overflow: hidden; background: var(--color-card); border: 1px solid var(--color-border); transition: border-color 0.5s, box-shadow 0.5s, transform 0.3s; }
.video-card:hover, .track-card:hover { border-color: color-mix(in srgb, var(--color-primary) 70%, transparent); box-shadow: var(--shadow-elevated); transform: translateY(-6px); }
.video-card__thumb-wrap { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--color-secondary); }
.track-card__thumb-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-secondary); }
.video-card__thumb, .track-card__thumb { filter: brightness(1.1); transition: transform 0.9s; }
.video-card:hover .video-card__thumb, .track-card:hover .track-card__thumb { transform: scale(1.1); }
.video-card__play, .track-card__play {
	position: absolute; inset: 0; margin: auto; width: 4rem; height: 4rem;
	display: flex; align-items: center; justify-content: center;
	border-radius: 999px;
	background: color-mix(in srgb, var(--color-primary) 90%, transparent);
	color: var(--color-primary-foreground);
	transition: transform 0.3s, background-color 0.3s;
}
.track-card__play { width: 3.5rem; height: 3.5rem; }
.video-card:hover .video-card__play, .track-card:hover .track-card__play { background: var(--color-primary); transform: scale(1.1); }
.video-card__body, .track-card__body { padding: 1.5rem; }
.track-card__body { padding: 1.25rem; }
.video-card__subtitle, .track-card__year { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--color-primary); font-weight: 700; margin-bottom: 0.5rem; }
.video-card__title, .track-card__title { font-size: 1.25rem; transition: color 0.3s; }
.track-card__title { font-size: 1.125rem; }
.video-card:hover .video-card__title, .track-card:hover .track-card__title { color: var(--color-primary); }

.listening-slider-wrap { position: relative; }
.listening-swipe-hint { display: block; text-align: center; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 1rem; }
@media (min-width: 1024px) { .listening-swipe-hint { display: none; } }
.listening-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; border: 1px solid color-mix(in srgb, var(--color-primary) 60%, transparent); background: color-mix(in srgb, var(--color-background) 85%, transparent); color: var(--color-primary); }
.listening-nav--prev { left: 0; }
.listening-nav--next { right: 0; }
@media (min-width: 1024px) { .listening-nav { display: none; } }
.listening-slider { display: flex; gap: 1rem; overflow-x: auto; padding: 0 0 1rem; scroll-snap-type: x mandatory; scrollbar-width: none; margin: 0; }
.listening-slider::-webkit-scrollbar { display: none; }
.listening-slider .track-card { flex-shrink: 0; width: 70vw; max-width: 260px; scroll-snap-align: start; }
@media (min-width: 1024px) { .listening-slider { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; overflow: visible; margin: 0; padding: 0; } .listening-slider .track-card { width: auto; max-width: none; } }

/* ==========================================================================
   FULL-BLEED VIDEO BANDS (podcast / collaborate)
   ========================================================================== */

.fullbleed-band { position: relative; width: 100%; height: 66.6667vh; overflow: hidden; }
.fullbleed-band__video { z-index: 0; }
.fullbleed-band__overlay { position: absolute; inset: 0; z-index: 1; }
.fullbleed-band__overlay--dark { background: rgba(0,0,0,0.65); }
.fullbleed-band__overlay--light { background: rgba(0,0,0,0.25); }
.fullbleed-band__content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; justify-content: center; }
.fullbleed-band__copy { max-width: 36rem; margin: 0 auto; text-align: center; color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,0.75), 0 1px 3px rgba(0,0,0,0.9); }
.fullbleed-band__kicker { display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700; margin-bottom: 0.75rem; color: var(--color-primary); }
.fullbleed-band__title { font-size: 1.875rem; line-height: 1.2; margin-bottom: 1.25rem; font-weight: 400; }
@media (min-width: 768px) { .fullbleed-band__title { font-size: 3rem; } }
@media (min-width: 1024px) { .fullbleed-band__title { font-size: 3.75rem; } }
.fullbleed-band__body { font-size: 1rem; margin-bottom: 2rem; color: rgba(255,255,255,0.95); }
@media (min-width: 768px) { .fullbleed-band__body { font-size: 1.125rem; } }
.fullbleed-band .btn-hero-primary { text-shadow: none; }

/* ==========================================================================
   SHOP SECTION
   ========================================================================== */

.shop-search { position: relative; max-width: 28rem; margin: 0 auto 2rem; }
.shop-search svg { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); }
.shop-search__input { width: 100%; padding: 0.5rem 0 0.5rem 1.75rem; background: transparent; border: none; border-bottom: 1px solid var(--color-border); color: var(--color-foreground); font-size: 1rem; transition: border-color 0.3s; }
.shop-search__input:focus { outline: none; border-color: var(--color-primary); }

.shop-cat-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.shop-cat-pill {
	padding: 0.5rem 1.25rem;
	font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
	border: 1px solid var(--color-border);
	color: var(--color-foreground);
	transition: all 0.3s;
}
.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-price-filter { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.shop-price-filter__toggle { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); transition: color 0.3s; }
.shop-price-filter__toggle:hover { color: var(--color-foreground); }
.shop-price-filter__toggle svg { transition: transform 0.3s; }
.shop-price-filter.is-open .shop-price-filter__toggle svg { transform: rotate(180deg); }
.shop-price-filter__panel { width: 100%; max-width: 22rem; overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.3s var(--transition-smooth), opacity 0.3s; }
.shop-price-filter.is-open .shop-price-filter__panel { max-height: 200px; opacity: 1; }
.shop-price-filter__values { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.5rem; }

.price-range-wrapper { position: relative; height: 1.5rem; margin-top: 0.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); }
.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: 999px; background: var(--color-primary); border: 2px solid var(--color-primary-foreground); cursor: pointer; margin-top: 0; }
.range-input::-moz-range-thumb { pointer-events: auto; width: 16px; height: 16px; border-radius: 999px; background: var(--color-primary); border: 2px solid var(--color-primary-foreground); cursor: pointer; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.shop-empty-message { text-align: center; padding: 5rem 0; color: var(--color-muted-foreground); }

/* ==========================================================================
   NEWS SECTION + MODAL
   ========================================================================== */

.news-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .news-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.news-card { position: relative; background: var(--color-background); border: 1px solid var(--color-border); overflow: hidden; transition: border-color 0.5s, box-shadow 0.5s, transform 0.3s; cursor: pointer; }
.news-card:hover { border-color: color-mix(in srgb, var(--color-primary) 70%, transparent); box-shadow: var(--shadow-elevated); transform: translateY(-6px); }
.news-card__image-wrap { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.news-card__image { transition: transform 0.7s; }
.news-card:hover .news-card__image { transform: scale(1.05); }
.news-card__image-gradient { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-background) 70%, transparent), color-mix(in srgb, var(--color-background) 10%, transparent), transparent); }
.news-card__body { position: relative; padding: 2rem; }
.news-card__corner { position: absolute; width: 1.5rem; height: 1.5rem; border-color: color-mix(in srgb, var(--color-primary) 50%, transparent); }
.news-card__corner--tl { top: 0; left: 0; border-top: 1px solid; border-left: 1px solid; }
.news-card__corner--br { bottom: 0; right: 0; border-bottom: 1px solid; border-right: 1px solid; }
.news-card__tag { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 700; color: var(--color-primary); margin-bottom: 1rem; }
.news-card__date { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 0.75rem; }
.news-card__title { font-size: 1.5rem; line-height: 1.3; margin-bottom: 0.75rem; }
.news-card__excerpt { font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.6; }
.news-card__readmore { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--color-primary); transition: gap 0.3s; }
.news-card:hover .news-card__readmore { gap: 0.75rem; }

.theme-news-modal, .theme-contact-modal {
	position: fixed; inset: 0; z-index: 100;
	display: none;
	align-items: center; justify-content: center;
	padding: 1rem;
}
.theme-news-modal.is-open, .theme-contact-modal.is-open { display: flex; }
.theme-news-modal__overlay, .theme-contact-modal__overlay {
	position: absolute; inset: 0;
	background: rgba(0,0,0,0.7);
	animation: fadeIn 0.3s ease;
}
.theme-news-modal__panel, .theme-contact-modal__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 42rem;
	max-height: 90vh;
	overflow-y: auto;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	animation: scaleIn 0.3s var(--transition-smooth);
}
.theme-news-modal.is-closing .theme-news-modal__panel,
.theme-contact-modal.is-closing .theme-contact-modal__panel { animation: modalExit 0.2s var(--transition-smooth) forwards; }
.theme-news-modal__close, .theme-contact-modal__close { position: absolute; top: 1rem; right: 1rem; z-index: 2; width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--color-background) 70%, transparent); border-radius: 999px; }
.theme-news-modal__image-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.theme-news-modal__body, .theme-contact-modal__body { padding: 2rem; }
.theme-news-modal__tag { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 700; color: var(--color-primary); margin-bottom: 0.5rem; }
.theme-news-modal__date { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 0.75rem; }
.theme-news-modal__title { font-size: 1.75rem; margin-bottom: 1rem; }
.theme-news-modal__details p { color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 1rem; }
.theme-news-modal__cta { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; padding: 0.75rem 1.5rem; border: 1px solid var(--color-primary); color: var(--color-primary); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; transition: all 0.3s; }
.theme-news-modal__cta:hover { background: var(--color-primary); color: var(--color-primary-foreground); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-section__head { max-width: 42rem; margin-left: auto; margin-right: auto; }
.section-head--center.faq-section__head { text-align: center; }
.faq-section__footer-text { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-size: 1rem; }
@media (min-width: 768px) { .faq-section__footer-text { font-size: 1.125rem; } }
.faq-tabs { display: none; flex-wrap: wrap; justify-content: center; gap: 0.625rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .faq-tabs { display: flex; } }
.faq-panels:not(.faq-panels--mobile) { display: none; }
@media (min-width: 768px) { .faq-panels:not(.faq-panels--mobile) { display: block; } }
.faq-panels:not(.faq-panels--mobile) .faq-panel { display: none; }
.faq-panels:not(.faq-panels--mobile) .faq-panel.is-active { display: block; }
.faq-mobile-stack { display: block; }
@media (min-width: 768px) { .faq-mobile-stack { display: none; } }
.faq-mobile-category { text-align: center; margin-bottom: 2.5rem; }
.faq-mobile-category__label {
	display: inline-block;
	border-radius: 999px;
	border: 1px solid var(--color-primary);
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	padding: 0.5rem 1rem;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 1rem;
}
.faq-mobile-category .faq-item__question span:first-child { font-family: var(--font-display); }
.faq-tab { border-radius: 999px; border: 1px solid var(--color-primary); padding: 0.625rem 1.25rem; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--color-foreground); transition: all 0.3s; }
.faq-tab:hover { background: color-mix(in srgb, var(--color-primary) 15%, transparent); }
.faq-tab.is-active { background: var(--color-primary); color: var(--color-primary-foreground); }
@media (min-width: 768px) {
	.faq-panels { max-width: 48rem; margin: 0 auto; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
	.faq-panels .faq-panel.is-active { animation: fadeIn 0.25s ease; }
}
.faq-mobile-stack { max-width: 42rem; margin: 0 auto; }
.faq-mobile-stack .faq-mobile-category + .faq-mobile-category { margin-top: 2.5rem; }
.faq-mobile-stack .faq-panels--mobile {
	display: block;
	max-width: none;
	margin: 0;
	border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	text-align: left;
}
.faq-mobile-stack .faq-panels--mobile .faq-panel { display: block; }
.theme-welcome-popup__close { position: absolute; top: 0.75rem; right: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-welcome-popup__close:hover { color: var(--color-foreground); }
.theme-floating-player__unmute-mobile { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; }
.theme-floating-player__unmute-desktop { display: none; }
@media (min-width: 640px) {
	.theme-floating-player__unmute-mobile { display: none; }
	.theme-floating-player__unmute-desktop { display: inline; }
}
.theme-scroll-to-top__icon { position: relative; z-index: 1; }
.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-item__question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.faq-item__question span:first-child { font-size: 1.125rem; line-height: 1.4; transition: color 0.2s; }
.faq-item__question:hover span:first-child { color: var(--color-primary); }
.faq-item__icon { flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 999px; border: 1px solid var(--color-primary); display: flex; align-items: center; justify-content: center; color: var(--color-primary); transition: all 0.3s; }
.faq-item__icon svg { transition: transform 0.3s; }
.faq-item[aria-expanded="true"] .faq-item__icon,
.faq-item.is-open .faq-item__icon { background: var(--color-primary); color: var(--color-primary-foreground); }
.faq-item.is-open .faq-item__icon svg { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--transition-smooth); }
.faq-item.is-open .faq-item__answer { max-height: 400px; }
.faq-item__answer p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; padding: 0 3rem 1.5rem 0; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-cta-section { padding: 0; position: relative; overflow: hidden; }
.final-cta-bg { position: relative; min-height: 85vh; width: 100%; display: flex; align-items: center; justify-content: center; padding: 6rem 1rem; background-size: cover; background-position: center; }
.final-cta-overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-background) 70%, transparent); }
.final-cta-card {
	position: relative; z-index: 1;
	width: 100%; max-width: 56rem;
	border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
	backdrop-filter: blur(6px);
	background: linear-gradient(135deg, color-mix(in srgb, var(--color-background) 96%, transparent) 0%, color-mix(in srgb, var(--color-card) 90%, transparent) 55%, color-mix(in srgb, var(--color-primary) 35%, transparent) 100%);
	box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
	padding: 3.5rem 2rem;
	text-align: center;
}
@media (min-width: 768px) { .final-cta-card { padding: 5rem 4rem; } }
.final-cta-eyebrow { font-style: italic; color: color-mix(in srgb, var(--color-primary) 90%, transparent); font-size: 1.125rem; margin-bottom: 1rem; }
.final-cta-title { font-size: 2.25rem; line-height: 1.05; margin-bottom: 1.5rem; font-weight: 400; }
@media (min-width: 768px) { .final-cta-title { font-size: 3rem; } }
@media (min-width: 1024px) { .final-cta-title { font-size: 3.75rem; } }
.final-cta-body { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); max-width: 36rem; margin: 0 auto 2.5rem; font-size: 1rem; }
@media (min-width: 768px) { .final-cta-body { font-size: 1.125rem; } }
.final-cta-actions { margin-bottom: 2rem; }
.final-cta-socials { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem 1rem; font-size: 0.8rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.final-cta-socials a { display: inline-flex; align-items: center; gap: 0.375rem; transition: color 0.2s; }
.final-cta-socials a:hover { color: var(--color-primary); }
.final-cta-dot { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); }

/* ==========================================================================
   CART DRAWER
   ========================================================================== */

#theme-cart-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,0.5); 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: 28rem;
	background: var(--color-background);
	z-index: 91;
	display: flex; flex-direction: column;
	box-shadow: var(--shadow-elevated);
	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; }
.theme-cart-drawer__empty-icon { width: 3rem; height: 3rem; margin-bottom: 1rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__items { flex: 1; overflow: 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; overflow: hidden; background: var(--color-secondary); }
.theme-cart-item__image img { width: 100% !important; height: 100% !important; object-fit: cover; }
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__name { display: block; font-size: 0.875rem; font-weight: 500; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.theme-cart-item__price { font-size: 0.875rem; 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.15rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; border-radius: 4px; transition: background 0.2s; }
.theme-cart-item__qty-btn:hover { background: var(--color-secondary); }
.theme-cart-item__qty { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 0.875rem; color: var(--color-muted-foreground); transition: color 0.2s; }
.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.875rem; }
.theme-cart-drawer__note { font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout { width: 100%; padding: 1rem; text-align: center; }
.theme-cart-drawer__empty-btn { width: 100%; padding: 0.6rem; justify-content: center; font-size: 0.8rem; }

/* 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; }

/* ==========================================================================
   CONTACT MODAL
   ========================================================================== */

.theme-contact-modal__title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-contact-modal__desc, .theme-contact-modal__email { color: var(--color-muted-foreground); font-size: 0.9rem; margin-bottom: 0.5rem; }
.theme-contact-form { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.theme-contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .theme-contact-form__row { grid-template-columns: 1fr 1fr; } }
.theme-contact-form__field label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.theme-contact-form__field input, .theme-contact-form__field select, .theme-contact-form__field textarea {
	width: 100%; padding: 0.625rem 0.75rem;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	color: var(--color-foreground);
	border-radius: 6px;
	transition: box-shadow 0.3s;
}
.theme-contact-form__field textarea { resize: none; }
.theme-contact-form__field input:focus, .theme-contact-form__field select:focus, .theme-contact-form__field textarea:focus {
	outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 50%, transparent);
}
.theme-contact-form__actions { display: flex; justify-content: flex-end; }
.theme-contact-form__status { font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-contact-form__status.is-success { color: var(--color-primary); }
.theme-contact-form__status.is-error { color: var(--color-primary); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer { border-top: 1px solid var(--color-border); background: var(--color-card); }
.site-footer__inner { padding: 4rem 0; }
@media (min-width: 1024px) { .site-footer__inner { padding: 5rem 0; } }
.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-footer__logo img { height: 4rem; }
@media (min-width: 640px) { .site-footer__logo img { height: 6rem; } }
.site-footer__tagline { max-width: 36rem; }
@media (min-width: 640px) { .site-footer__tagline { text-align: right; } }
.site-footer__tagline p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; }
.site-footer__tagline p + p { margin-top: 0.75rem; }
.site-footer__columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .site-footer__columns { grid-template-columns: repeat(5, 1fr); gap: 2.5rem; } }
.footer-col__title { font-size: 1.25rem; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.3s, transform 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-col a:hover { color: var(--color-primary); transform: translateX(2px); }
.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; justify-content: space-between; gap: 0.75rem; text-align: center; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; text-align: left; } }
.site-footer__quote { font-size: 12px; color: var(--color-primary); font-style: italic; letter-spacing: 0.02em; }
.site-footer__copy { font-size: 12px; color: var(--color-muted-foreground); }

/* ==========================================================================
   WOOCOMMERCE — SINGLE PRODUCT (Section 11)
   ========================================================================== */

.single-product-main { padding: 2rem 0 6rem; }
.back-to-shop-link { display: inline-block; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); margin: 1rem 0 1.5rem; }
.single-product .theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; min-width: 0; }
@media (min-width: 1024px) { .single-product .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.single-product .theme-product-gallery, .single-product .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-main-image-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-secondary); margin-bottom: 1rem; }
.theme-product-main-image-wrap img,
.theme-product-main-img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}
.single-product .theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.75rem; max-width: 100%; overflow-x: auto; }
.theme-product-thumb { position: relative; width: 5rem; height: 5rem; flex-shrink: 0; overflow: hidden; background: var(--color-secondary); border-bottom: 2px solid transparent; }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: opacity 0.2s; }
.theme-product-thumb.is-active img { opacity: 1; }
.theme-product-thumb.is-active { border-bottom-color: var(--color-foreground); }

.theme-product-cats a { color: var(--color-muted-foreground); text-transform: uppercase; font-size: 13px; letter-spacing: 0.25em; }
.product-title { font-family: var(--font-body); font-weight: 600; font-size: 1.875rem; line-height: 1.1; margin: 0.75rem 0 1.25rem; }
@media (min-width: 1024px) { .product-title { font-size: 2.5rem; } }
.theme-product-price { font-size: 1.25rem; margin-bottom: 1.5rem; }
.theme-product-price .woocommerce-Price-amount { font-family: var(--font-body); }
.theme-product-stock--out { color: var(--color-primary); font-weight: 600; margin-bottom: 1.5rem; }
.theme-product-description { color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 1.5rem; }

.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; }
.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); }
.theme-qty-minus, .theme-qty-plus { padding: 0 1rem; height: 100%; transition: background 0.2s; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input { width: 3rem; text-align: center; background: transparent; border: none; color: var(--color-foreground); -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__title { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1rem; }
.woocommerce-product-details__short-description, .woocommerce-variation-description, .posted_in {
	overflow-wrap: break-word; word-break: break-word;
	color: var(--color-muted-foreground); line-height: 1.7;
}

.variations.shop_attributes tbody, .variations tbody tr, .variations tbody td { display: block; width: 100%; }
.variations tbody td.label { padding-bottom: 0.5rem; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); }
.variations tbody td.value { padding-top: 0; }
.theme-attr-select-hidden { display: none !important; }
.theme-attr-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.theme-attr-pill { padding: 0.5rem 1rem; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--color-border); border-radius: 999px; transition: all 0.2s; }
.theme-attr-pill:hover { border-color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-attr-pill.is-active { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }

.related-products-section { margin-top: 5rem; padding-top: 4rem; border-top: 1px solid var(--color-border); }
.related-products-heading { text-align: center; margin-bottom: 3rem; font-size: 1.875rem; }
@media (min-width: 768px) { .related-products-heading { font-size: 2.25rem; } .related-products-grid { grid-template-columns: repeat(4, 1fr); } }
.related-products-grid { grid-template-columns: repeat(2, 1fr); }

/* ---- add-to-cart button style 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-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: none !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;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	padding: 0.75rem 1rem !important;
	border-radius: 999px !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 — ARCHIVE / SHOP
   ========================================================================== */

.archive-product-main { padding: 3rem 0 6rem; }
.archive-header .page-title { text-align: center; margin-bottom: 3rem; font-size: 2.25rem; }
.archive-product-grid { margin-bottom: 3rem; }

/* ==========================================================================
   WOOCOMMERCE NOTICES (scoped, Section 14.1)
   ========================================================================== */

.woocommerce-message, .woocommerce-info, .woocommerce-error {
	list-style: none;
	background: var(--color-card);
	border: 1px solid var(--color-border);
	border-left: 3px solid var(--color-primary);
	color: var(--color-foreground);
	padding: 1rem 1.5rem;
	border-radius: 6px;
	margin: 0 0 1.5rem;
	font-size: 0.9rem;
}
#theme-cart-drawer .woocommerce-message { display: none; }

/* ==========================================================================
   WOOCOMMERCE — CHECKOUT BLOCK OVERRIDES (Section 13)
   ========================================================================== */

body.woocommerce-checkout .site-main { padding-top: var(--header-height, 96px); padding-bottom: 4rem; overflow-x: hidden; }
body.woocommerce-checkout .entry-content { width: 100%; }

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0 !important;
	width: 100% !important;
	max-width: none !important;
}

body.woocommerce-checkout .wc-block-checkout {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: var(--checkout-gap, 2.5rem) !important;
	align-items: start !important;
}

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-checkout {
		grid-template-columns: 1fr 1fr !important;
	}
}

body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
body.woocommerce-checkout .wc-block-components-sidebar-layout {
	display: contents !important;
}

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,
body.woocommerce-checkout .wc-block-components-combobox .components-custom-select-control__button,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
body.woocommerce-checkout select {
	width: 100% !important;
	max-width: none !important;
	background-color: var(--color-background) !important;
	border: 1px solid var(--color-border) !important;
	color: var(--color-foreground) !important;
	border-radius: 6px !important;
	font-family: var(--font-body) !important;
	font-size: 1rem !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,
body.woocommerce-checkout .wc-block-components-combobox .components-custom-select-control__button:focus,
body.woocommerce-checkout select:focus {
	outline: none !important;
	border-color: var(--color-primary) !important;
	box-shadow: 0 0 0 1px var(--color-primary) !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 0.8rem;
}
body.woocommerce-checkout .wc-block-components-notice-banner {
	background: var(--color-card);
	border-color: var(--color-primary);
	border-radius: 6px;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-card);
	border-radius: var(--radius);
	padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-text-input input { padding: revert; }

/* ==========================================================================
   WOOCOMMERCE — THANK YOU PAGE (Section 22.8)
   ========================================================================== */

body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: var(--header-height, 96px); padding-bottom: 4rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-order-details,
body.theme-thankyou-page .woocommerce-customer-details {
	background: var(--color-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}
body.theme-thankyou-page .woocommerce-order-overview { list-style: none; display: flex; flex-wrap: wrap; gap: 1.5rem; }
body.theme-thankyou-page .woocommerce-order-overview li { border: none; padding: 0; }
body.theme-thankyou-page h2, body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem 0; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; }

/* ==========================================================================
   WOOCOMMERCE — CART / ACCOUNT WIDTH PARITY (Section 13.7)
   ========================================================================== */

body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: var(--header-height, 96px); padding-bottom: 4rem; }

/* ==========================================================================
   GENERIC PAGE / 404
   ========================================================================== */

.page-main { padding: 3rem 0 5rem; }
.page-title { font-size: 2.25rem; margin-bottom: 2rem; }
.notfound-main { padding-top: var(--header-height, 96px); min-height: 60vh; display: flex; align-items: center; }
.notfound-content { text-align: center; }
.notfound-title { font-size: 3rem; margin-bottom: 1rem; }
.notfound-text { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.notfound-link { color: var(--color-primary); }

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

/* ==========================================================================
   HERO LOAD ANIMATIONS (Framer Motion parity)
   ========================================================================== */

.theme-anim {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}
.theme-anim[data-anim="fade-down"] { transform: translateY(-18px); }
.theme-anim.is-animated { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   SCROLL PROGRESS + SCROLL TO TOP
   ========================================================================== */

.theme-scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	transform-origin: left;
	transform: scaleX(0);
	background: linear-gradient(to right, var(--color-primary), color-mix(in srgb, var(--color-primary) 70%, var(--color-accent)), var(--color-primary));
	z-index: 60;
	pointer-events: none;
}
.theme-scroll-to-top {
	position: fixed;
	bottom: 6rem;
	right: 1.5rem;
	z-index: 50;
	width: 3rem;
	height: 3rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--color-background) 85%, transparent);
	backdrop-filter: blur(12px);
	border: 1px solid color-mix(in srgb, var(--color-primary) 50%, transparent);
	color: var(--color-primary);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateY(20px) scale(0.85);
	pointer-events: none;
	transition: opacity 0.25s var(--transition-smooth), transform 0.25s var(--transition-smooth);
}
.theme-scroll-to-top.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}
.theme-scroll-to-top:hover { transform: translateY(-3px) scale(1.05); }
.theme-scroll-to-top__ring {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}
.theme-scroll-to-top__ring circle { fill: none; stroke: currentColor; stroke-width: 2; }
.theme-scroll-to-top__ring .theme-scroll-to-top__progress {
	stroke-linecap: round;
	stroke-opacity: 1;
}
.theme-scroll-to-top__ring .theme-scroll-to-top__track { stroke-opacity: 0.15; }
@media (min-width: 1024px) {
	.theme-scroll-to-top { bottom: 1.5rem; }
}

/* ==========================================================================
   WELCOME MIC POPUP
   ========================================================================== */

.theme-welcome-popup {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
	align-items: flex-start;
	justify-content: center;
	padding: 1rem;
	background: rgba(0, 0, 0, 0);
	transition: background 0.35s var(--transition-smooth);
}
.theme-welcome-popup.is-open { display: flex; background: rgba(0, 0, 0, 0.75); }
.theme-welcome-popup__rig {
	display: flex;
	flex-direction: column;
	align-items: center;
	transform: translateY(-110vh);
	transition: transform 0.9s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.theme-welcome-popup.is-open .theme-welcome-popup__rig { transform: translateY(0); }
.theme-welcome-popup__cable {
	width: 3px;
	height: clamp(60px, 12vh, 140px);
	background: linear-gradient(to bottom, color-mix(in srgb, var(--color-foreground) 10%, transparent), color-mix(in srgb, var(--color-foreground) 40%, transparent), color-mix(in srgb, var(--color-foreground) 60%, transparent));
}
.theme-welcome-popup__mic-wrap { transform-origin: top center; }
.theme-welcome-popup.is-swinging .theme-welcome-popup__mic-wrap { animation: micSwing 1.6s ease-out 0.2s forwards; }
@keyframes micSwing {
	0% { transform: rotate(0deg); }
	20% { transform: rotate(-6deg); }
	45% { transform: rotate(5deg); }
	65% { transform: rotate(-3deg); }
	80% { transform: rotate(2deg); }
	100% { transform: rotate(0deg); }
}
.theme-welcome-popup__shock { position: relative; }
.theme-welcome-popup__shock-oval { width: 4rem; height: 0.75rem; border: 2px solid color-mix(in srgb, var(--color-foreground) 50%, transparent); border-radius: 999px; }
.theme-welcome-popup__shock-arch { position: absolute; left: 50%; top: -0.25rem; transform: translateX(-50%); width: 2rem; height: 0.75rem; border: 2px solid color-mix(in srgb, var(--color-foreground) 50%, transparent); border-bottom: 0; border-radius: 999px 999px 0 0; }
.theme-welcome-popup__grille {
	position: relative;
	width: 6rem;
	height: 7rem;
	margin-top: -0.25rem;
	border-radius: 999px 999px 0.5rem 0.5rem;
	overflow: hidden;
	background: linear-gradient(180deg, #383838 0%, #1a1a1a 45%, #0f0f0f 100%);
	box-shadow: inset 0 4px 12px rgba(255,255,255,0.08), 0 12px 32px rgba(228,37,37,0.35), 0 24px 60px rgba(0,0,0,0.7);
}
.theme-welcome-popup__grille-pattern {
	position: absolute;
	inset: 0.5rem;
	border-radius: 999px 999px 0.25rem 0.25rem;
	background: repeating-linear-gradient(45deg, #4d4d4d 0 2px, #242424 2px 4px);
	opacity: 0.85;
}
.theme-welcome-popup__grille-glow { position: absolute; inset-inline: 0.75rem; top: 0.75rem; height: 0.5rem; background: color-mix(in srgb, var(--color-primary) 70%, transparent); border-radius: 999px; filter: blur(2px); }
.theme-welcome-popup__body-base { width: 4rem; height: 2rem; margin-top: -0.25rem; background: linear-gradient(180deg, #242424 0%, #0f0f0f 100%); box-shadow: inset 0 2px 6px rgba(255,255,255,0.06); }
.theme-welcome-popup__card {
	position: relative;
	margin-top: 1.5rem;
	width: min(92vw, 440px);
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	background: linear-gradient(135deg, color-mix(in srgb, var(--color-background) 98%, transparent) 0%, color-mix(in srgb, var(--color-card) 95%, transparent) 55%, color-mix(in srgb, var(--color-primary) 28%, transparent) 100%);
	box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8);
	padding: 2rem 1.75rem;
	text-align: center;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.5s ease 1.2s, transform 0.5s ease 1.2s;
}
.theme-welcome-popup.is-card-visible .theme-welcome-popup__card { opacity: 1; transform: translateY(0); }
.theme-welcome-popup__corner { position: absolute; width: 1rem; height: 1rem; border-color: var(--color-primary); }
.theme-welcome-popup__corner--tl { top: 0; left: 0; border-top: 2px solid; border-left: 2px solid; }
.theme-welcome-popup__corner--br { bottom: 0; right: 0; border-bottom: 2px solid; border-right: 2px solid; }
.theme-welcome-popup__kicker { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-primary); font-weight: 700; margin-bottom: 0.75rem; }
.theme-welcome-popup__title { font-family: var(--font-display); font-size: 1.875rem; line-height: 1.15; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .theme-welcome-popup__title { font-size: 2.25rem; } }
.theme-welcome-popup__desc { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.6; margin-bottom: 1.5rem; }
.theme-welcome-popup__form { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-welcome-popup__input-wrap { position: relative; }
.theme-welcome-popup__input-wrap svg { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.theme-welcome-popup__input {
	width: 100%;
	background: color-mix(in srgb, var(--color-background) 70%, transparent);
	border: 1px solid var(--color-border);
	padding: 0.75rem 0.75rem 0.75rem 2.5rem;
	font-size: 0.875rem;
	color: var(--color-foreground);
}
.theme-welcome-popup__input:focus { outline: none; border-color: var(--color-primary); }
.theme-welcome-popup__embed { text-align: left; margin-bottom: 0.75rem; }
.theme-welcome-popup__embed iframe,
.theme-welcome-popup__embed form { width: 100% !important; max-width: 100%; }
.theme-welcome-popup__dismiss { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); margin-top: 0.25rem; }
.theme-welcome-popup__card .theme-welcome-popup__dismiss { display: block; width: 100%; }
.theme-welcome-popup__success { display: none; flex-direction: column; align-items: center; gap: 0.75rem; padding: 1rem 0; }
.theme-welcome-popup__success.is-visible { display: flex; }
.theme-welcome-popup__check {
	width: 3rem;
	height: 3rem;
	border-radius: 999px;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ==========================================================================
   FLOATING AUDIO PLAYER
   ========================================================================== */

.theme-floating-player {
	position: fixed;
	z-index: 40;
	bottom: 0.75rem;
	left: 0.75rem;
	right: 0.75rem;
	opacity: 0;
	transform: translateY(120px);
	transition: opacity 0.6s var(--transition-smooth) 2.2s, transform 0.6s var(--transition-smooth) 2.2s;
}
.theme-floating-player.is-visible { opacity: 1; transform: translateY(0); }
.theme-floating-player.is-closed { display: none; }
@media (min-width: 640px) {
	.theme-floating-player { left: auto; right: 1rem; bottom: 1rem; width: auto; }
}
.theme-floating-player__inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	background: linear-gradient(135deg, color-mix(in srgb, var(--color-background) 95%, transparent) 0%, color-mix(in srgb, var(--color-card) 90%, transparent) 60%, color-mix(in srgb, var(--color-primary) 25%, transparent) 100%);
	backdrop-filter: blur(12px);
	box-shadow: 0 20px 50px -15px rgba(0,0,0,0.8);
	padding: 0.5rem 0.25rem 0.5rem 0.5rem;
}
@media (min-width: 640px) { .theme-floating-player__inner { gap: 0.75rem; padding: 0.5rem 0.5rem 0.5rem 0.75rem; } }
.theme-floating-player__corner { position: absolute; width: 0.75rem; height: 0.75rem; border-color: var(--color-primary); }
.theme-floating-player__corner--tl { top: 0; left: 0; border-top: 2px solid; border-left: 2px solid; }
.theme-floating-player__corner--br { bottom: 0; right: 0; border-bottom: 2px solid; border-right: 2px solid; }
.theme-floating-player__icon-wrap {
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: color-mix(in srgb, var(--color-primary) 20%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
}
@media (min-width: 640px) { .theme-floating-player__icon-wrap { width: 2.25rem; height: 2.25rem; } }
.theme-floating-player__icon-wrap.is-playing svg { animation: spinClockwise 4s linear infinite; }
@keyframes spinClockwise { to { transform: rotate(360deg); } }
.theme-floating-player__meta { min-width: 0; flex: 1; }
@media (min-width: 640px) { .theme-floating-player__meta { flex: none; max-width: 11.25rem; } }
.theme-floating-player__label { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); font-weight: 700; }
.theme-floating-player__title { font-size: 0.875rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.theme-floating-player__controls { display: flex; align-items: center; gap: 0.125rem; flex-shrink: 0; }
.theme-floating-player__btn {
	width: 2.25rem;
	height: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-foreground);
	transition: color 0.2s, background 0.2s;
}
.theme-floating-player__btn:hover { color: var(--color-primary); background: color-mix(in srgb, var(--color-foreground) 5%, transparent); }
.theme-floating-player__unmute {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 700;
	border: 1px solid color-mix(in srgb, var(--color-primary) 60%, transparent);
	color: var(--color-primary);
	padding: 0.25rem 0.5rem;
}
.theme-floating-player__unmute:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-floating-player__yt-host { position: fixed; left: -9999px; top: -9999px; width: 1px; height: 1px; pointer-events: none; overflow: hidden; }
