/* ==========================================================================
   Mark6ix Okpani — theme.css
   Built by The Free Website Guys.
   ========================================================================== */

/* ---------------------------------------------------------------- Tokens */
:root {
	--color-background: #091020;
	--color-foreground: #f8f7f1;
	--color-primary: #f6c928;
	--color-primary-glow: #fbd960;
	--color-card: #0e162a;
	--color-surface-soft: #141d34;
	--color-border: #273149;
	--color-muted-foreground: #a7aebe;

	--color-button-text: var(--color-background);

	--font-display: 'Bebas Neue', Impact, sans-serif;
	--font-body: 'Inter', system-ui, -apple-system, sans-serif;

	--radius: 0.25rem;
	--card-radius: 0.5rem;

	--btn-radius: 0.375rem;
	--btn-height: 3rem;
	--btn-padding: 0 1.75rem;
	--btn-font-size: 0.875rem;
	--btn-font-weight: 500;
	--btn-letter-spacing: normal;
	--btn-text-transform: none;
	--btn-icon-padding: 0.6rem;

	--header-height: 80px;
	--checkout-gap: 3rem;
	--checkout-gap-lg: 4rem;
	--checkout-max-width: 80rem;
	--logo-height: 64px;

	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

	--shadow-yellow: 0 12px 40px -10px color-mix(in srgb, var(--color-primary) 45%, transparent);
	--shadow-noir: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
}

/* ---------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 400;
	letter-spacing: 0.005em;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-weight: inherit; font-size: inherit; margin: 0; font-family: var(--font-display); letter-spacing: 0.005em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, select, textarea { font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }
img.cover-img, img.hero-section__logo-img, .theme-product-card__img,
img.cover-img, .theme-product-thumb img {
	max-width: none;
	height: 100%;
}
::selection { background: color-mix(in srgb, var(--color-primary) 50%, transparent); color: var(--color-background); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.screen-reader-text { position: absolute !important; left: -9999px; }

/* ---------------------------------------------------------------- Layout helpers */
.container-wide { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container-wide { padding: 0 2.5rem; } }
.section-py { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .section-py { padding-top: 7rem; padding-bottom: 7rem; } }

.surface-noir { background: var(--color-background); color: var(--color-foreground); }
.surface-noir-soft { background: var(--color-surface-soft); color: var(--color-foreground); }
.surface-stage {
	background:
		radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--color-primary) 18%, transparent) 0%, transparent 60%),
		linear-gradient(180deg, color-mix(in srgb, var(--color-surface-soft) 90%, var(--color-background) 10%) 0%, var(--color-background) 100%);
	color: var(--color-foreground);
}

.eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: var(--color-primary); }
.brass-rule { display: block; height: 1px; width: 3rem; background: var(--color-primary); }
em { color: var(--color-primary); font-style: normal; }

.theme-empty-state { color: var(--color-muted-foreground); font-family: var(--font-body); padding: 2rem 0; }

/* ---------------------------------------------------------------- Section headings (Section 2.2.5 — per-section scales) */
.section-heading-row { display: grid; gap: 2rem; align-items: end; margin-bottom: 3rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .section-heading-row { grid-template-columns: repeat(12, 1fr); gap: 3rem; margin-bottom: 4rem; } }
.section-heading-row__main { grid-column: 1 / -1; }
@media (min-width: 768px) { .section-heading-row__main { grid-column: span 8; } }
.section-heading-row__eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.section-heading-row__subtitle { color: var(--color-muted-foreground); font-weight: 300; line-height: 1.6; grid-column: 1 / -1; }
@media (min-width: 768px) { .section-heading-row__subtitle { grid-column: span 4; } }

.section-heading { font-size: 2.75rem; line-height: 1; letter-spacing: 0.02em; }
@media (min-width: 768px) { .section-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .section-heading { font-size: 4.5rem; } }

.bio-section__heading { font-size: 2.75rem; }
@media (min-width: 768px) { .bio-section__heading { font-size: 3.5rem; } }
@media (min-width: 1024px) { .bio-section__heading { font-size: 4.25rem; } }

.faq-section__heading { font-size: 2.75rem; }
@media (min-width: 768px) { .faq-section__heading { font-size: 3.5rem; } }

/* ---------------------------------------------------------------- Buttons */
.theme-btn-primary, .theme-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: var(--btn-radius);
	height: 2.5rem;
	padding: 0 1rem;
	transition: all 0.3s ease-out;
	text-transform: var(--btn-text-transform);
}
.theme-btn-primary {
	background: var(--color-primary);
	color: var(--color-button-text);
	box-shadow: 0 2px 0 0 color-mix(in srgb, var(--color-primary) 35%, transparent);
}
.theme-btn-primary:hover { background: color-mix(in srgb, var(--color-primary) 90%, transparent); transform: translateY(-2px); box-shadow: 0 10px 28px -10px color-mix(in srgb, var(--color-primary) 70%, transparent); }
.theme-btn-outline {
	background: transparent;
	border: 1px solid var(--color-border);
	color: var(--color-foreground);
}
.theme-btn-outline:hover { border-color: var(--color-primary); background: color-mix(in srgb, var(--color-primary) 10%, transparent); transform: translateY(-2px); }
.theme-btn-outline--hero { border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); background: transparent; }
.theme-btn-lg { height: 3.5rem; padding: 0 2.25rem; font-size: 0.95rem; }
.theme-btn-sm { height: 2.25rem; padding: 0 0.75rem; font-size: 0.8rem; }
.theme-btn-block { width: 100%; }
.theme-btn-disabled { opacity: 0.5; pointer-events: none; cursor: not-allowed; }
.single_add_to_cart_button, a.single_add_to_cart_button, .add_to_cart_button, .theme-btn-primary, .theme-btn-outline { text-transform: none; }
button:disabled, .theme-btn-disabled { cursor: not-allowed; }

/* ---------------------------------------------------------------- Header */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	transition: all 0.5s var(--transition-smooth);
	background: transparent;
}
.site-header.is-solid {
	background: color-mix(in srgb, var(--color-background) 85%, transparent);
	backdrop-filter: blur(24px) saturate(1.5);
	border-bottom: 1px solid var(--color-surface-soft);
	box-shadow: 0 1px 0 0 color-mix(in srgb, var(--color-primary) 18%, transparent);
}
.site-header__glow {
	position: absolute; inset: 0; top: 0; height: 8rem;
	background: linear-gradient(to bottom, color-mix(in srgb, var(--color-background) 85%, transparent), color-mix(in srgb, var(--color-background) 45%, transparent), transparent);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.site-header:not(.is-solid) .site-header__glow { opacity: 1; }
.site-header__inner { position: relative; z-index: 1; }
.site-header__nav { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 1024px) { .site-header__nav { height: 5rem; } }
.site-header__brand { display: flex; align-items: center; gap: 0.625rem; }
.site-header__brand .site-logo-img { height: var(--logo-height, 4rem); width: auto; object-fit: contain; }
.site-header__brand-text { display: none; flex-direction: column; line-height: 1; }
@media (min-width: 480px) { .site-header__brand-text { display: flex; } }
.site-header__brand-name { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.18em; }
@media (min-width: 1024px) { .site-header__brand-name { font-size: 1.125rem; } }
.site-header__brand-name em { color: var(--color-primary); }
.site-header__tagline { font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.25rem; font-family: var(--font-body); }
.site-header:not(.is-solid) .site-header__brand-name,
.site-header:not(.is-solid) .theme-nav-list a { text-shadow: 0 1px 12px rgba(11,26,58,0.7); }

.site-header__links { display: none; align-items: center; gap: 1.25rem; margin-left: auto; margin-right: 1rem; }
@media (min-width: 1024px) { .site-header__links { display: flex; } }
@media (min-width: 1280px) { .site-header__links { gap: 1.75rem; margin-right: 2rem; } }
.theme-nav-list { display: flex; align-items: center; gap: 1.25rem; }
@media (min-width: 1280px) { .theme-nav-list { gap: 1.75rem; } }
.theme-nav-list a {
	position: relative;
	font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
	color: var(--color-foreground);
	transition: color 0.3s ease;
}
.theme-nav-list a:hover { color: var(--color-primary); }
.theme-nav-list a::after {
	content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px;
	background: currentColor; transform: scaleX(0); transform-origin: left;
	transition: transform 0.5s var(--transition-smooth);
}
.theme-nav-list a:hover::after { transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: 0.25rem; }
.theme-cart-toggle { position: relative; padding: 0.5rem; color: var(--color-foreground); transition: color 0.3s ease; }
.theme-cart-toggle:hover { color: var(--color-primary); }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px; min-width: 1.25rem; height: 1.25rem; padding: 0 0.15rem;
	display: flex; align-items: center; justify-content: center;
	font-size: 10px; font-weight: 600; background: var(--color-primary); color: var(--color-background); border-radius: 999px;
}
.theme-cart-count:empty { display: none; }

.site-header__burger { display: flex; padding: 0.5rem; color: var(--color-foreground); transition: color 0.3s ease; }
.site-header__burger:hover { color: var(--color-primary); }
@media (min-width: 1024px) { .site-header__burger { display: none; } }
.site-header__burger .icon-close { display: none; }
.site-header__burger.is-active .icon-open { display: none; }
.site-header__burger.is-active .icon-close { display: block; }

/* Mobile nav — Lovable: border-t, bg-noir/95, backdrop-blur-xl, -mx-6 px-6, py-4, fade-in */
.site-header__mobile {
	display: none;
	border-top: 1px solid var(--color-surface-soft);
	margin-inline: -1.5rem;
	padding: 1rem 1.5rem;
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(24px);
}
@media (min-width: 1024px) {
	.site-header__mobile { display: none !important; }
}
.site-header__mobile.is-open {
	display: block;
	animation: themeFadeIn 0.7s var(--transition-smooth);
}

.theme-nav-list-mobile { display: flex; flex-direction: column; gap: 0.25rem; }
.theme-nav-list-mobile a {
	display: block;
	text-align: left;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 0.75rem 0;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	transition: color 0.3s ease;
}
.theme-nav-list-mobile a:hover { color: var(--color-primary); }

/* ---------------------------------------------------------------- Hero */
.hero-section { position: relative; width: 100%; overflow: hidden; background: var(--color-background); height: 100svh; min-height: 100svh; }
.hero-section__media, .hero-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-section__wash { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-background) 55%, transparent); pointer-events: none; }
.hero-section__glow { position: absolute; inset: 0; background: radial-gradient(ellipse at top, color-mix(in srgb, var(--color-primary) 18%, transparent), transparent 55%); pointer-events: none; }
.hero-section__gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, color-mix(in srgb, var(--color-background) 40%, transparent) 0%, color-mix(in srgb, var(--color-background) 30%, transparent) 40%, var(--color-background) 100%); pointer-events: none; }
.hero-section__content { position: absolute; inset: 0; z-index: 10; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 2rem; padding-top: 5rem; }
@media (max-width: 639px) {
	.hero-section__content { padding-bottom: 3.75rem; }
}
@media (min-width: 640px) { .hero-section__content { padding-bottom: 3rem; padding-top: 6rem; } }
@media (min-width: 768px) { .hero-section__content { padding-bottom: 4rem; } }
.hero-section__inner { max-width: 56rem; margin: 0 auto; text-align: center; }
@media (min-width: 1024px) { .hero-section__inner { margin: 0; text-align: left; } }
.hero-section__eyebrow-row { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 0.5rem; }
@media (min-width: 1024px) { .hero-section__eyebrow-row { justify-content: flex-start; } }
.eq { display: inline-flex; align-items: flex-end; height: 1.25rem; }
.eq-bar { display: inline-block; width: 3px; margin-right: 3px; background: var(--color-primary); animation: eqBeat 1s ease-in-out infinite; transform-origin: bottom; }
.eq-bar:nth-child(1) { height: 40%; animation-delay: 0s; animation-duration: 0.7s; }
.eq-bar:nth-child(2) { height: 70%; animation-delay: .12s; animation-duration: .9s; }
.eq-bar:nth-child(3) { height: 50%; animation-delay: .24s; animation-duration: 1.1s; }
.eq-bar:nth-child(4) { height: 90%; animation-delay: .36s; animation-duration: .7s; }
.eq-bar:nth-child(5) { height: 60%; animation-delay: .48s; animation-duration: .9s; }
.eq-bar:nth-child(6) { height: 85%; animation-delay: .6s; animation-duration: 1.1s; }
.eq-bar:nth-child(7) { height: 45%; animation-delay: .72s; animation-duration: .7s; }
.hero-section__logo { width: 100%; margin: -0.5rem 0; display: flex; justify-content: flex-start; }
.hero-section__logo img { height: clamp(6.5rem, 22vw, 17rem); width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(0 10px 40px rgba(0,0,0,0.55)); }
.hero-section__subtitle { margin-top: 0.5rem; max-width: 36rem; margin-inline: 0; text-align: left; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); font-weight: 300; font-size: 0.95rem; line-height: 1.6; }
@media (min-width: 768px) { .hero-section__subtitle { font-size: 1.05rem; } }
.hero-section__ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1rem; }
@media (min-width: 1024px) { .hero-section__ctas { display: flex; flex-wrap: wrap; justify-content: flex-start; } }
@media (max-width: 1023px) { .hero-section__ctas .theme-btn-lg { width: 100%; } }

/* ---------------------------------------------------------------- Product grids */
.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.75rem; } }
.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)); gap: 2rem; } }

.theme-product-card-wrap { height: 100%; display: flex; }
.theme-product-card {
	position: relative;
	display: flex; flex-direction: column;
	width: 100%; height: 100%;
	background: var(--color-card);
	border: 1px solid var(--color-border);
	overflow: hidden;
	transition: all 0.5s var(--transition-smooth);
}
.theme-product-card:hover { border-color: color-mix(in srgb, var(--color-primary) 60%, transparent); box-shadow: var(--shadow-yellow); }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.theme-product-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--transition-smooth); }
.theme-product-card:hover .theme-product-card__img { transform: scale(1.04); }
.theme-product-card__image-link { position: absolute; inset: 0; z-index: 2; display: block; }
.theme-product-card__badges { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3; display: flex; gap: 0.5rem; pointer-events: none; }
.theme-badge {
	padding: 0.25rem 0.6rem; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
	background: var(--color-primary); color: var(--color-background);
}
.theme-badge--stock { background: color-mix(in srgb, var(--color-background) 80%, transparent); color: color-mix(in srgb, var(--color-foreground) 90%, transparent); font-weight: 500; }
.theme-badge--type { background: color-mix(in srgb, var(--color-background) 80%, transparent); color: color-mix(in srgb, var(--color-foreground) 90%, transparent); font-weight: 500; }
.theme-product-card__cover-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: color-mix(in srgb, var(--color-foreground) 30%, transparent); }
.theme-product-card__tracks .theme-track-title { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-track-more { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); font-style: italic; }
.theme-product-card__info { flex: 1; display: flex; flex-direction: column; padding: 1.25rem; gap: 0.5rem; }
@media (min-width: 768px) { .theme-product-card__info { padding: 1.5rem; } }
.theme-product-card__title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; min-width: 0; }
.theme-product-card__title { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.15; letter-spacing: 0.02em; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.5rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); transition: color 0.3s ease; }
.theme-product-card__price { font-size: 0.875rem; font-weight: 600; color: var(--color-primary); white-space: nowrap; }
.theme-product-card__price .woocommerce-Price-amount { color: var(--color-primary); }
.theme-product-card__artist { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-muted-foreground); }
.theme-product-card__excerpt { font-size: 0.75rem; color: var(--color-muted-foreground); font-weight: 300; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.theme-product-card__tracks { margin-top: 0.25rem; margin-bottom: 0.5rem; font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); display: flex; flex-direction: column; gap: 0.25rem; }
.theme-product-card__tracks li { display: flex; justify-content: space-between; gap: 0.5rem; }
.theme-track-num { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); margin-right: 0.5rem; }
.theme-product-card__actions { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--color-border); display: flex; align-items: center; gap: 0.75rem; position: relative; z-index: 3; }
.theme-product-card__buy { flex: 1; }
.theme-product-card__details { flex-shrink: 0; }

/* Audio preview controls on cards */
.theme-audio-toggle--cover { position: absolute; inset: 0; margin: auto; width: 4rem; height: 4rem; border-radius: 50%; background: var(--color-primary); color: var(--color-background); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease, transform 0.3s ease; z-index: 3; box-shadow: var(--shadow-yellow); pointer-events: none; }
.theme-product-card:hover .theme-audio-toggle--cover,
.theme-audio-toggle--cover.is-active { opacity: 1; pointer-events: auto; transform: scale(1.05); }
.theme-audio-toggle--cover .icon-pause { display: none; }
.theme-audio-toggle--cover.is-playing .icon-play { display: none; }
.theme-audio-toggle--cover.is-playing .icon-pause { display: flex; }

.theme-audio-player--inline { display: flex; align-items: center; gap: 0.75rem; }
.theme-audio-toggle { width: 2.5rem; height: 2.5rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--color-primary); color: var(--color-background); border-radius: var(--radius); transition: background 0.3s ease; }
.theme-audio-toggle:hover { background: var(--color-primary-glow); }
.theme-audio-toggle .icon-pause { display: none; }
.theme-audio-player.is-playing .theme-audio-toggle .icon-play { display: none; }
.theme-audio-player.is-playing .theme-audio-toggle .icon-pause { display: flex; }
.theme-audio-player__bar { flex: 1; height: 4px; background: var(--color-surface-soft); overflow: hidden; }
.theme-audio-player__fill { display: block; height: 100%; width: 0%; background: var(--color-primary); transition: width 0.2s linear; }
.theme-audio-player__time { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); width: 3.5rem; text-align: right; font-variant-numeric: tabular-nums; }
.theme-audio-player--boxed { padding: 1rem; border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent); background: var(--color-surface-soft); flex-direction: column; align-items: stretch; margin-bottom: 1.5rem; }
.theme-audio-player__label { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.theme-audio-player__controls { display: flex; align-items: center; gap: 0.75rem; }

/* ---------------------------------------------------------------- Reveal animations (Section 2.1) */
.reveal-fade, .reveal-up, .reveal-left, .reveal-right, .reveal-item {
	opacity: 0;
	will-change: opacity, transform, filter;
}
.reveal-fade { transform: translateY(16px); filter: blur(6px); transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo), filter 0.9s var(--ease-out-expo); }
.reveal-up { transform: translateY(28px); filter: blur(6px); transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo), filter 0.8s var(--ease-out-expo); }
.reveal-left { transform: translateX(-40px); filter: blur(6px); transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo), filter 1s var(--ease-out-expo); }
.reveal-right { transform: translateX(40px); filter: blur(6px); transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo), filter 1s var(--ease-out-expo); }
.reveal-item { transform: translateY(24px); transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth); }
.reveal-fade.is-visible, .reveal-up.is-visible, .reveal-left.is-visible, .reveal-right.is-visible, .reveal-item.is-visible {
	opacity: 1; transform: none; filter: none;
}
body.is-customizer .reveal-fade, body.is-customizer .reveal-up, body.is-customizer .reveal-left,
body.is-customizer .reveal-right, body.is-customizer .reveal-item {
	opacity: 1 !important; transform: none !important; filter: none !important;
}
@media (prefers-reduced-motion: reduce) {
	.reveal-fade, .reveal-up, .reveal-left, .reveal-right, .reveal-item { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
	.eq-bar, .bg-stage-pulse, .hero-section__video, .events-section__video { animation: none !important; }
	.site-header__mobile.is-open { animation: none !important; }
}

@keyframes themeFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes themeSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes themeSlideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes themeScaleIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
@keyframes eqBeat { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }

/* ---------------------------------------------------------------- Bio section */
.bio-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .bio-section__grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.bio-section__portrait-frame { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); background: var(--color-background); }
.bio-section__portrait-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bio-section__portrait-caption { position: absolute; inset-inline: 0; bottom: 0; padding: 1.5rem; background: linear-gradient(to top, color-mix(in srgb, var(--color-background) 95%, transparent), color-mix(in srgb, var(--color-background) 40%, transparent), transparent); }
.bio-section__portrait-caption p { font-family: var(--font-display); font-size: 1.5rem; margin-top: 0.25rem; line-height: 1.2; }
.bio-section__content { padding-top: 1.5rem; }
.bio-section__paragraphs { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-weight: 300; font-size: 1rem; line-height: 1.7; overflow-wrap: break-word; }
.bio-section__ctas { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .bio-section__ctas { flex-direction: row; } }
.bio-section__heading, .brass-rule { margin-top: 0.75rem; margin-bottom: 2rem; }

/* ---------------------------------------------------------------- Label section */
.label-section__intro { max-width: 48rem; margin: 0 auto 4rem; text-align: center; }
@media (min-width: 768px) { .label-section__intro { margin-bottom: 5rem; } }
.label-section__logos { display: flex; justify-content: center; align-items: center; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .label-section__logos { gap: 3rem; } }
.label-section__crown, .label-section__logo { height: 6rem; width: auto; object-fit: contain; }
@media (min-width: 768px) { .label-section__crown, .label-section__logo { height: 8rem; } }
.label-section__x { font-family: var(--font-display); color: color-mix(in srgb, var(--color-primary) 70%, transparent); font-size: 1.75rem; }
@media (min-width: 768px) { .label-section__x { font-size: 2.25rem; } }
.label-section__heading { font-size: 2.75rem; margin: 0.75rem 0; }
@media (min-width: 768px) { .label-section__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .label-section__heading { font-size: 4.5rem; } }
.label-section__paragraph { margin-top: 1.5rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; font-size: 1rem; line-height: 1.7; }
@media (min-width: 768px) { .label-section__paragraph { font-size: 1.125rem; } }
.label-section__founder { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; max-width: 64rem; margin: 0 auto; }
@media (min-width: 1024px) { .label-section__founder { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.label-section__founder-photo { aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); box-shadow: var(--shadow-noir); }
.label-section__founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.label-section__founder-name { font-size: 2.25rem; margin-top: 0.5rem; }
@media (min-width: 768px) { .label-section__founder-name { font-size: 3rem; } }
.label-section__founder-content p { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; line-height: 1.7; margin-top: 1rem; overflow-wrap: break-word; }
.label-section__founder-content .brass-rule { margin: 1.5rem 0; }
.label-section__founder-links { margin-top: 1.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem 1rem; }
.label-section__founder-links a { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-primary); position: relative; }
.label-section__founder-links a:hover { color: var(--color-primary-glow); }
.label-section__wordmark { margin-top: 2rem; }
.label-section__wordmark img { height: 5rem; width: auto; object-fit: contain; }
@media (min-width: 768px) { .label-section__wordmark img { height: 6rem; } }

/* ---------------------------------------------------------------- Merch section */
.theme-merch-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .theme-merch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-merch-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.theme-merch-card { background: var(--color-card); border: 1px solid var(--color-border); transition: border-color 0.3s ease; }
.theme-merch-card:hover { border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.theme-merch-card--mystery { border-style: dashed; border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.theme-merch-card--mystery:hover { border-color: var(--color-primary); }
.theme-merch-card__image { position: relative; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; overflow: hidden;
	background:
		radial-gradient(ellipse 80% 50% at 50% 0%, color-mix(in srgb, var(--color-primary) 18%, transparent), transparent 60%),
		radial-gradient(ellipse 60% 50% at 20% 80%, color-mix(in srgb, var(--color-surface-soft) 60%, transparent), transparent 70%),
		var(--color-background);
	color: color-mix(in srgb, var(--color-primary) 30%, transparent);
}
.theme-merch-card__mystery-mark { font-family: var(--font-display); font-size: 7rem; line-height: 1; color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.theme-merch-card__image .theme-badge { position: absolute; top: 0.75rem; left: 0.75rem; }
.theme-merch-card__body { padding: 1.25rem; }
.theme-merch-card__body h3 { font-size: 1.5rem; }
.theme-merch-card__body p { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.theme-merch-notify-form {
	border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
	background: var(--color-surface-soft);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
@media (min-width: 768px) {
	.theme-merch-notify-form {
		flex-direction: row;
		align-items: center;
		padding: 2rem;
	}
}
.theme-merch-notify-form__text {
	flex: 1;
	min-width: 0;
}
.theme-merch-notify-form__text .eyebrow {
	color: var(--color-primary);
	margin-bottom: 0.5rem;
}
.theme-merch-notify-form__heading {
	font-family: var(--font-display);
	font-size: 1.5rem;
	line-height: 1.25;
	letter-spacing: 0.02em;
	color: var(--color-foreground);
	margin: 0;
}
@media (min-width: 768px) {
	.theme-merch-notify-form__heading {
		font-size: 1.875rem;
	}
}
.theme-merch-notify-form__fields {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	width: 100%;
}
@media (min-width: 640px) {
	.theme-merch-notify-form__fields {
		flex-direction: row;
		align-items: stretch;
	}
}
@media (min-width: 768px) {
	.theme-merch-notify-form__fields {
		width: auto;
		min-width: 420px;
		flex-shrink: 0;
	}
}
.theme-merch-notify-form .theme-input {
	flex: 1;
	min-width: 0;
}
.theme-merch-notify-form .theme-btn-primary {
	flex-shrink: 0;
	white-space: nowrap;
}
.theme-merch-notify-form .theme-form-success {
	margin-top: 0;
}
.theme-input { flex: 1; padding: 0.75rem 1rem; background: transparent; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); color: var(--color-foreground); font-size: 0.875rem; transition: border-color 0.3s ease; min-width: 0; }
.theme-input::placeholder { color: color-mix(in srgb, var(--color-foreground) 35%, transparent); }
.theme-input:focus { outline: none; border-color: var(--color-primary); }
.theme-textarea { resize: none; min-height: 140px; }
.theme-form-success { margin-top: 0.5rem; font-size: 0.75rem; color: var(--color-primary); display: none; }
.theme-form-success.is-visible { display: block; animation: themeFadeIn 0.4s ease; }

/* ---------------------------------------------------------------- Events section */
.events-section { position: relative; overflow: hidden; }
.events-section__media, .events-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.events-section__gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, color-mix(in srgb, var(--color-background) 92%, transparent) 0%, color-mix(in srgb, var(--color-background) 78%, transparent) 50%, color-mix(in srgb, var(--color-background) 92%, transparent) 100%); pointer-events: none; }
.events-section__content { position: relative; z-index: 1; }
.events-section__empty { border: 1px solid var(--color-surface-soft); padding: 3rem 2rem; text-align: center; max-width: 42rem; margin: 0 auto; }
@media (min-width: 768px) { .events-section__empty { padding: 4rem; } }
.events-section__empty-icon { width: 3.5rem; height: 3.5rem; border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.events-section__empty h3 { font-size: 1.875rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .events-section__empty h3 { font-size: 2.25rem; } }
.events-section__empty p { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); font-weight: 300; line-height: 1.6; max-width: 24rem; margin: 0 auto; }
.events-section__empty .theme-btn-outline { margin-top: 2rem; border-color: color-mix(in srgb, var(--color-foreground) 30%, transparent); }
.events-section__list { border-top: 1px solid var(--color-surface-soft); border-bottom: 1px solid var(--color-surface-soft); }
.events-section__row { display: grid; grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--color-surface-soft); }
.events-section__row:last-child { border-bottom: none; }
@media (min-width: 768px) { .events-section__row { grid-template-columns: repeat(12, 1fr); align-items: center; gap: 2rem; padding: 1.75rem 0; } }
.events-section__date-main { font-family: var(--font-display); font-size: 1.875rem; color: var(--color-primary); line-height: 1; }
@media (min-width: 768px) { .events-section__date { grid-column: span 2; } .events-section__date-main { font-size: 2.25rem; } }
.events-section__date-year { font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 0.25rem; }
.events-section__venue { font-family: var(--font-display); font-size: 1.5rem; }
@media (min-width: 768px) { .events-section__venue { grid-column: span 5; } }
.events-section__city { display: flex; align-items: center; gap: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); font-size: 0.875rem; }
@media (min-width: 768px) { .events-section__city { grid-column: span 3; } }
.events-section__cta { }
@media (min-width: 768px) { .events-section__cta { grid-column: span 2; text-align: right; } }
.events-section__sold-out { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }

/* ---------------------------------------------------------------- Services section */
.theme-services-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .theme-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.theme-service-card { background: var(--color-card); border: 1px solid var(--color-border); padding: 1.75rem; transition: all 0.5s var(--transition-smooth); }
.theme-service-card:hover { border-color: color-mix(in srgb, var(--color-primary) 60%, transparent); transform: translateY(-4px); box-shadow: var(--shadow-yellow); }
.theme-service-card__icon { width: 2.75rem; height: 2.75rem; border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--color-primary); }
.theme-service-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.theme-service-card p { font-size: 0.875rem; color: var(--color-muted-foreground); font-weight: 300; line-height: 1.6; }

/* ---------------------------------------------------------------- Subscribe section */
.subscribe-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .subscribe-section__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.subscribe-section .theme-subscribe-form {
	border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
	background: color-mix(in srgb, var(--color-background) 60%, transparent);
	backdrop-filter: blur(6px);
	padding: 2rem;
	position: relative;
	overflow: hidden;
}
@media (min-width: 768px) {
	.subscribe-section .theme-subscribe-form {
		padding: 2.5rem;
	}
}
.theme-subscribe-form--insider { border-color: var(--color-primary); background: color-mix(in srgb, var(--color-primary) 5%, transparent); }
.theme-subscribe-form--insider::before { content: ''; position: absolute; top: -2.5rem; right: -2.5rem; width: 10rem; height: 10rem; border-radius: 999px; background: color-mix(in srgb, var(--color-primary) 15%, transparent); filter: blur(48px); pointer-events: none; }
.theme-subscribe-form__eyebrow-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.subscribe-section__heading { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
@media (min-width: 768px) { .subscribe-section__heading { font-size: 2.75rem; } }
.theme-subscribe-form p { margin-top: 1rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; line-height: 1.6; }
.theme-subscribe-form__fields { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 480px) { .theme-subscribe-form__fields { flex-direction: row; } }

/* ---------------------------------------------------------------- FAQ section */
.faq-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.faq-section__intro { position: static; }
@media (min-width: 1024px) {
	.faq-section__intro { position: sticky; top: 7rem; }
}
.faq-section__intro p { margin-top: 1.25rem; color: var(--color-muted-foreground); font-weight: 300; line-height: 1.6; max-width: 22rem; }
.faq-section__list { border-top: 1px solid var(--color-border); }
.theme-faq-item { border-bottom: 1px solid var(--color-border); }
.theme-faq-item__question { display: flex; align-items: center; gap: 1.25rem; width: 100%; padding: 1.5rem 0; text-align: left; }
@media (min-width: 768px) { .theme-faq-item__question { gap: 1.75rem; padding: 1.75rem 0; } }
.theme-faq-item__num { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-muted-foreground); flex-shrink: 0; transition: color 0.3s ease; }
@media (min-width: 768px) { .theme-faq-item__num { font-size: 1.5rem; } }
.theme-faq-item.is-open .theme-faq-item__num { color: var(--color-primary); }
.theme-faq-item__q-text { flex: 1; font-family: var(--font-display); font-size: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); transition: color 0.3s ease; }
@media (min-width: 768px) { .theme-faq-item__q-text { font-size: 1.5rem; } }
.theme-faq-item.is-open .theme-faq-item__q-text { color: var(--color-foreground); }
.theme-faq-item__plus { flex-shrink: 0; color: var(--color-muted-foreground); transition: transform 0.3s ease, color 0.3s ease; }
.theme-faq-item.is-open .theme-faq-item__plus { transform: rotate(45deg); color: var(--color-primary); }
.theme-faq-item__answer { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--transition-smooth); }
.theme-faq-item.is-open .theme-faq-item__answer { max-height: 40em; }
.theme-faq-item__answer p { padding: 0 1.5rem 1.5rem 2.5rem; color: var(--color-muted-foreground); font-weight: 300; line-height: 1.6; font-size: 0.875rem; max-width: 42rem; }
@media (min-width: 768px) { .theme-faq-item__answer p { padding-left: 3rem; font-size: 1rem; } }

/* ---------------------------------------------------------------- Contact section */
.contact-section { position: relative; overflow: hidden; }
.contact-section__bg { position: absolute; inset: 0; background-size: cover; background-position: bottom; pointer-events: none; }
.contact-section__gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--color-background) 0%, color-mix(in srgb, var(--color-background) 95%, transparent) 25%, color-mix(in srgb, var(--color-background) 78%, transparent) 55%, color-mix(in srgb, var(--color-background) 55%, transparent) 80%, color-mix(in srgb, var(--color-background) 35%, transparent) 100%); pointer-events: none; }
.contact-section__content { position: relative; z-index: 1; }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.contact-section__heading { margin: 0.75rem 0 1.25rem; }
.contact-section__intro > p { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); font-weight: 300; line-height: 1.6; max-width: 28rem; }
.contact-section__links { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-section__links a { display: flex; align-items: center; gap: 1rem; }
.contact-section__icon { width: 2.75rem; height: 2.75rem; border: 1px solid var(--color-surface-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--color-primary); transition: border-color 0.3s ease; }
.contact-section__links a:hover .contact-section__icon { border-color: var(--color-primary); }
.contact-section__links a span:last-child { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); transition: color 0.3s ease; overflow-wrap: break-word; }
.contact-section__links a:hover span:last-child { color: var(--color-foreground); }
.contact-section__form-wrap { height: 100%; display: flex; }
.contact-section__success { width: 100%; border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent); padding: 3rem 2rem; text-align: center; background: var(--color-surface-soft); display: flex; flex-direction: column; align-items: center; justify-content: center; }
@media (min-width: 768px) { .contact-section__success { padding: 3.5rem; } }
.contact-section__success[hidden] { display: none; }
.contact-section__success-icon { width: 3.5rem; height: 3.5rem; background: var(--color-primary); color: var(--color-background); display: flex; align-items: center; justify-content: center; border-radius: 2px; margin-bottom: 1.5rem; }
.contact-section__success h3 { font-size: 2.25rem; margin-bottom: 0.75rem; }
.contact-section__success p { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); font-weight: 300; max-width: 22rem; margin: 0 auto; line-height: 1.6; }
.theme-contact-form { width: 100%; display: flex; flex-direction: column; gap: 1.5rem; border: 1px solid var(--color-surface-soft); padding: 2rem; background: color-mix(in srgb, var(--color-surface-soft) 40%, transparent); }
@media (min-width: 768px) { .theme-contact-form { padding: 2.5rem; } }
.theme-contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .theme-contact-form__row { grid-template-columns: 1fr 1fr; } }
.theme-field { display: flex; flex-direction: column; }
.theme-field--grow { flex: 1; }
.theme-field label { margin-bottom: 0.75rem; }
.theme-field .theme-input { padding: 0.875rem 1rem; border-color: var(--color-surface-soft); }
.theme-field .theme-textarea { flex: 1; background: color-mix(in srgb, var(--color-background) 80%, transparent); }
.theme-field select.theme-input option { background: var(--color-background); }
.theme-contact-form button[type=submit] .btn-text-sending { display: none; }
.theme-contact-form button[type=submit].is-sending .btn-text-idle { display: none; }
.theme-contact-form button[type=submit].is-sending .btn-text-sending { display: inline-flex; }

/* ---------------------------------------------------------------- Footer */
.site-footer { background: var(--color-background); border-top: 1px solid var(--color-surface-soft); }
.site-footer__inner { padding-top: 4rem; padding-bottom: 5rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-top: 5rem; padding-bottom: 5rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(12, 1fr); gap: 3rem; } }
.site-footer__col--brand { grid-column: 1 / -1; }
@media (min-width: 768px) { .site-footer__col--brand { grid-column: span 5; } }
.site-footer__col--nav { grid-column: 1 / -1; }
@media (min-width: 768px) { .site-footer__col--nav { grid-column: span 3; } }
.site-footer__col--contact { grid-column: 1 / -1; }
@media (min-width: 768px) { .site-footer__col--contact { grid-column: span 4; } }
.site-footer__brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.site-footer__brand .site-logo-img { height: 4rem; width: auto; object-fit: contain; }
.site-footer__brand-name { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.18em; }
.site-footer__tagline { margin-top: 1.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); max-width: 28rem; line-height: 1.6; font-weight: 300; overflow-wrap: break-word; }
.site-footer__release { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.site-footer__release-logo { height: 2.5rem; width: auto; opacity: 0.8; }
.site-footer__release span { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.site-footer__heading { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 1.25rem; font-weight: 600; }
.site-footer__nav-list, .site-footer__contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__nav-list a, .site-footer__contact-list a { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; transition: color 0.3s ease; }
.site-footer__nav-list a:hover, .site-footer__contact-list a:hover { color: var(--color-primary); }
.site-footer__contact-list li { display: flex; align-items: center; gap: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-size: 0.875rem; font-weight: 300; }
.site-footer__social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.site-footer__social a { color: color-mix(in srgb, var(--color-foreground) 60%, transparent); transition: color 0.3s ease; }
.site-footer__social a:hover { color: var(--color-primary); }
.site-footer__bottom { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--color-surface-soft); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; text-align: center; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; text-align: left; } }
.site-footer__copyright, .site-footer__credit { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.site-footer__credit a { color: var(--color-primary); transition: color 0.3s ease; }
.site-footer__credit a:hover { color: var(--color-foreground); }

/* ---------------------------------------------------------------- Cart drawer + overlay (Section 12, 22.5, 31.6) */
#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 60;
	background: color-mix(in srgb, var(--color-background) 30%, transparent);
	backdrop-filter: blur(4px);
	opacity: 0; visibility: hidden;
	transition: opacity 0.4s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }
#theme-cart-drawer {
	position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 28rem;
	background: var(--color-background); border-left: 1px solid var(--color-border);
	z-index: 61; display: flex; flex-direction: column; box-shadow: var(--shadow-noir);
	transform: translateX(100%);
	transition: transform 0.5s 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.5rem; }
.theme-cart-drawer__close { padding: 0.25rem; opacity: 0.7; transition: opacity 0.2s ease; }
.theme-cart-drawer__close:hover { opacity: 1; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; color: var(--color-muted-foreground); }
.theme-cart-drawer__empty svg { margin-bottom: 1rem; opacity: 0.6; }
.theme-cart-drawer__empty p { margin-bottom: 1.5rem; }
.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: 5rem; flex-shrink: 0; overflow: hidden; }
.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: 600; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color 0.2s ease; }
.theme-cart-drawer__item-name:hover { color: var(--color-primary); }
.theme-cart-drawer__item-meta { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.125rem; }
.theme-cart-drawer__item-variation { font-size: 0.7rem; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.theme-cart-drawer__item-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-drawer__item-controls .theme-qty-minus, .theme-cart-drawer__item-controls .theme-qty-plus { padding: 0.25rem; border-radius: var(--radius); transition: background 0.2s ease; }
.theme-cart-drawer__item-controls .theme-qty-minus:hover, .theme-cart-drawer__item-controls .theme-qty-plus:hover { background: var(--color-surface-soft); }
.theme-cart-drawer__item-qty { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-drawer__remove { margin-left: auto; font-size: 0.75rem; color: var(--color-muted-foreground); transition: color 0.2s ease; }
.theme-cart-drawer__remove:hover { color: var(--color-primary); }
.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__subtotal span:first-child { color: var(--color-muted-foreground); }
.theme-cart-drawer__subtotal span:last-child { font-weight: 600; }
.theme-cart-drawer__note { font-size: 0.75rem; color: var(--color-muted-foreground); }

/* Hide WooCommerce's own "View cart" link after AJAX add (Section 11.4.2) */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

/* ---------------------------------------------------------------- WooCommerce button overrides (Section 11.4.1) */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	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;
	gap: 0.5rem;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
.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 variant */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: 2.5rem !important;
	padding: 0 1rem !important;
}

/* WooCommerce notices — scoped visibility (Section 14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	border-top-color: var(--color-primary);
	background: var(--color-surface-soft);
	color: var(--color-foreground);
	border-radius: var(--radius);
	font-family: var(--font-body);
	padding: 1rem 1.5rem;
	list-style: none;
}
.woocommerce-error { border-top-color: #e05252; }

/* ---------------------------------------------------------------- Single product page — Lovable parity (ProductDetail.tsx) */
body.single-product.theme-no-hero .site-main.single-product-main,
body.single-product .site-main.single-product-main {
	padding-top: 6rem !important;
	padding-bottom: 5rem;
}
@media (min-width: 1024px) {
	body.single-product .site-main.single-product-main {
		padding-top: 7rem !important;
	}
}
body.admin-bar.single-product .site-main.single-product-main {
	padding-top: calc(6rem + var(--admin-bar-height, 32px)) !important;
}
@media (min-width: 1024px) {
	body.admin-bar.single-product .site-main.single-product-main {
		padding-top: calc(7rem + var(--admin-bar-height, 32px)) !important;
	}
}

.single-product-main .single-product__back {
	padding: 1.5rem 0;
}
.single-product-main .single-product__back a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
	transition: color 0.2s ease;
}
.single-product-main .single-product__back a:hover {
	color: var(--color-primary);
}

.single-product-main .theme-product-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.5rem;
	padding-bottom: 5rem;
	min-width: 0;
}
@media (min-width: 1024px) {
	.single-product-main .theme-product-layout {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 4rem;
	}
}

.single-product-main .theme-product-gallery,
.single-product-main .theme-product-info {
	min-width: 0;
	max-width: 100%;
}
@media (min-width: 1024px) {
	.single-product-main .theme-product-info {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
}

.single-product-main .theme-product-gallery__main {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.single-product-main .theme-product-gallery__main img,
.single-product-main #product-main-img {
	position: static !important;
	width: 100%;
	height: 100%;
	max-width: 100%;
	object-fit: cover;
	display: block;
}
.single-product-main .theme-product-gallery__placeholder {
	color: color-mix(in srgb, var(--color-foreground) 30%, transparent);
}

.single-product-main .theme-product-thumbnails {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.5rem;
	max-width: 100%;
}
.single-product-main .theme-product-thumb {
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	overflow: hidden;
	border: 2px solid transparent;
	opacity: 0.6;
	transition: opacity 0.2s ease, border-color 0.2s ease;
	padding: 0;
}
.single-product-main .theme-product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: static !important;
	max-width: none;
}
.single-product-main .theme-product-thumb.is-active {
	border-color: var(--color-primary);
	opacity: 1;
}
.single-product-main .theme-product-thumb:hover {
	opacity: 1;
}

.single-product-main .theme-product-info__eyebrow {
	display: block;
	font-size: 0.75rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--color-primary);
	font-family: var(--font-body);
	font-weight: 600;
}
.single-product-main .product-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 2.25rem;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin: 0.75rem 0 0.5rem;
}
@media (min-width: 768px) {
	.single-product-main .product-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
	.single-product-main .product-title { font-size: 3.75rem; }
}
.single-product-main .theme-product-info__artist {
	font-size: 0.875rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
	margin-bottom: 1.5rem;
}
.single-product-main .theme-product-info__price {
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	font-family: var(--font-body);
}
.single-product-main .theme-product-info__price-detail {
	margin-left: 0.5rem;
	font-size: 0.875rem;
	color: var(--color-muted-foreground);
	font-weight: 400;
}
.single-product-main .theme-product-info__description {
	color: var(--color-muted-foreground);
	font-weight: 300;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-family: var(--font-body);
	white-space: pre-line;
}
.single-product-main .theme-product-info__tracklist {
	margin-bottom: 2rem;
}
.single-product-main .theme-product-info__tracklist ol {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.single-product-main .theme-product-info__tracklist li {
	display: flex;
	justify-content: space-between;
	font-size: 0.875rem;
	border-bottom: 1px solid var(--color-border);
	padding: 0.5rem 0;
	font-family: var(--font-body);
}
.single-product-main .theme-track-num {
	color: var(--color-muted-foreground);
	margin-right: 0.75rem;
	font-variant-numeric: tabular-nums;
}

.single-product-main .theme-add-to-cart-area {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem;
}
.single-product-main .single_add_to_cart_button {
	flex: 1 1 auto;
	min-width: 160px;
}
.single-product-main .theme-quantity-wrapper {
	display: flex;
	align-items: center;
	border: 1px solid var(--color-border);
}
.single-product-main .theme-qty-minus,
.single-product-main .theme-qty-plus {
	padding: 0.75rem 1rem;
	transition: background 0.2s ease;
}
.single-product-main .theme-qty-minus:hover,
.single-product-main .theme-qty-plus:hover {
	background: var(--color-surface-soft);
}
.single-product-main .theme-qty-display {
	min-width: 3rem;
	padding: 0.75rem 1rem;
	text-align: center;
	font-family: var(--font-body);
}
.single-product-main .theme-qty-input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.single-product-main .theme-product-info__details {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--color-border);
}
.single-product-main .theme-product-info__details h3 {
	margin-bottom: 1rem;
}
.single-product-main .theme-product-info__details-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.single-product-main .theme-product-info__details-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
	line-height: 1.5;
}
.single-product-main .theme-product-info__details-list li::before {
	content: '';
	width: 0.375rem;
	height: 0.375rem;
	margin-top: 0.5rem;
	flex-shrink: 0;
	background: var(--color-primary);
}

.single-product-main .theme-attribute-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}
.single-product-main .theme-attribute-pill {
	border: 1px solid var(--color-border);
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-family: var(--font-body);
	color: var(--color-foreground);
	transition: border-color 0.2s ease, background 0.2s ease;
}
.single-product-main .theme-attribute-pill.is-selected,
.single-product-main .theme-attribute-pill:hover {
	border-color: var(--color-primary);
}
.single-product-main .theme-attribute-pill.is-selected {
	background: color-mix(in srgb, var(--color-primary) 12%, transparent);
}
.single-product-main .variations .label label {
	font-family: var(--font-body);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
}
.single-product-main .variations tbody td.label { padding-bottom: 0.5rem; }
.single-product-main .variations tbody td.value { padding-top: 0; }
.single-product-main .theme-attr-select-hidden { display: none !important; }

.single-product-main .woocommerce-tabs,
.single-product-main .product_meta,
.single-product-main .woocommerce-product-gallery,
.single-product-main .flex-viewport,
.single-product-main .woocommerce-notices-wrapper,
.single-product-main .woocommerce-variation-description {
	display: none !important;
}

.related-products-section {
	padding: 5rem 0;
	border-top: 1px solid var(--color-border);
}
.related-products-section__heading {
	font-family: var(--font-display);
	font-size: 1.875rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin-bottom: 2.5rem;
	line-height: 1.1;
}
.related-products-section__heading em {
	color: var(--color-primary);
	font-style: normal;
}
@media (min-width: 768px) {
	.related-products-section__heading { font-size: 2.25rem; }
}

.theme-related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	list-style: none;
}
@media (min-width: 1024px) {
	.theme-related-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 2rem;
	}
}

.theme-related-card {
	display: block;
	height: 100%;
	color: inherit;
}
.theme-related-card__inner {
	background: var(--color-card);
	border: 1px solid var(--color-border);
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.theme-related-card:hover .theme-related-card__inner {
	border-color: color-mix(in srgb, var(--color-primary) 60%, transparent);
	box-shadow: var(--shadow-yellow);
}
.theme-related-card__image {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.theme-related-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: static !important;
	max-width: none;
}
.theme-related-card__placeholder {
	color: color-mix(in srgb, var(--color-foreground) 30%, transparent);
}
.theme-related-card__tag {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 1;
	padding: 0.25rem 0.625rem;
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	background: var(--color-primary);
	color: var(--color-background);
	font-family: var(--font-body);
	font-weight: 600;
}
.theme-related-card__body {
	padding: 1.25rem 1.5rem 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.theme-related-card__title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.5rem;
}
.theme-related-card__title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	line-height: 1.15;
	letter-spacing: 0.02em;
	transition: color 0.3s ease;
}
@media (min-width: 768px) {
	.theme-related-card__title { font-size: 1.5rem; }
}
.theme-related-card:hover .theme-related-card__title {
	color: var(--color-primary);
}
.theme-related-card__price {
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-primary);
	white-space: nowrap;
	margin-top: 0.25rem;
}
.theme-related-card__artist {
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
}

/* Variation table layout */
.single-product-main .variations.shop_attributes tbody,
.single-product-main .variations tbody tr,
.single-product-main .variations tbody td {
	display: block;
	width: 100%;
}


/* ---------------------------------------------------------------- Archive / shop page */
.archive-product-page { padding: 7rem 0 5rem; }
.archive-product-page .page-title { font-size: 2.5rem; margin-bottom: 2.5rem; }
.theme-product-grid--archive { list-style: none; }

/* ---------------------------------------------------------------- Generic page / 404 / thank you */
.site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.theme-no-hero .site-main { padding-top: var(--header-height); }
body:not(.theme-no-hero) .site-main { padding-top: 0; }
.page-content-wrap { padding-top: 3rem; padding-bottom: 3rem; }
.page-title { font-size: 2.5rem; margin-bottom: 1.5rem; font-family: var(--font-display); }

.theme-404 { display: flex; align-items: center; justify-content: center; min-height: 70vh; }
.theme-404__inner { text-align: center; }
.theme-404__inner h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.theme-404__inner p { color: var(--color-muted-foreground); margin-bottom: 2rem; }

/* ---------------------------------------------------------------- WooCommerce Checkout Block — Lovable 2-column layout */
body.woocommerce-checkout .site-main,
body.theme-has-checkout-block .site-main {
	padding-top: var(--header-height);
	padding-bottom: 4rem;
}

body.woocommerce-checkout .page-content-wrap--checkout,
body.theme-has-checkout-block .page-content-wrap--checkout {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

body.woocommerce-checkout .entry-content,
body.theme-has-checkout-block .entry-content {
	max-width: 100%;
	width: 100%;
}

/* Disable WC container queries so viewport breakpoints control the layout. */
body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.theme-has-checkout-block .wp-block-woocommerce-checkout {
	container-type: normal !important;
	width: 100%;
	min-width: 0;
	margin-inline: auto;
	box-sizing: border-box;
}

/*
 * Real layout wrapper: .wc-block-components-sidebar-layout (flex 65/35 in WC core).
 * Override to a strict 2-column grid matching Lovable: grid-cols-1 lg:grid-cols-2 gap-12 lg:gap-16.
 */
body.woocommerce-checkout .wc-block-components-sidebar-layout,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
body.theme-has-checkout-block .wc-block-components-sidebar-layout,
body.theme-has-checkout-block .wc-block-components-sidebar-layout.wc-block-checkout {
	display: grid !important;
	flex-direction: unset !important;
	flex-wrap: nowrap !important;
	grid-template-columns: 1fr !important;
	gap: var(--checkout-gap) !important;
	align-items: start;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	box-sizing: border-box;
}

@media (min-width: 1024px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
	body.theme-has-checkout-block .wc-block-components-sidebar-layout,
	body.theme-has-checkout-block .wc-block-components-sidebar-layout.wc-block-checkout {
		grid-template-columns: 1fr 1fr !important;
		gap: var(--checkout-gap-lg) !important;
	}
}

/* Notices — full width above the 2 columns. */
body.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-notices,
body.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-store-notices,
body.woocommerce-checkout .wc-block-components-notices,
body.woocommerce-checkout .wc-block-store-notices,
body.woocommerce-checkout .wc-block-components-notice-banner,
body.theme-has-checkout-block .wc-block-components-sidebar-layout > .wc-block-components-notices,
body.theme-has-checkout-block .wc-block-components-sidebar-layout > .wc-block-store-notices,
body.theme-has-checkout-block .wc-block-components-notices,
body.theme-has-checkout-block .wc-block-store-notices,
body.theme-has-checkout-block .wc-block-components-notice-banner {
	grid-column: 1 / -1 !important;
	order: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	margin-inline: auto;
	box-sizing: border-box;
}

/*
 * WC uses .wc-block-components-main / .wc-block-components-sidebar (not __main/__sidebar).
 * Reset core 65%/35% widths and padding so both columns are equal.
 */
body.woocommerce-checkout .wc-block-components-main,
body.woocommerce-checkout .wc-block-components-sidebar,
body.woocommerce-checkout .wp-block-woocommerce-checkout-fields-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-totals-block,
body.theme-has-checkout-block .wc-block-components-main,
body.theme-has-checkout-block .wc-block-components-sidebar,
body.theme-has-checkout-block .wp-block-woocommerce-checkout-fields-block,
body.theme-has-checkout-block .wp-block-woocommerce-checkout-totals-block {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	flex: none !important;
	flex-basis: auto !important;
	padding: 0 !important;
	margin: 0 !important;
	box-sizing: border-box !important;
}

/* Legacy class aliases (older WC versions). */
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.theme-has-checkout-block .wc-block-checkout__main,
body.theme-has-checkout-block .wc-block-checkout__sidebar {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	box-sizing: border-box !important;
}

/* Mobile: form first, summary second (Lovable order-1 / order-2). */
body.woocommerce-checkout .wc-block-components-main,
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wp-block-woocommerce-checkout-fields-block,
body.theme-has-checkout-block .wc-block-components-main,
body.theme-has-checkout-block .wc-block-checkout__main,
body.theme-has-checkout-block .wp-block-woocommerce-checkout-fields-block {
	order: 1 !important;
	grid-column: 1;
}

body.woocommerce-checkout .wc-block-components-sidebar,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wp-block-woocommerce-checkout-totals-block,
body.theme-has-checkout-block .wc-block-components-sidebar,
body.theme-has-checkout-block .wc-block-checkout__sidebar,
body.theme-has-checkout-block .wp-block-woocommerce-checkout-totals-block {
	order: 2 !important;
	grid-column: 1;
}

/* Desktop: order summary left, checkout form right (matches Lovable). */
@media (min-width: 1024px) {
	body.woocommerce-checkout .wc-block-components-sidebar,
	body.woocommerce-checkout .wc-block-checkout__sidebar,
	body.woocommerce-checkout .wp-block-woocommerce-checkout-totals-block,
	body.theme-has-checkout-block .wc-block-components-sidebar,
	body.theme-has-checkout-block .wc-block-checkout__sidebar,
	body.theme-has-checkout-block .wp-block-woocommerce-checkout-totals-block {
		order: 1 !important;
		grid-column: 1;
	}

	body.woocommerce-checkout .wc-block-components-main,
	body.woocommerce-checkout .wc-block-checkout__main,
	body.woocommerce-checkout .wp-block-woocommerce-checkout-fields-block,
	body.theme-has-checkout-block .wc-block-components-main,
	body.theme-has-checkout-block .wc-block-checkout__main,
	body.theme-has-checkout-block .wp-block-woocommerce-checkout-fields-block {
		order: 2 !important;
		grid-column: 2;
	}
}

/* Section headings — Lovable uses font-display text-2xl. */
body.woocommerce-checkout .wc-block-components-checkout-step__title,
body.woocommerce-checkout .wc-block-components-checkout-order-summary__title,
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title,
body.theme-has-checkout-block .wc-block-components-checkout-step__title,
body.theme-has-checkout-block .wc-block-components-checkout-order-summary__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1.2;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
body.theme-has-checkout-block .wp-block-woocommerce-checkout-order-summary-block {
	width: 100% !important;
	min-width: 0 !important;
	padding-inline: 1rem;
}

body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-select label,
body.woocommerce-checkout .wc-block-components-address-form label,
body.theme-has-checkout-block .wc-block-components-text-input label,
body.theme-has-checkout-block .wc-block-components-select label,
body.theme-has-checkout-block .wc-block-components-address-form label {
	color: #000;
}

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.theme-has-checkout-block .wc-block-components-text-input input,
body.theme-has-checkout-block .wc-block-components-select select,
body.theme-has-checkout-block .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	color: var(--color-foreground);
	background: transparent;
	border-color: var(--color-border);
	font-family: var(--font-body);
	font-size: 0.9rem;
	box-sizing: border-box;
}

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.theme-has-checkout-block .wc-block-components-text-input input:focus,
body.theme-has-checkout-block .wc-block-components-select select:focus,
body.theme-has-checkout-block .wc-block-components-textarea textarea:focus {
	border-color: var(--color-primary);
	outline: none;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button,
body.theme-has-checkout-block .wc-block-components-checkout-place-order-button {
	background: var(--color-primary) !important;
	color: var(--color-background) !important;
	border-radius: var(--btn-radius) !important;
	text-transform: none !important;
	width: 100%;
}

body.woocommerce-checkout .page-title,
body.theme-has-checkout-block .page-title {
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 5vw, 3rem);
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin-bottom: 2.5rem;
}

/* ---------------------------------------------------------------- Cart / My Account / Thank you width parity (Section 13.7) */
body.woocommerce-cart .site-main, body.woocommerce-account .site-main, body.theme-thankyou-page .site-main { padding-top: var(--header-height); }
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-customer-details,
body.theme-thankyou-page .woocommerce-order-details { color: var(--color-foreground); }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1rem 2rem; list-style: none; padding: 0; margin: 1.5rem 0; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-order h2, body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem 0; font-size: 1.75rem; }
body.theme-thankyou-page .woocommerce-customer-details { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
body.theme-thankyou-page .woocommerce-customer-details address { max-width: 480px; overflow-wrap: break-word; border: 1px solid var(--color-border); padding: 1rem; }

/* ---------------------------------------------------------------- Media Customizer control (front-end N/A, admin css lives separately) */
