/* ==========================================================================
   Stephensignature theme stylesheet
   Ported from the source design's utility-class layer + custom CSS.
   ========================================================================== */

/* -------------------------------------------------------------------------
 * TOKENS (Section 6 / 6.1 — hex values are computed from the source's HSL
 * tokens via theme_hsl_to_hex(); Customizer inline output overrides these).
 * ---------------------------------------------------------------------- */
:root {
	--color-ink: #141414;
	--color-bone: #FAFAFA;
	--color-red: #E00013;
	--color-muted: #F0F0F0;
	--color-muted-foreground: #616161;
	--color-border: #DBDBDB;
	--color-card-dark: #2B2724;
	--color-black: #000000;
	--color-white: #ffffff;
	--color-badge-cyan: #7DF9FF;
	--color-overlay-60: rgba(0, 0, 0, 0.6);
	--color-shadow-card: rgba(0, 0, 0, 0.5);
	--logo-height: 62px;

	--font-display: "Barlow Condensed", "Inter Tight", ui-sans-serif, sans-serif;
	--font-body: "Inter Tight", "Inter", ui-sans-serif, system-ui, sans-serif;
	--font-condensed: "Barlow Condensed", "Inter Tight", ui-sans-serif, sans-serif;
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

	--header-height: 88px;

	--btn-radius: 999px;
	--btn-height: 3rem;
	--btn-padding: 0.9rem 1.75rem;
	--btn-font-size: 13px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.14em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.6rem;
}

/* -------------------------------------------------------------------------
 * RESET
 * ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; padding: 0; background-color: var(--color-bone); color: var(--color-ink); font-family: var(--font-body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* Heading weight reset — Tailwind preflight parity (Section 2.2) */
h1, h2, h3, h4, h5, h6, .display-xl, .font-display {
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
}

/* Global img rule with cover-image exclusion list (Section 15.1) */
img:not(.cover-img) {
	max-width: 100%;
	height: auto;
	display: block;
}
.cover-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 0; top: 0; background: var(--color-bone); color: var(--color-ink); padding: 0.5rem 1rem; z-index: 200; }

/* -------------------------------------------------------------------------
 * TYPOGRAPHY UTILITIES
 * ---------------------------------------------------------------------- */
.font-condensed { font-family: var(--font-condensed); }
.eyebrow {
	font-family: var(--font-condensed);
	text-transform: uppercase;
	letter-spacing: 0.24em;
	font-weight: 600;
	font-size: 12px;
	margin: 0;
}
.text-red { color: var(--color-red); }
.text-bone\/70 { color: color-mix(in srgb, var(--color-bone) 70%, transparent); }

.display-xl {
	font-family: var(--font-condensed);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 0.88;
}

.theme-container { max-width: 1400px; margin: 0 auto; padding: 0 1.25rem; }
.theme-container--narrow { max-width: 1100px; }
.theme-container--faq { max-width: 900px; }
.theme-container--page { max-width: 1100px; padding-top: 8rem; padding-bottom: 6rem; }
.theme-container--give { max-width: 56rem; text-align: center; }
@media (min-width: 768px) { .theme-container { padding: 0 2.5rem; } }

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

.animate-entrance {
	animation: sw-entrance 1.2s var(--ease-out-expo) both;
}
@keyframes sw-entrance {
	0% { opacity: 0; transform: translateY(14px); }
	100% { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------------------
 * BUTTONS
 * ---------------------------------------------------------------------- */
.theme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	font-family: var(--font-condensed);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-weight: 600;
	font-size: 13px;
	padding: 0.9rem 1.75rem;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}
.theme-btn--pill { border-radius: 999px; }
.theme-btn--lg { padding: 1rem 2rem; font-size: 15px; }
.theme-btn--ink { background: var(--color-ink); color: var(--color-bone); }
.theme-btn--ink:hover { background: var(--color-red); }
.theme-btn--bone { background: var(--color-bone); color: var(--color-ink); }
.theme-btn--bone:hover { background: var(--color-red); color: var(--color-bone); }
.theme-btn--outline { border: 1px solid color-mix(in srgb, var(--color-ink) 20%, transparent); color: var(--color-ink); background: transparent; }
.theme-btn--outline:hover { border-color: var(--color-red); background: var(--color-red); color: var(--color-bone); }
.theme-btn--outline-bone { border: 1px solid color-mix(in srgb, var(--color-bone) 40%, transparent); color: var(--color-bone); background: transparent; }
.theme-btn--outline-bone:hover { border-color: var(--color-red); color: var(--color-red); background: transparent; }
.hero-section__actions .theme-btn--outline-bone:hover { border-color: var(--color-red); color: var(--color-red); background: transparent; }
.theme-btn__icon { width: 1.1rem; height: 1.1rem; filter: brightness(0) invert(1); }

/* -------------------------------------------------------------------------
 * HEADER
 * ---------------------------------------------------------------------- */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 50;
	background: var(--color-ink);
	color: var(--color-bone);
}
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
}
@media (min-width: 768px) { .site-header__inner { padding: 1rem 2.5rem; } }

.site-header__brand { display: flex; align-items: center; gap: 0.75rem; }
.site-logo-img { height: 52px !important; width: auto !important; display: block; }
@media (min-width: 768px) { .site-logo-img { height: var(--logo-height) !important; } }
.site-logo-text { font-family: var(--font-condensed); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--color-bone); }
.site-logo-text--beside { margin-left: 0.5rem; }

.theme-nav-list { display: none; align-items: center; justify-content: flex-end; gap: 0.5rem; }
@media (min-width: 1024px) { .theme-nav-list { display: flex; } }
.theme-nav-list li a,
.theme-nav-link {
	font-family: var(--font-condensed);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-weight: 600;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--color-bone) 30%, transparent);
	padding: 0.5rem 1rem;
	color: color-mix(in srgb, var(--color-bone) 85%, transparent);
	transition: border-color 0.2s ease, color 0.2s ease;
}
.theme-nav-list li a:hover, .theme-nav-link:hover { border-color: var(--color-bone); color: var(--color-bone); }
.theme-nav-list li:last-child a,
.theme-nav-link--contact {
	border-color: var(--color-bone);
	background: var(--color-bone);
	color: var(--color-ink) !important;
}
.theme-nav-list li:last-child a:hover, .theme-nav-link--contact:hover { background: var(--color-red); border-color: var(--color-red); color: var(--color-bone) !important; }

.site-header__actions { display: flex; align-items: center; gap: 0.25rem; grid-column: 3; }
.theme-cart-toggle { position: relative; width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; color: var(--color-bone); border-radius: 999px; transition: color 0.2s ease; }
.theme-cart-toggle:hover { color: var(--color-red); }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px;
	min-width: 1.25rem; height: 1.25rem; padding: 0 0.25rem;
	display: flex; align-items: center; justify-content: center;
	border-radius: 999px; background: var(--color-red); color: var(--color-bone);
	font-family: var(--font-condensed); font-weight: 700; font-size: 12px;
}
.theme-cart-count:empty { display: none; }

.theme-nav-toggle { display: flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center; color: var(--color-bone); }
@media (min-width: 1024px) { .theme-nav-toggle { display: none; } }
.theme-nav-toggle__icon-close { display: none; }
body.nav-open .theme-nav-toggle__icon-open { display: none; }
body.nav-open .theme-nav-toggle__icon-close { display: block; }

.site-header__mobile { display: none; border-top: 1px solid color-mix(in srgb, var(--color-bone) 10%, transparent); background: var(--color-ink); }
body.nav-open .site-header__mobile { display: block; }
@media (min-width: 1024px) { .site-header__mobile { display: none !important; } }
.site-header__mobile .theme-nav-list,
.theme-nav-list--mobile {
	display: flex !important;
	flex-direction: column;
	padding: 0.5rem 1.25rem;
}
.site-header__mobile .theme-nav-list li a,
.theme-nav-list--mobile li a {
	display: block;
	padding: 1rem 0;
	border: none !important;
	border-radius: 0;
	font-size: 13px;
	background: none !important;
	color: var(--color-bone) !important;
	font-family: var(--font-condensed);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-weight: 600;
}
.site-header__mobile .theme-nav-list li a:hover,
.theme-nav-list--mobile li a:hover { color: var(--color-red) !important; border-color: transparent !important; }
.site-header__mobile .theme-nav-list li:last-child a,
.theme-nav-list--mobile li:last-child a {
	border: none !important;
	background: none !important;
	color: var(--color-bone) !important;
}
.site-header__mobile .theme-nav-list li:last-child a:hover,
.theme-nav-list--mobile li:last-child a:hover { color: var(--color-red) !important; background: none !important; }

body.theme-no-hero { padding-top: var(--header-height); }

/* -------------------------------------------------------------------------
 * HERO
 * ---------------------------------------------------------------------- */
.hero-section {
	position: relative;
	isolation: isolate;
	min-height: 100vh;
	overflow: hidden;
	background: var(--color-ink);
	color: var(--color-bone);
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 5rem;
}
@media (min-width: 768px) { .hero-section { padding-top: 6rem; } }
.hero-section__video { z-index: -3; }
.hero-section__scrim { position: absolute; inset: 0; z-index: -2; background: color-mix(in srgb, var(--color-ink) 60%, transparent); }
.hero-section__scrim--gradient { z-index: -1; background: linear-gradient(to top, color-mix(in srgb, var(--color-ink) 80%, transparent), transparent, color-mix(in srgb, var(--color-ink) 40%, transparent)); }
.hero-section__content {
	max-width: 56rem;
	margin: 0 auto;
	padding: 4rem 1.25rem;
	min-height: calc(100vh - 5rem);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
@media (min-width: 768px) { .hero-section__content { min-height: calc(100vh - 6rem); } }
.hero-section__eyebrow { margin-top: 1.5rem; font-family: var(--font-condensed); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.32em; color: color-mix(in srgb, var(--color-bone) 70%, transparent); }
@media (min-width: 768px) { .hero-section__eyebrow { font-size: 1rem; } }
.hero-section__title { font-size: clamp(2.5rem, 11vw, 7.5rem); line-height: 0.9; word-break: break-word; }
.hero-section__subtitle { margin-top: 2rem; max-width: 28rem; font-size: 1rem; line-height: 1.6; color: color-mix(in srgb, var(--color-bone) 80%, transparent); }
.hero-section__actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; }
@media (min-width: 768px) { .hero-section__subtitle { font-size: 1.125rem; } }

/* -------------------------------------------------------------------------
 * SCROLL-REVEAL SECTION WRAPPER
 * ---------------------------------------------------------------------- */
.scroll-reveal-section { padding: 6rem 0; }
@media (min-width: 768px) { .scroll-reveal-section { padding: 8rem 0; } }

/* -------------------------------------------------------------------------
 * WHAT'S ON RAIL
 * ---------------------------------------------------------------------- */
.whatson-section__heading { font-size: 2.25rem; }
@media (min-width: 768px) { .whatson-section__heading { font-size: 3.75rem; } }
.whatson-section__rail-wrap { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .whatson-section__rail-wrap { margin-top: 4rem; grid-template-columns: auto 1fr; gap: 2.5rem; } }
.whatson-section__index { display: none; }
@media (min-width: 768px) { .whatson-section__index { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding-left: 2.5rem; } }
.whatson-section__index-label { font-family: var(--font-condensed); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; color: var(--color-muted-foreground); writing-mode: vertical-rl; }
.whatson-section__index-line { height: 6rem; width: 1px; background: var(--color-ink); }
.whatson-section__index-dash { height: 1px; width: 3rem; background: var(--color-red); }
.whatson-section__rail { display: flex; gap: 1.25rem; overflow-x: auto; padding: 0 1.25rem 0.5rem; }
@media (min-width: 768px) { .whatson-section__rail { padding: 0 2.5rem 0.5rem; } }
@media (min-width: 1024px) { .whatson-section__rail { padding: 0 0 0.5rem; } }
.whatson-card-wrap { flex-shrink: 0; width: 72vw; }
@media (min-width: 640px) { .whatson-card-wrap { width: 44vw; } }
@media (min-width: 768px) { .whatson-card-wrap { width: 300px; } }
@media (min-width: 1024px) { .whatson-card-wrap { width: 340px; } }
.whatson-card {
	display: flex; flex-direction: column; height: 100%;
	border-radius: 1rem; background: var(--color-card-dark); color: var(--color-bone);
	padding: 1rem; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
	transition: transform 0.5s ease;
}
.whatson-card:hover { transform: translateY(-4px); }
.whatson-card__image-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 0.75rem; background: #000; filter: grayscale(1); }
.whatson-card__image { transition: transform 0.7s ease; }
.whatson-card:hover .whatson-card__image { transform: scale(1.05); }
.whatson-card__body { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 0.75rem; }
.whatson-card__tag { font-family: var(--font-condensed); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.28em; color: color-mix(in srgb, var(--color-bone) 50%, transparent); }
.whatson-card__title { margin-top: 0.75rem; font-family: var(--font-condensed); font-size: 1.25rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.whatson-card__cta { margin-top: 1.5rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: rgba(0,0,0,0.6); padding: 0.5rem 1.25rem; font-family: var(--font-condensed); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; transition: background-color 0.2s ease; }
.whatson-card:hover .whatson-card__cta { background: var(--color-red); }

/* -------------------------------------------------------------------------
 * PRESS
 * ---------------------------------------------------------------------- */
.press-section__heading { margin-top: 0.75rem; font-size: 2.25rem; }
@media (min-width: 768px) { .press-section__heading { font-size: 3.75rem; } }
.press-section__intro { margin-top: 1.5rem; max-width: 42rem; color: var(--color-muted-foreground); font-size: 1rem; }
@media (min-width: 768px) { .press-section__intro { font-size: 1.125rem; } }
.press-section__rows { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.press-section__row {
	margin-top: 2.5rem; width: 100%; display: flex; align-items: center; gap: 1rem;
	border-radius: 1rem; border: 1px solid var(--color-border); padding: 1rem;
	transition: border-color 0.2s ease; text-align: left;
}
.press-section__row:hover { border-color: var(--color-red); }
@media (min-width: 768px) { .press-section__row { gap: 1.25rem; padding: 1.25rem; } }
.press-section__logo-wrap { flex-shrink: 0; width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; border-radius: 0.5rem; background: #fff; }
.press-section__logo-wrap img { max-height: 1.25rem; max-width: 100%; object-fit: contain; }
@media (min-width: 768px) { .press-section__logo-wrap { width: 3.5rem; height: 3.5rem; } .press-section__logo-wrap img { max-height: 1.5rem; } }
.press-section__row-text { display: flex; flex-direction: column; align-items: flex-start; }
.press-section__row-cta { font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; font-size: 13px; transition: color 0.2s ease; }
.press-section__row:hover .press-section__row-cta { color: var(--color-red); }
.press-section__row-source { margin-top: 0.125rem; font-size: 0.75rem; color: var(--color-muted-foreground); }
.press-section__row-arrow { margin-left: auto; font-size: 1.125rem; color: var(--color-muted-foreground); transition: color 0.2s ease; }
.press-section__row:hover .press-section__row-arrow { color: var(--color-red); }

.press-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1rem; }
.press-modal.is-open { display: flex; }
.press-modal__backdrop { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-ink) 80%, transparent); }
.press-modal__panel { position: relative; max-height: 90vh; width: 100%; max-width: 42rem; overflow-y: auto; border-radius: 1rem; background: var(--color-bone); padding: 1.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4); }
@media (min-width: 768px) { .press-modal__panel { padding: 2.5rem; } }
.press-modal__close { position: absolute; right: 1rem; top: 1rem; width: 2.25rem; height: 2.25rem; display: flex; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid var(--color-border); font-size: 1.25rem; line-height: 1; transition: border-color 0.2s ease, color 0.2s ease; }
.press-modal__close:hover { border-color: var(--color-red); color: var(--color-red); }
.press-modal__logo { height: 42px; width: auto; }
.press-modal__eyebrow { margin-top: 1rem; font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.28em; color: var(--color-red); }
.press-modal__title { margin-top: 0.75rem; font-size: 1.875rem; }
@media (min-width: 768px) { .press-modal__title { font-size: 2.25rem; } }
.press-modal__body { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 1rem; line-height: 1.6; color: color-mix(in srgb, var(--color-ink) 90%, transparent); }
.press-modal__link { margin-top: 0.5rem; }
.press-modal__link a { color: var(--color-red); text-underline-offset: 4px; }
.press-modal__link a:hover { text-decoration: underline; }

/* -------------------------------------------------------------------------
 * SPOTIFY EMBED
 * ---------------------------------------------------------------------- */
.spotify-section__head { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 1rem; }
@media (min-width: 768px) { .spotify-section__head { flex-direction: row; align-items: flex-end; } }
.spotify-section__heading { margin-top: 0.5rem; font-size: 1.875rem; }
@media (min-width: 768px) { .spotify-section__heading { font-size: 3rem; } }
.spotify-section__embed { margin-top: 2rem; overflow: hidden; border-radius: 0.75rem; }
.spotify-section__embed iframe { display: block; border-radius: 0.75rem; }

/* -------------------------------------------------------------------------
 * PROGRAMME
 * ---------------------------------------------------------------------- */
.programme-section__heading { text-align: center; font-size: 2.25rem; }
@media (min-width: 768px) { .programme-section__heading { font-size: 3.75rem; } }
.programme-section__list { margin-top: 3rem; }
@media (min-width: 768px) { .programme-section__list { margin-top: 4rem; } }
.programme-row {
	display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 0.75rem;
	border-bottom: 1px solid var(--color-border); padding: 1.25rem 0;
}
@media (min-width: 768px) { .programme-row { grid-template-columns: 80px 80px 1fr auto auto; gap: 1.5rem; padding: 1.5rem 0; } }
.programme-row__num { display: flex; flex-shrink: 0; align-items: baseline; gap: 0.375rem; }
.programme-row__n { font-family: var(--font-condensed); font-size: 1.25rem; font-weight: 700; color: var(--color-red); }
@media (min-width: 768px) { .programme-row__n { font-size: 2.25rem; } }
.programme-row__trk { display: none; font-family: var(--font-condensed); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--color-muted-foreground); }
@media (min-width: 768px) { .programme-row__trk { display: inline; } }
.programme-row__meta, .programme-row__stage { display: none; font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--color-muted-foreground); }
@media (min-width: 768px) { .programme-row__meta, .programme-row__stage { display: block; } }
.programme-row__title { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: var(--font-condensed); font-size: 1rem; font-weight: 600; text-transform: uppercase; }
@media (min-width: 768px) { .programme-row__title { font-size: 1.125rem; } }
.programme-row__actions { display: flex; flex-shrink: 0; align-items: center; gap: 0.5rem; }
.programme-row__play, .programme-row__buy {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
	width: 2.5rem; height: 2.5rem; border-radius: 999px;
	font-family: var(--font-condensed); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.programme-row__play { border: 1px solid var(--color-ink); color: var(--color-ink); }
.programme-row__play:hover { border-color: var(--color-red); background: var(--color-red); color: var(--color-bone); }
.programme-row__play-label { display: none; }
.programme-row__buy.add_to_cart_button.ajax_add_to_cart {
	background-color: var(--color-ink) !important; color: var(--color-bone) !important; border: none !important;
	min-height: unset !important; padding: 0 !important;
}
.programme-row__buy.add_to_cart_button.ajax_add_to_cart:hover { background-color: var(--color-red) !important; }
@media (min-width: 768px) {
	.programme-row__play, .programme-row__buy.add_to_cart_button.ajax_add_to_cart { width: auto; height: auto; padding: 0.65rem 1.25rem !important; }
	.programme-row__play-label { display: inline; }
}
.programme-section__footer { margin-top: 3rem; display: flex; justify-content: center; }

/* -------------------------------------------------------------------------
 * PRODUCT CARDS (shared partial — Section 31.13, 31.9)
 * ---------------------------------------------------------------------- */
.theme-product-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	align-items: stretch;
}
.theme-product-grid--fixed4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.theme-product-grid--archive { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
@media (max-width: 767px) { .theme-product-grid--fixed4 { grid-template-columns: 1fr; } }
@media (min-width: 640px) and (max-width: 1023px) { .theme-product-grid--fixed4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; position: relative; }
.theme-product-card {
	position: relative;
	display: flex; flex-direction: column; height: 100%;
	border-radius: 1rem; background: var(--color-card-dark); color: var(--color-bone);
	padding: 1rem; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
	transition: transform 0.5s ease;
}
.theme-product-card-wrap:hover .theme-product-card { transform: translateY(-4px); }
.theme-product-card > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; border-radius: 1rem; }
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card .add_to_cart_button,
.theme-product-card .theme-btn { position: relative; z-index: 3; pointer-events: auto; }

.theme-product-card__image-link {
	display: block;
	overflow: hidden;
	border-radius: 0.75rem;
}
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 0.75rem; background: #000; filter: grayscale(1); transition: filter 0.7s ease; }
.theme-product-card-wrap:hover .theme-product-card__image-wrapper { filter: grayscale(0); }
.theme-product-card-img { transition: transform 0.7s ease; }
.theme-product-card-wrap:hover .theme-product-card-img { transform: scale(1.05); }
.theme-product-card__info { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 0.5rem; }
.theme-product-card__format { font-family: var(--font-condensed); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.28em; color: color-mix(in srgb, var(--color-bone) 50%, transparent); }
.theme-product-card__title { margin-top: 0.75rem; font-family: var(--font-condensed); font-size: 1.25rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.theme-product-card__price { margin-top: 0.5rem; font-family: var(--font-condensed); font-size: 1.5rem; font-weight: 700; }
.theme-product-card__actions { margin-top: 1.5rem; display: flex; width: 100%; flex-direction: column; gap: 0.5rem; }
.theme-out-of-stock { font-family: var(--font-condensed); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: color-mix(in srgb, var(--color-bone) 60%, transparent); }

/* Curated "four ways to listen" cards reuse the same visual language but
   are not WooCommerce products, so no click-overlay / add-to-cart classes. */
.fourways-section__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.fourways-section__heading { margin-top: 0.75rem; font-size: 2.25rem; }
@media (min-width: 768px) { .fourways-section__heading { font-size: 3.75rem; } }
.fourways-section__grid { margin-top: 3rem; display: grid; gap: 1.5rem; grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .fourways-section__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fourways-section__grid { grid-template-columns: repeat(4, 1fr); } margin-top: 4rem; }
.theme-product-card__cta { margin-top: 1.5rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 999px; background: rgba(0,0,0,0.6); padding: 0.5rem 1.25rem; font-family: var(--font-condensed); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; transition: background-color 0.2s ease; }
.theme-product-card-wrap:hover .theme-product-card__cta { background: var(--color-red); }
.theme-product-card__cta-icon { width: 1rem; height: 1rem; filter: brightness(0) invert(1); }

/* -------------------------------------------------------------------------
 * SHOP SECTION (homepage)
 * ---------------------------------------------------------------------- */
.shop-section__head { text-align: center; }
.shop-section__heading { margin-top: 0.75rem; font-size: 2.25rem; }
@media (min-width: 768px) { .shop-section__heading { font-size: 3.75rem; } }
.shop-section__intro { margin: 1.5rem auto 0; max-width: 42rem; color: var(--color-muted-foreground); font-size: 1rem; }
@media (min-width: 768px) { .shop-section__intro { font-size: 1.125rem; } }
.shop-section__tabs { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.shop-tab {
	display: inline-flex; align-items: center; height: 2.75rem; padding: 0 1.25rem; border-radius: 999px;
	border: 1px solid var(--color-border); background: transparent; color: color-mix(in srgb, var(--color-ink) 70%, transparent);
	font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; font-size: 13px;
	transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.shop-tab:hover { border-color: var(--color-red); color: var(--color-red); }
.shop-tab.is-active { border-color: var(--color-red); background: var(--color-red); color: var(--color-bone); }
@media (min-width: 768px) { .shop-tab { padding: 0 1.5rem; } }

.shop-section__album { margin-top: 3rem; }
.theme-product-card--hero { display: grid; grid-template-columns: 1fr; gap: 1.5rem; padding: 1rem; }
@media (min-width: 768px) { .theme-product-card--hero { grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr); gap: 2.5rem; padding: 1.5rem; } }
.theme-product-card-wrap--hero .theme-product-card__image-wrapper { aspect-ratio: 1/1; }
.theme-product-card__hero-body { display: flex; flex-direction: column; justify-content: center; padding: 0.5rem 0; }
@media (min-width: 768px) { .theme-product-card__hero-body { padding: 1.5rem 0; } }
.theme-product-card__badge { display: inline-flex; width: fit-content; align-items: center; border-radius: 999px; background: var(--color-red); padding: 0.375rem 1rem; font-family: var(--font-condensed); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-bone); }
.theme-product-card__hero-title { margin-top: 1.25rem; font-family: var(--font-condensed); font-size: 1.875rem; font-weight: 600; text-transform: uppercase; line-height: 1.05; letter-spacing: 0.02em; }
@media (min-width: 768px) { .theme-product-card__hero-title { font-size: 3rem; } }
.theme-product-card__hero-desc { margin-top: 1rem; max-width: 36rem; font-size: 0.875rem; line-height: 1.6; color: color-mix(in srgb, var(--color-bone) 70%, transparent); }
@media (min-width: 768px) { .theme-product-card__hero-desc { font-size: 1rem; } }
.theme-product-card__hero-price-row { margin-top: 1.5rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.75rem; }
.theme-product-card__hero-price { font-family: var(--font-condensed); font-size: 2.25rem; font-weight: 700; }
.theme-product-card__hero-savings { font-size: 0.875rem; color: color-mix(in srgb, var(--color-bone) 60%, transparent); }
.theme-product-card__hero-actions { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .theme-product-card__hero-actions { flex-direction: row; } }

.shop-section__tracks { margin-top: 3.5rem; }
.shop-section__subhead { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.5rem; border-top: 1px solid var(--color-border); padding-top: 1.5rem; }
.shop-section__subhead h3 { font-family: var(--font-condensed); font-size: 1.5rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
@media (min-width: 768px) { .shop-section__subhead h3 { font-size: 1.875rem; } }
.shop-section__subhead p { font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--color-muted-foreground); }
.track-row-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.track-row {
	display: flex; align-items: center; gap: 0.75rem;
	border-radius: 1rem; background: var(--color-card-dark); color: var(--color-bone);
	padding: 0.75rem; transition: transform 0.5s ease;
}
.track-row:hover { transform: translateY(-2px); }
@media (min-width: 768px) { .track-row { gap: 1.25rem; padding: 1rem; } }
.track-row__num { width: 2rem; flex-shrink: 0; text-align: center; font-family: var(--font-condensed); font-size: 1.125rem; font-weight: 700; color: var(--color-red); }
@media (min-width: 768px) { .track-row__num { width: 2.5rem; font-size: 1.5rem; } }
.track-row__image-link { display: none; flex-shrink: 0; overflow: hidden; border-radius: 0.5rem; background: #000; filter: grayscale(1); transition: filter 0.7s ease; }
.track-row:hover .track-row__image-link { filter: grayscale(0); }
@media (min-width: 640px) { .track-row__image-link { display: block; } }
.track-row__image { width: 3.5rem; height: 3.5rem; object-fit: cover; position: static; }
@media (min-width: 768px) { .track-row__image { width: 4rem; height: 4rem; } }
.track-row__info { min-width: 0; flex: 1; }
.track-row__title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: var(--font-condensed); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; }
@media (min-width: 768px) { .track-row__title { font-size: 1.25rem; } }
.track-row__from { margin-top: 0.25rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 0.75rem; color: color-mix(in srgb, var(--color-bone) 55%, transparent); }
@media (min-width: 768px) { .track-row__from { font-size: 0.875rem; } }
.track-row__price { flex-shrink: 0; font-family: var(--font-condensed); font-size: 1rem; font-weight: 700; }
@media (min-width: 768px) { .track-row__price { font-size: 1.25rem; } }
.track-row__add.add_to_cart_button.ajax_add_to_cart {
	flex-shrink: 0; min-height: unset !important; padding: 0.65rem 1.25rem !important;
	border-radius: 999px !important; background-color: var(--color-bone) !important; color: var(--color-ink) !important;
	font-family: var(--font-condensed); text-transform: uppercase; font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
}
.track-row__add.add_to_cart_button.ajax_add_to_cart:hover { background-color: var(--color-red) !important; color: var(--color-bone) !important; }
.track-row__details { display: none; flex-shrink: 0; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-bone) 30%, transparent); padding: 0.65rem 1.25rem; font-family: var(--font-condensed); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: color-mix(in srgb, var(--color-bone) 85%, transparent); transition: border-color 0.2s ease, color 0.2s ease; }
.track-row__details:hover { border-color: var(--color-bone); color: var(--color-bone); }
@media (min-width: 1024px) { .track-row__details { display: inline-flex; } }

.shop-section__book { margin-top: 3.5rem; }

/* -------------------------------------------------------------------------
 * LISTEN / PLATFORMS
 * ---------------------------------------------------------------------- */
.listen-section__heading { margin-top: 0.75rem; font-size: 2.25rem; }
@media (min-width: 768px) { .listen-section__heading { font-size: 3.75rem; } }
.listen-section__intro { margin-top: 1.5rem; max-width: 42rem; color: var(--color-muted-foreground); font-size: 1rem; }
@media (min-width: 768px) { .listen-section__intro { font-size: 1.125rem; } }
.listen-section__grid { margin: 2.5rem auto 0; max-width: 1100px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; padding: 0 1.25rem; }
@media (min-width: 768px) { .listen-section__grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.5rem; padding: 0 2.5rem; } }
.listen-badge {
	height: 6rem; display: flex; align-items: center; justify-content: center;
	border-radius: 1.5rem; border: 1px solid var(--color-border); padding: 0 1.25rem;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.listen-badge:hover { transform: translateY(-4px); border-color: var(--color-red); box-shadow: 0 10px 25px -10px rgba(0,0,0,0.2); }
@media (min-width: 768px) { .listen-badge { height: 7rem; } }
.listen-badge img { max-height: 2rem; max-width: 70%; object-fit: contain; opacity: 0.8; filter: grayscale(1); transition: opacity 0.2s ease, filter 0.2s ease; }
.listen-badge:hover img { opacity: 1; filter: grayscale(0); }
@media (min-width: 768px) { .listen-badge img { max-height: 2.5rem; } }

/* -------------------------------------------------------------------------
 * ABOUT
 * ---------------------------------------------------------------------- */
.about-section { background: var(--color-ink); color: var(--color-bone); }
.about-section__grid { display: grid; align-items: stretch; gap: 3rem; }
@media (min-width: 768px) { .about-section__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-section__photo-wrap { position: relative; height: 60vh; min-height: 420px; }
@media (min-width: 768px) { .about-section__photo-wrap { height: auto; min-height: 100%; } }
.about-section__heading { margin-top: 0.75rem; font-size: 3rem; }
@media (min-width: 768px) { .about-section__heading { font-size: 4.5rem; } }
.about-section__role { margin-top: 1.5rem; font-family: var(--font-condensed); font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.04em; color: color-mix(in srgb, var(--color-bone) 70%, transparent); }
@media (min-width: 768px) { .about-section__role { font-size: 1.25rem; } }
.about-section__body { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 1rem; line-height: 1.6; color: color-mix(in srgb, var(--color-bone) 80%, transparent); }
@media (min-width: 768px) { .about-section__body { font-size: 1.125rem; } }
.about-section__quote { border-left: 2px solid var(--color-red); padding-left: 1.25rem; font-family: var(--font-condensed); font-size: 1.125rem; text-transform: uppercase; color: var(--color-bone); }
@media (min-width: 768px) { .about-section__quote { font-size: 1.25rem; } }
.about-section__stats { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-bone) 15%, transparent); padding-top: 2rem; font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; }
.about-section__stats dt { color: color-mix(in srgb, var(--color-bone) 60%, transparent); }
.about-section__stats dd { margin: 0.5rem 0 0; margin-inline-start: 0; color: var(--color-bone); }

/* -------------------------------------------------------------------------
 * BOOK
 * ---------------------------------------------------------------------- */
.book-section__grid { display: grid; align-items: center; gap: 3rem; }
@media (min-width: 768px) { .book-section__grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }
.book-section__cover-wrap { display: flex; align-items: center; justify-content: center; }
.book-section__cover { width: 100%; max-width: 420px; object-fit: contain; max-height: 82vh; position: static; }
@media (min-width: 768px) { .book-section__cover { max-width: 460px; } }
@media (min-width: 1024px) { .book-section__cover { max-width: 520px; } }
.book-section__heading { margin-top: 0.75rem; font-size: 3rem; }
@media (min-width: 768px) { .book-section__heading { font-size: 4.5rem; } }
.book-section__meta { margin-top: 1.5rem; font-family: var(--font-condensed); font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-muted-foreground); }
.book-section__body { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 1rem; line-height: 1.6; color: var(--color-muted-foreground); }
@media (min-width: 768px) { .book-section__body { font-size: 1.125rem; } }
.book-section__actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .book-section__actions { flex-direction: row; } }
.book-section__musical { margin-top: 3rem; border-top: 1px solid var(--color-border); padding-top: 2rem; }
.book-section__musical-heading { margin-top: 0.75rem; font-size: 1.875rem; }
@media (min-width: 768px) { .book-section__musical-heading { font-size: 2.25rem; } }
.book-section__musical-body { margin-top: 1rem; max-width: 28rem; color: var(--color-muted-foreground); }
.book-section__musical-link { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; font-size: 13px; color: var(--color-red); }
.book-section__musical-link:hover { opacity: 0.8; }

/* -------------------------------------------------------------------------
 * GIVE
 * ---------------------------------------------------------------------- */
.give-section { position: relative; isolation: isolate; overflow: hidden; background: var(--color-ink); }
.give-section__video { z-index: -2; filter: grayscale(1); }
.give-section__scrim { position: absolute; inset: 0; z-index: -1; background: color-mix(in srgb, var(--color-ink) 70%, transparent); }
.give-section__badge { display: inline-block; border-radius: 999px; background: #7DF9FF; padding: 0.5rem 1.25rem; font-size: 13px; font-weight: 600; color: var(--color-ink); }
.give-section__heading { margin-top: 2rem; font-family: var(--font-body); font-size: 40px; font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; color: var(--color-bone); }
@media (min-width: 768px) { .give-section__heading { font-size: 76px; } }
.give-section__body { margin: 2rem auto 0; max-width: 42rem; font-size: 1.125rem; line-height: 1.6; color: color-mix(in srgb, var(--color-bone) 80%, transparent); }
@media (min-width: 768px) { .give-section__body { font-size: 1.25rem; } }
.give-section__actions { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .give-section__actions { flex-direction: row; } }
.give-section__cta {
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 999px; padding: 1rem 2rem; font-size: 1rem; font-weight: 600;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.give-section__cta--primary { background: var(--color-bone); color: var(--color-ink); }
.give-section__cta--primary:hover { background: var(--color-red); color: var(--color-bone); }
.give-section__cta--secondary {
	border: 1px solid color-mix(in srgb, var(--color-bone) 40%, transparent);
	background: transparent; color: var(--color-bone);
}
.give-section__cta--secondary:hover { border-color: var(--color-bone); background: var(--color-bone); color: var(--color-ink); }

.mailing-signup { margin: 3.5rem auto 0; max-width: 36rem; border-top: 1px solid color-mix(in srgb, var(--color-bone) 20%, transparent); padding-top: 2.5rem; }
.mailing-signup .eyebrow { font-size: 11px; letter-spacing: 0.28em; }
.mailing-signup__heading { margin-top: 0.75rem; font-family: var(--font-condensed); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; color: var(--color-bone); }
@media (min-width: 768px) { .mailing-signup__heading { font-size: 1.875rem; } }
.mailing-signup__body { margin-top: 0.75rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-bone) 70%, transparent); }
@media (min-width: 768px) { .mailing-signup__body { font-size: 1rem; } }
.mailing-signup__form { margin-top: 1.5rem; display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .mailing-signup__form { grid-template-columns: 1fr 1.4fr auto; } }
.mailing-signup__form input {
	border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-bone) 30%, transparent); background: transparent;
	padding: 0.75rem 1.25rem; font-size: 0.875rem; color: var(--color-bone);
}
.mailing-signup__form input::placeholder { color: color-mix(in srgb, var(--color-bone) 50%, transparent); }
.mailing-signup__form input:focus { border-color: var(--color-bone); outline: none; }
.mailing-signup__form button {
	display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--color-bone);
	padding: 0.75rem 1.5rem; color: var(--color-ink); font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; font-size: 13px;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.mailing-signup__form button:hover { background: var(--color-red); color: var(--color-bone); }
.mailing-signup__success { margin-top: 1.5rem; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-bone) 30%, transparent); background: color-mix(in srgb, var(--color-bone) 10%, transparent); padding: 1rem 1.5rem; font-size: 0.875rem; color: var(--color-bone); }
.mailing-signup__embed { margin-top: 1.5rem; }
.mailing-signup__embed iframe { width: 100%; min-height: 120px; border: 0; }

/* -------------------------------------------------------------------------
 * FAQ ACCORDION
 * ---------------------------------------------------------------------- */
.faq-section__head { text-align: center; }
.faq-section__heading { margin-top: 1rem; font-family: var(--font-body); font-size: 2.25rem; font-weight: 700; letter-spacing: -0.02em; }
@media (min-width: 768px) { .faq-section__heading { font-size: 3.75rem; } }
.faq-section__intro { margin: 1.25rem auto 0; max-width: 36rem; color: var(--color-muted-foreground); }
.theme-accordion { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.theme-accordion__item { border-radius: 1.5rem; background: color-mix(in srgb, var(--color-muted) 40%, transparent); color: var(--color-ink); transition: background-color 0.3s ease; }
.theme-accordion__item:hover { background: color-mix(in srgb, var(--color-muted) 70%, transparent); }
.theme-accordion__item.is-open { background: var(--color-ink); color: var(--color-bone); }
.theme-accordion__item.is-open .theme-accordion__trigger { color: var(--color-bone); }
.theme-accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 1.5rem; text-align: left; }
@media (min-width: 768px) { .theme-accordion__trigger { padding: 1.5rem 2rem; } }
.theme-accordion__question { font-family: var(--font-body); font-size: 1rem; font-weight: 600; }
@media (min-width: 768px) { .theme-accordion__question { font-size: 1.125rem; } }
.theme-accordion__item.is-open .theme-accordion__question { color: inherit; }
.theme-accordion__icon { flex-shrink: 0; display: flex; width: 1.75rem; height: 1.75rem; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-ink) 40%, transparent); color: color-mix(in srgb, var(--color-ink) 70%, transparent); }
.theme-accordion__item.is-open .theme-accordion__icon { border-color: color-mix(in srgb, var(--color-bone) 60%, transparent); color: var(--color-bone); }
.theme-accordion__icon-vertical { display: block; }
.theme-accordion__item.is-open .theme-accordion__icon-vertical { display: none; }
.theme-accordion__panel { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 0.5s ease, opacity 0.5s ease; }
.theme-accordion__item.is-open .theme-accordion__panel { grid-template-rows: 1fr; opacity: 1; }
.theme-accordion__panel-inner { overflow: hidden; min-height: 0; padding: 0 1.5rem 1.5rem; font-size: 0.875rem; line-height: 1.6; color: color-mix(in srgb, var(--color-bone) 80%, transparent); }
@media (min-width: 768px) { .theme-accordion__panel-inner { padding: 0 2rem 1.75rem; font-size: 1rem; } }
.theme-accordion__panel-inner > div { padding: 0; font-size: inherit; line-height: inherit; color: inherit; }
.theme-accordion__panel-inner p { margin: 0; }
.theme-accordion__panel-inner a { color: var(--color-red); text-underline-offset: 4px; }
.theme-accordion__panel-inner a:hover { text-decoration: underline; }

/* -------------------------------------------------------------------------
 * MARQUEE
 * ---------------------------------------------------------------------- */
.marquee-section { border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); background: var(--color-ink); padding: 2.5rem 0; }
@media (min-width: 768px) { .marquee-section { padding: 3.5rem 0; } }
.marquee-section__mask { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 2.5rem; animation: sw-marquee 90s linear infinite; }
@media (min-width: 768px) { .marquee-track { gap: 4rem; } }
@keyframes sw-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-track__group { display: flex; align-items: center; gap: 2.5rem; }
@media (min-width: 768px) { .marquee-track__group { gap: 4rem; } }
.marquee-track__text { font-family: var(--font-condensed); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; white-space: nowrap; font-size: 2.25rem; color: var(--color-bone); }
@media (min-width: 768px) { .marquee-track__text { font-size: 3.75rem; } }
.marquee-track__text--dim { color: color-mix(in srgb, var(--color-bone) 40%, transparent); }
.marquee-track__dot { display: inline-block; width: 0.75rem; height: 0.75rem; border-radius: 999px; background: var(--color-red); }
body.is-customizer .marquee-track { animation-play-state: paused; }

/* -------------------------------------------------------------------------
 * CONTACT
 * ---------------------------------------------------------------------- */
.contact-section__inner { text-align: center; }
.contact-section__heading { margin-top: 0.75rem; font-size: 3rem; }
@media (min-width: 768px) { .contact-section__heading { font-size: 4.5rem; } }
.contact-section__intro { margin: 1.5rem auto 0; max-width: 28rem; color: var(--color-muted-foreground); }
.contact-section__grid { margin-top: 3rem; display: grid; gap: 2rem; border-top: 1px solid var(--color-border); padding-top: 2.5rem; text-align: center; }
@media (min-width: 768px) { .contact-section__grid { grid-template-columns: repeat(3, 1fr); } }
.contact-section__grid dt { font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; color: var(--color-red); }
.contact-section__grid dd { margin-top: 0.75rem; font-size: 1rem; }
.theme-link-mailto, .theme-link-tel { text-underline-offset: 4px; word-break: break-word; }
.theme-link-mailto:hover, .theme-link-tel:hover { color: var(--color-red); text-decoration: underline; }
.theme-address { color: var(--color-muted-foreground); white-space: pre-line; }
.contact-section__footer { margin-top: 3rem; display: flex; justify-content: center; }

/* -------------------------------------------------------------------------
 * FOOTER
 * ---------------------------------------------------------------------- */
.site-footer { background: var(--color-ink); color: var(--color-bone); }
.site-footer__inner { max-width: 1400px; margin: 0 auto; padding: 5rem 1.25rem 2.5rem; }
@media (min-width: 768px) { .site-footer__inner { padding: 6rem 2.5rem 2.5rem; } }
.site-footer__grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(12, 1fr); gap: 2.5rem; } }
.site-footer__brand { grid-column: span 5; }
.site-footer__logo-link { display: inline-flex; }
.site-logo-img--footer { height: 73px !important; }
.site-footer__tagline { margin-top: 1.5rem; max-width: 24rem; font-size: 0.875rem; line-height: 1.6; color: color-mix(in srgb, var(--color-bone) 70%, transparent); }
@media (min-width: 768px) { .site-footer__tagline { font-size: 1rem; } }
.site-footer__brand .theme-btn { margin-top: 2rem; }
.site-footer__nav { grid-column: span 3; }
.site-footer__label { font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; color: var(--color-red); margin: 0; }
.site-footer__nav-list { margin-top: 1.25rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 1.5rem; font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; font-size: 13px; }
@media (min-width: 768px) { .site-footer__nav-list { grid-template-columns: 1fr; } }
.site-footer__nav-list a { color: color-mix(in srgb, var(--color-bone) 80%, transparent); }
.site-footer__nav-list a:hover { color: var(--color-red); }
.site-footer__contact { grid-column: span 4; }
.site-footer__contact dl { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; }
@media (min-width: 768px) { .site-footer__contact dl { font-size: 1rem; } }
.site-footer__contact dt { font-family: var(--font-condensed); font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: color-mix(in srgb, var(--color-bone) 50%, transparent); }
.site-footer__contact dd { margin: 0.25rem 0 0; margin-inline-start: 0; }
.site-footer__contact a { color: var(--color-bone); }
.site-footer__contact a:hover { color: var(--color-red); text-decoration: underline; }
.site-footer__socials { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.site-footer__socials a { display: inline-flex; align-items: center; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-bone) 25%, transparent); padding: 0.5rem 1rem; font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; font-size: 13px; color: color-mix(in srgb, var(--color-bone) 80%, transparent); transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease; }
.site-footer__socials a:hover { border-color: var(--color-red); background: var(--color-red); color: var(--color-bone); }
.site-footer__bottom { margin-top: 4rem; display: flex; flex-direction: column; gap: 1rem; border-top: 1px solid color-mix(in srgb, var(--color-bone) 15%, transparent); padding-top: 1.5rem; font-family: var(--font-condensed); font-size: 11px; text-transform: uppercase; letter-spacing: 0.24em; }
@media (min-width: 768px) { .site-footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.site-footer__bottom p:first-child { color: color-mix(in srgb, var(--color-bone) 60%, transparent); margin: 0; }
.site-footer__bottom p:last-child { color: color-mix(in srgb, var(--color-bone) 40%, transparent); margin: 0; }

/* -------------------------------------------------------------------------
 * 404
 * ---------------------------------------------------------------------- */
.theme-404__inner { max-width: 900px; text-align: center; padding: 10rem 1.25rem 8rem; }
.theme-404__title { margin-top: 0.75rem; font-size: 2.25rem; }
@media (min-width: 768px) { .theme-404__title { font-size: 3.75rem; } }
.theme-404__body { margin-top: 1.25rem; color: var(--color-muted-foreground); }
.theme-404 .theme-btn { margin-top: 2rem; }

/* ==========================================================================
   WOOCOMMERCE
   ========================================================================== */

/* Add to cart 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-ink) !important;
	color: var(--color-bone) !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-condensed) !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, background-color 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	background-color: var(--color-red) !important;
	color: var(--color-bone) !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-ink) !important;
}

/* Card-compact button variants override the global rules — placed after */
.theme-product-card .add_to_cart_button.ajax_add_to_cart,
.track-row .add_to_cart_button.ajax_add_to_cart,
.programme-row .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
}
.theme-product-card .theme-btn--bone.add_to_cart_button,
.theme-product-card .add_to_cart_button.theme-btn--bone {
	background-color: var(--color-bone) !important;
	color: var(--color-ink) !important;
}
.theme-product-card .theme-btn--bone.add_to_cart_button:hover,
.theme-product-card .add_to_cart_button.theme-btn--bone:hover {
	background-color: var(--color-red) !important;
	color: var(--color-bone) !important;
}
.theme-product-card .theme-btn--outline-bone {
	background: transparent !important;
	border: 1px solid color-mix(in srgb, var(--color-bone) 30%, transparent) !important;
	color: color-mix(in srgb, var(--color-bone) 85%, transparent) !important;
}
.theme-product-card .theme-btn--outline-bone:hover {
	border-color: var(--color-bone) !important;
	color: var(--color-bone) !important;
	background: transparent !important;
}
.shop-section .theme-btn--bone.add_to_cart_button,
.shop-section .add_to_cart_button.theme-btn--bone {
	background-color: var(--color-bone) !important;
	color: var(--color-ink) !important;
}
.shop-section .theme-btn--bone.add_to_cart_button:hover,
.shop-section .add_to_cart_button.theme-btn--bone:hover {
	background-color: var(--color-red) !important;
	color: var(--color-bone) !important;
}
.shop-section .theme-btn--outline-bone {
	background: transparent !important;
	border: 1px solid color-mix(in srgb, var(--color-bone) 30%, transparent) !important;
	color: color-mix(in srgb, var(--color-bone) 85%, transparent) !important;
}
.shop-section .theme-btn--outline-bone:hover {
	border-color: var(--color-bone) !important;
	color: var(--color-bone) !important;
	background: transparent !important;
}

.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Hide "View cart" injected 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; }

/* Notices (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-radius: 0.75rem; border: 1px solid var(--color-border); padding: 1rem 1.5rem;
	font-family: var(--font-body); font-size: 0.9375rem; list-style: none; margin: 0 0 1.5rem;
}
.woocommerce-error { border-color: var(--color-red); color: var(--color-red); }

/* -------------------------------------------------------------------------
 * SINGLE PRODUCT LAYOUT (Section 11.13)
 * ---------------------------------------------------------------------- */
.single-product-page .theme-container { padding-top: 8rem; padding-bottom: 6rem; }
.back-to-shop-link { display: inline-block; margin-bottom: 2rem; font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--color-muted-foreground); transition: color 0.2s ease; }
.back-to-shop-link:hover { color: var(--color-red); }

.theme-product-layout { display: grid; gap: 2.5rem; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-main-image { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 1rem; background: var(--color-card-dark); }
.theme-product-main-image .cover-img,
.theme-product-main-image img {
	height: 100% !important;
	width: 100%;
	object-fit: cover;
}
.theme-product-thumbnails { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.75rem; max-width: 100%; }
.theme-product-thumb { width: 4.5rem; height: 4.5rem; border-radius: 0.5rem; overflow: hidden; border: 2px solid transparent; opacity: 0.7; transition: opacity 0.2s ease, border-color 0.2s ease; }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; position: static; }
.theme-product-thumb.is-active, .theme-product-thumb:hover { opacity: 1; border-color: var(--color-red); }

.theme-product-title { margin-top: 0.75rem; font-family: var(--font-condensed); text-transform: uppercase; }
.theme-product-price { margin-top: 2rem; font-family: var(--font-condensed); font-size: 2.25rem; font-weight: 700; }
.theme-product-price .amount { font-family: var(--font-condensed); }
.theme-product-format { margin-top: 0.5rem; font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--color-muted-foreground); }
.theme-product-description,
.woocommerce-product-details__short-description,
.woocommerce-variation-description,
.posted_in { overflow-wrap: break-word; word-break: break-word; }
.theme-product-description { margin-top: 2rem; max-width: 36rem; font-size: 1rem; line-height: 1.6; color: color-mix(in srgb, var(--color-ink) 85%, transparent); }
.theme-product-description p { margin: 0 0 1rem; }

.theme-add-to-cart-area {
	display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem;
}
.theme-quantity-wrapper { display: inline-flex; align-items: center; border-radius: 999px; border: 1px solid var(--color-border); }
.theme-qty-minus, .theme-qty-plus { padding: 0.75rem 1rem; color: color-mix(in srgb, var(--color-ink) 70%, transparent); transition: color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--color-red); }
.theme-qty-input { width: 2.5rem; border: none; background: transparent; text-align: center; font-size: 0.875rem; }
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

.theme-product-details { margin-top: 2.5rem; border-top: 1px solid var(--color-border); padding-top: 2rem; }
.theme-product-details__label { font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; color: var(--color-red); }
.theme-product-details__body { margin-top: 1.25rem; font-size: 0.9375rem; color: color-mix(in srgb, var(--color-ink) 80%, transparent); }
.theme-product-details__body p { margin: 0 0 0.75rem; }

.related-products-section { margin-top: 5rem; }
@media (min-width: 768px) { .related-products-section { margin-top: 7rem; } }
.related-products-section__heading { font-size: 1.875rem; }
@media (min-width: 768px) { .related-products-section__heading { font-size: 3rem; } }
.related-products-section .theme-product-grid { margin-top: 2.5rem; }

/* -------------------------------------------------------------------------
 * SHOP ARCHIVE
 * ---------------------------------------------------------------------- */
.shop-archive .theme-container { padding-top: 8rem; padding-bottom: 6rem; }
.shop-heading { font-family: var(--font-condensed); font-weight: 800; text-transform: uppercase; font-size: 2.25rem; margin-bottom: 2.5rem; }
.shop-empty { color: var(--color-muted-foreground); }

/* -------------------------------------------------------------------------
 * SIDE CART
 * ---------------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; z-index: 69; background: color-mix(in srgb, var(--color-ink) 70%, transparent); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
body.cart-open { overflow: hidden; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }

#theme-cart-drawer {
	position: fixed; top: 0; bottom: 0; right: 0; z-index: 70;
	display: flex; flex-direction: column; width: 100%; max-width: 28rem;
	background: var(--color-bone); box-shadow: -20px 0 60px -20px rgba(0,0,0,0.4);
	transform: translateX(100%); transition: transform 0.35s var(--ease-out-expo);
}
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; border-bottom: 1px solid var(--color-border); padding: 1.25rem 1.5rem; }
.theme-cart-drawer__title { font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; color: var(--color-red); margin: 0; }
.theme-cart-drawer__close { display: flex; width: 2.25rem; height: 2.25rem; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid var(--color-border); transition: border-color 0.2s ease, color 0.2s ease; }
.theme-cart-drawer__close:hover { border-color: var(--color-red); color: var(--color-red); }

.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; padding: 0 1.5rem; text-align: center; }
.theme-cart-drawer__empty p { color: var(--color-muted-foreground); margin: 0; }

.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; margin: 0; }
.theme-cart-drawer__item { display: flex; gap: 1rem; }
.theme-cart-drawer__item-image-wrap { position: relative; width: 5rem; height: 5rem; flex-shrink: 0; overflow: hidden; border-radius: 0.75rem; border: 1px solid var(--color-border); background: var(--color-black); }
.theme-cart-drawer__item-image-wrap .cover-img { width: 100%; height: 100%; }
.theme-cart-drawer__item-info { min-width: 0; flex: 1; }
.theme-cart-drawer__item-title { font-family: var(--font-condensed); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; margin: 0; }
.theme-cart-drawer__item-price { margin-top: 0.25rem; font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__item-variation { display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__item-controls { margin-top: 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
.theme-cart-drawer__item-digital { font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-muted-foreground); }
.theme-qty-pill { display: inline-flex; align-items: center; border-radius: 999px; border: 1px solid var(--color-border); }
.theme-qty-pill button { padding: 0.375rem 0.75rem; color: color-mix(in srgb, var(--color-ink) 70%, transparent); }
.theme-qty-pill button:hover { color: var(--color-red); }
.theme-qty-pill span { min-width: 1.5rem; text-align: center; font-size: 0.875rem; }
.theme-cart-drawer__remove { font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-muted-foreground); }
.theme-cart-drawer__remove:hover { color: var(--color-red); }
.theme-cart-drawer__item-total { font-size: 0.875rem; }

.theme-cart-drawer__footer { border-top: 1px solid var(--color-border); padding: 1.5rem; }
.theme-cart-drawer__subtotal { display: flex; align-items: center; justify-content: space-between; font-size: 1rem; }
.theme-cart-drawer__subtotal span:first-child { font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout { margin-top: 1.25rem; width: 100%; }
.theme-cart-drawer__continue { margin-top: 0.75rem; display: block; text-align: center; font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-muted-foreground); }
.theme-cart-drawer__continue:hover { color: var(--color-red); }

/* -------------------------------------------------------------------------
 * CHECKOUT BLOCK
 * ---------------------------------------------------------------------- */
body.woocommerce-checkout .site-main { padding-top: 5.5rem; padding-bottom: 4rem; }
@media (min-width: 768px) { body.woocommerce-checkout .site-main { padding-top: 8rem; } }
body.woocommerce-checkout .theme-container--page { max-width: 1100px; }
body.woocommerce-checkout .back-to-shop-link { display: inline-block; margin-bottom: 1.5rem; }
body.woocommerce-checkout .page-title {
	font-family: var(--font-condensed); font-weight: 800; text-transform: uppercase;
	font-size: 2.25rem; margin-top: 1.5rem; margin-bottom: 2rem;
	line-height: 0.88; letter-spacing: -0.01em;
}
@media (min-width: 768px) { body.woocommerce-checkout .page-title { font-size: 3.75rem; } }

body.woocommerce-checkout .wc-block-checkout { display: block; }
@media (min-width: 1024px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid !important;
		grid-template-columns: 1fr 1fr !important;
		gap: 2.5rem;
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar { min-width: 0; width: 100%; max-width: none; }
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-combobox input {
	width: 100% !important;
	max-width: none !important;
	border-radius: 0.75rem !important;
	border: 1px solid var(--color-border) !important;
	background: var(--color-bone) !important;
	font-family: var(--font-body) !important;
	font-size: 0.875rem !important;
	outline: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-combobox input:focus {
	border-color: var(--color-red) !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-ink) !important; border-radius: 999px !important; font-family: var(--font-condensed);
	text-transform: uppercase; letter-spacing: 0.14em;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { background-color: var(--color-red) !important; }
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background: var(--color-bone); border: 1px solid var(--color-border); border-radius: 1.5rem; padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: 0.75rem; grid-column: 1 / -1; }

/* -------------------------------------------------------------------------
 * CART / ACCOUNT PAGES (Section 13.7)
 * ---------------------------------------------------------------------- */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: var(--header-height, 88px); padding-bottom: 4rem; }
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content,
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title { max-width: 1400px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { body.woocommerce-cart .entry-content, body.woocommerce-account .entry-content, body.woocommerce-cart .page-title, body.woocommerce-account .page-title { padding: 0 2.5rem; } }

/* -------------------------------------------------------------------------
 * THANK YOU PAGE (Section 22.8)
 * ---------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: 7rem; padding-bottom: 4rem; }
@media (min-width: 768px) { body.theme-thankyou-page .site-main { padding-top: 8rem; } }
body.theme-thankyou-page .theme-container--page { max-width: 1100px; }
body.theme-thankyou-page .woocommerce-order-overview { list-style: none; display: flex; flex-wrap: wrap; gap: 1.5rem; padding: 0; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; padding: 0 0 1rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; }

/* -------------------------------------------------------------------------
 * FRONTEND PARITY OVERRIDES (source design audit)
 * ---------------------------------------------------------------------- */
#music, #press, #listen, #about, #book, #give, #faq, #contact, #shop {
	scroll-margin-top: 5rem;
}
@media (min-width: 768px) {
	#music, #press, #listen, #about, #book, #give, #faq, #contact, #shop {
		scroll-margin-top: 6rem;
	}
}

.programme-section.scroll-reveal-section { padding-top: 0; padding-bottom: 6rem; }
@media (min-width: 768px) { .programme-section.scroll-reveal-section { padding-bottom: 8rem; } }

.spotify-section.scroll-reveal-section { padding-top: 1rem; padding-bottom: 4rem; }
@media (min-width: 768px) { .spotify-section.scroll-reveal-section { padding-top: 2rem; padding-bottom: 6rem; } }

.give-section.scroll-reveal-section { padding: 7rem 0; }
@media (min-width: 768px) { .give-section.scroll-reveal-section { padding: 10rem 0; } }

.programme-row__title { letter-spacing: 0.02em; }
.programme-row__buy-icons { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.programme-row__buy-plus { position: absolute; top: -0.375rem; right: -0.375rem; }
.programme-row__buy-label { display: none; }
@media (min-width: 768px) {
	.programme-row__buy-icons { display: none; }
	.programme-row__buy-label { display: inline; }
}

.track-row__add { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.track-row__add-icons { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.track-row__add-plus { position: absolute; top: -0.375rem; right: -0.375rem; }
.track-row__add-label { display: none; }
@media (min-width: 768px) {
	.track-row__add-icons { display: none; }
	.track-row__add-label { display: inline; }
}
@media (max-width: 767px) {
	.track-row__add.add_to_cart_button.ajax_add_to_cart,
	.track-row__add.track-row__add--select {
		width: 2.75rem !important;
		height: 2.75rem !important;
		padding: 0 !important;
		font-size: 0 !important;
	}
}
.programme-row__buy--select,
.track-row__add--select { text-decoration: none; color: inherit; }

.faq-section__head .eyebrow {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.025em;
	text-transform: none;
}
.faq-section__heading { text-transform: none; }

.about-section__quote { letter-spacing: 0.02em; }

.give-section__badge { letter-spacing: -0.025em; background: var(--color-badge-cyan); }

.listen-badge img[alt*="Amazon"] { max-height: 2.6rem; }
@media (min-width: 768px) { .listen-badge img[alt*="Amazon"] { max-height: 3.25rem; } }

.whatson-card__image-wrap { background: var(--color-black); }
.whatson-card__cta { background: var(--color-overlay-60); }
.whatson-card { box-shadow: 0 20px 40px -20px var(--color-shadow-card); }
.press-section__logo-wrap { background: var(--color-white); }
.theme-product-card__image-wrapper { background: var(--color-black); }
.theme-product-card__cta { background: var(--color-overlay-60); }
.track-row__image-link { background: var(--color-black); }

.theme-product-gallery-frame {
	background: var(--color-card-dark);
	border-radius: 1rem;
	padding: 1rem;
}
.theme-product-gallery-frame .theme-product-main-image { border-radius: 0.75rem; }

.theme-product-subtitle {
	margin-top: 1rem;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-muted-foreground);
}
@media (min-width: 768px) { .theme-product-subtitle { font-size: 1.125rem; } }

.theme-product-title {
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 0.88;
	font-size: 2.25rem;
}
@media (min-width: 768px) { .theme-product-title { font-size: 3.75rem; } }

.theme-variation-group { margin-top: 2rem; }
.theme-variation-label {
	margin: 0 0 0.75rem;
	font-family: var(--font-condensed);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.24em;
	color: var(--color-red);
}
.theme-variation-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-variation-pill {
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 999px; border: 1px solid var(--color-border);
	padding: 0.65rem 1.25rem; font-family: var(--font-condensed);
	font-size: 13px; font-weight: 600; text-transform: uppercase;
	letter-spacing: 0.14em; color: var(--color-ink); background: transparent;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.theme-variation-pill:hover { border-color: var(--color-red); color: var(--color-red); }
.theme-variation-pill.is-selected,
.theme-variation-pill[aria-pressed="true"] { border-color: var(--color-ink); background: var(--color-ink); color: var(--color-bone); }
.theme-variation-pill.is-selected:hover,
.theme-variation-pill[aria-pressed="true"]:hover { border-color: var(--color-red); background: var(--color-red); color: var(--color-bone); }
.theme-product-price--range { display: none; }
.variations_form .single_variation_wrap { margin-top: 1.5rem; }
.variations_form .woocommerce-variation-price { margin-bottom: 0.5rem; font-family: var(--font-condensed); font-size: 2.25rem; font-weight: 700; }
.variations_form .single_add_to_cart_button.disabled,
.variations_form .single_add_to_cart_button:disabled { opacity: 0.5; cursor: not-allowed; }

.theme-product-details__list {
	margin: 1.25rem 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.theme-product-details__list li {
	display: flex;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: color-mix(in srgb, var(--color-ink) 80%, transparent);
}
.theme-product-details__list li::before {
	content: "•";
	color: var(--color-red);
}

.theme-product-tracklist { margin-top: 5rem; }
@media (min-width: 768px) { .theme-product-tracklist { margin-top: 7rem; } }
.theme-product-tracklist__heading { font-size: 1.875rem; }
@media (min-width: 768px) { .theme-product-tracklist__heading { font-size: 3rem; } }
.theme-product-tracklist__list { margin-top: 2rem; border-top: 1px solid var(--color-border); }
.theme-product-tracklist__row {
	display: flex;
	align-items: center;
	gap: 1rem;
	border-bottom: 1px solid var(--color-border);
	padding: 1rem 0;
}
@media (min-width: 768px) { .theme-product-tracklist__row { gap: 1.5rem; padding: 1.25rem 0; } }
.theme-product-tracklist__num { flex-shrink: 0; font-family: var(--font-condensed); font-size: 1.125rem; font-weight: 700; color: var(--color-red); }
@media (min-width: 768px) { .theme-product-tracklist__num { font-size: 1.5rem; } }
.theme-product-tracklist__info { min-width: 0; flex: 1; }
.theme-product-tracklist__title { font-family: var(--font-condensed); font-size: 1.125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.025em; transition: color 0.2s ease; }
@media (min-width: 768px) { .theme-product-tracklist__title { font-size: 1.5rem; } }
.theme-product-tracklist__title:hover { color: var(--color-red); }
.theme-product-tracklist__meta { margin-top: 0.25rem; font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-product-tracklist__price { flex-shrink: 0; font-family: var(--font-condensed); font-weight: 700; }
.theme-product-tracklist__buy { flex-shrink: 0; min-height: unset !important; padding: 0.65rem 1.25rem !important; }

.theme-product-grid--related { grid-template-columns: 1fr; }
@media (min-width: 640px) { .theme-product-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid--related { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.single-product-page .theme-container { padding-top: 7rem; }
@media (min-width: 768px) { .single-product-page .theme-container { padding-top: 8rem; } }

.theme-add-to-cart-area .theme-btn--outline {
	border: 1px solid var(--color-ink);
	color: var(--color-ink);
	background: transparent;
}
.theme-add-to-cart-area .theme-btn--outline:hover {
	border-color: var(--color-red);
	background: var(--color-red);
	color: var(--color-bone);
}

body.theme-thankyou-page .theme-thankyou {
	max-width: 32rem;
	margin: 0 auto;
	padding: 2rem;
	border: 1px solid var(--color-border);
	border-radius: 1.5rem;
	background: var(--color-bone);
	text-align: center;
}
@media (min-width: 768px) { body.theme-thankyou-page .theme-thankyou { padding: 2.5rem; } }
body.theme-thankyou-page .theme-thankyou .display-xl { font-size: 1.875rem; margin-top: 0.75rem; }
@media (min-width: 768px) { body.theme-thankyou-page .theme-thankyou .display-xl { font-size: 3rem; } }
.theme-thankyou__body { margin-top: 1.25rem; line-height: 1.6; color: var(--color-muted-foreground); }
.theme-thankyou__email { color: var(--color-ink); }
.theme-thankyou__home { margin-top: 2rem; }
.theme-thankyou__details { margin-top: 2rem; text-align: left; }

#theme-cart-drawer { transition: none; }
body.cart-open #theme-cart-drawer { transform: translateX(0); }

@media (max-width: 767px) {
	.theme-cart-drawer__header,
	.theme-cart-drawer__items { padding-left: 1.25rem; padding-right: 1.25rem; }
}
