/*
 * Sir C.W. Colt — theme stylesheet.
 * Colors are emitted as CSS custom properties from the Customizer
 * (see functions.php wp_add_inline_style) — never hardcode a hex value
 * here for a color that has a Customizer control (Section 6.1).
 */

/* ------------------------------------------------------------------
   Reset & base
   ------------------------------------------------------------------ */
:root {
	--font-display: 'Bitter', 'Playfair Display', Georgia, serif;
	--font-body: 'Inter', system-ui, sans-serif;
	--shadow-soft: 0 4px 18px rgba(14, 42, 59, 0.10), 0 1px 3px rgba(14, 42, 59, 0.06);
	--shadow-elevated: 0 24px 48px rgba(14, 42, 59, 0.18);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

	--btn-radius: 9999px;
	--btn-height: 48px;
	--btn-padding: 0 2rem;
	--btn-font-size: 14px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.22em;
	--btn-text-transform: uppercase;
}

* { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: clip; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background-color: var(--color-ivory);
	color: var(--color-navy);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
img.theme-cover-img,
.theme-hero-video,
.theme-hero-bg img,
.theme-about-image,
.theme-belove-image,
.theme-giving-image,
.theme-session-image,
.theme-story-image,
.theme-gallery-item img,
.theme-contact-bg img,
.theme-product-card__image,
.theme-product-main-image,
.theme-product-thumb img {
	max-width: none;
	height: 100%;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.005em;
	color: var(--color-navy);
	margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button, [type="button"], [type="submit"], [type="reset"],
summary, [role="button"], label[for],
select, .theme-product-card, .theme-inquiry-card,
.theme-gallery-item, .theme-session-card, .theme-story-card,
.theme-contact-info-item, .theme-accordion-item button,
.theme-cart-qty-btn, .theme-qty-minus, .theme-qty-plus,
.theme-details-toggle, .theme-cart-toggle, .theme-mobile-toggle {
	cursor: pointer;
}
button { font-family: inherit; background: none; border: none; padding: 0; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font-family: inherit; font-size: 16px; }

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 1024px) {
	.container-wide { padding: 0 2rem; }
}

.cs-label {
	font-family: var(--font-body);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.24em;
	font-size: 14px;
	line-height: 1.2;
}
.cs-flourish-line { display: inline-flex; align-items: center; gap: 12px; }
.cs-flourish-line::before {
	content: '';
	width: 28px;
	height: 1px;
	background-color: currentColor;
	opacity: 0.7;
}

.theme-eyebrow { display: inline-flex; }
.theme-eyebrow--gold { color: var(--color-rust); }
.theme-eyebrow--sand { color: var(--color-header-sand); }

/* ------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------ */
.theme-btn-primary,
.theme-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--btn-radius);
	height: var(--btn-height);
	padding: var(--btn-padding);
	font-family: var(--font-body);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	transition: background-color .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
	border: 1px solid transparent;
	white-space: nowrap;
}
.theme-btn-gold { background-color: var(--color-gold); color: var(--color-navy); border-color: var(--color-gold); }
.theme-btn-gold:hover { background-color: var(--color-header-sand); color: var(--color-navy); }
.theme-btn-navy { background-color: var(--color-navy); color: var(--color-ivory); border-color: var(--color-navy); }
.theme-btn-navy:hover { background-color: var(--color-gold); color: var(--color-navy); }
.theme-btn-rust { background-color: var(--color-rust); color: var(--color-ivory); border-color: var(--color-rust); }
.theme-btn-rust:hover { background-color: var(--color-burnt-orange); color: var(--color-ivory); }
.theme-btn-dark { background-color: var(--color-navy); color: var(--color-header-sand); border-color: var(--color-navy); }
.theme-btn-dark:hover { background-color: var(--color-rust); color: var(--color-ivory); }

.theme-btn-outline { background: transparent; }
.theme-btn-outline-gold { border-color: color-mix(in srgb, var(--color-header-sand) 70%, transparent); color: var(--color-header-sand); }
.theme-btn-outline-gold:hover { background-color: var(--color-header-sand); color: var(--color-navy); }
.theme-btn-outline-navy { border-color: var(--color-navy); color: var(--color-navy); }
.theme-btn-outline-navy:hover { background-color: var(--color-navy); color: var(--color-header-sand); }

.theme-btn-primary:disabled,
.theme-btn-primary.disabled {
	cursor: not-allowed;
	opacity: 0.4;
	pointer-events: none;
}

.btn-shimmer { position: relative; overflow: hidden; isolation: isolate; }
.btn-shimmer::before {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
	transform: translateX(-120%);
	transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none; z-index: 1;
}
.btn-shimmer:hover::before { transform: translateX(120%); }
.btn-shimmer > * { position: relative; z-index: 2; }

/* ------------------------------------------------------------------
   Animations
   ------------------------------------------------------------------ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fadeIn 0.6s var(--transition-smooth) forwards; }
.animate-slide-up { animation: slideUp 0.6s var(--transition-smooth) forwards; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.animate-marquee { animation: marquee 40s linear infinite; }
.marquee-pausable:hover .animate-marquee { animation-play-state: paused; }

[data-cs-fade] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--cs-fade-delay, 0ms);
}
[data-cs-fade].is-visible { opacity: 1; transform: translateY(0); }

.reveal-blur { filter: blur(10px); opacity: 0; transition: filter 1000ms cubic-bezier(0.22, 1, 0.36, 1), opacity 1000ms cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-blur.is-visible { filter: blur(0); opacity: 1; }

.reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--cs-fade-delay, 0ms);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

/* Section 2.1 mandatory Customizer preview fallback. */
body.is-customizer [data-cs-fade],
body.is-customizer .reveal-blur,
body.is-customizer .reveal-item {
	opacity: 1 !important;
	transform: none !important;
	filter: none !important;
}

.theme-capacity-slot.is-empty {
	display: none !important;
}

@media (prefers-reduced-motion: reduce) {
	[data-cs-fade], .reveal-blur, .reveal-item {
		opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important;
	}
	.btn-shimmer::before, .animate-marquee { animation: none !important; }
}

/* ------------------------------------------------------------------
   Announcement bar
   ------------------------------------------------------------------ */
.theme-announcement-bar {
	position: relative;
	overflow: hidden;
	background-color: var(--color-navy);
	border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 25%, transparent);
}
.theme-announcement-track { display: flex; white-space: nowrap; padding: 0.625rem 0; will-change: transform; width: max-content; }
.theme-announcement-phrase { color: color-mix(in srgb, var(--color-header-sand) 90%, var(--color-ivory)); padding: 0 1.5rem; display: inline-flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.theme-announcement-dot { color: var(--color-gold); }

/* ------------------------------------------------------------------
   Header
   ------------------------------------------------------------------ */
.site-header {
	position: sticky; top: 0; left: 0; right: 0; z-index: 50;
	width: 100%;
	background-color: var(--color-header-sand);
	border-bottom: 1px solid color-mix(in srgb, var(--color-navy) 10%, transparent);
	transition: box-shadow .3s ease;
}
body.admin-bar .site-header,
html.admin-bar .site-header {
	top: var(--wp-admin--admin-bar--height, 32px);
}
.site-header.is-scrolled,
.site-header.is-solid {
	box-shadow: 0 8px 24px rgba(14,42,59,0.15);
}
.site-nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	height: 5rem;
	transition: height .3s ease;
}
@media (min-width: 768px) { .site-nav { height: 6rem; } }
.site-header.is-scrolled .site-nav { height: 4rem; }
@media (min-width: 768px) { .site-header.is-scrolled .site-nav { height: 5rem; } }

.site-branding { display: flex; align-items: center; flex-shrink: 0; padding: 0.5rem 0; }
.site-logo-slot { display: flex; align-items: center; justify-content: center; height: 4rem; width: 13rem; transition: all .3s ease; }
@media (min-width: 768px) { .site-logo-slot { height: 5rem; width: 16rem; } }
.site-header.is-scrolled .site-logo-slot { height: 3rem; width: 10rem; }
@media (min-width: 768px) { .site-header.is-scrolled .site-logo-slot { height: 3.5rem; width: 12rem; } }
.site-logo-img { max-height: 100%; max-width: 100%; object-fit: contain; height: var(--logo-height, 60px) !important; width: auto !important; }
.theme-footer-logo .site-logo-img { height: 100% !important; width: auto !important; max-height: 100%; max-width: 100%; }
.site-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--color-navy); line-height: var(--logo-height, 60px); }

.site-nav-links { display: none; align-items: center; gap: 1.5rem; margin-left: auto; }
@media (min-width: 1024px) { .site-nav-links { display: flex; } }
.theme-nav-list { display: flex; align-items: center; gap: 1.5rem; }
.theme-nav-list a {
	font-size: 14px; color: var(--color-navy); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500;
	transition: color .2s ease;
}
.theme-nav-list a:hover { color: var(--color-rust); }

.site-nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.theme-cart-toggle {
	position: relative;
	display: inline-flex; align-items: center; justify-content: center;
	width: 2.5rem; height: 2.5rem; border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--color-navy) 40%, transparent);
	color: var(--color-navy);
	transition: background-color .2s ease, color .2s ease;
}
.theme-cart-toggle:hover { background-color: var(--color-navy); color: var(--color-header-sand); }
.theme-cart-count {
	position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px;
	border-radius: 50%; background-color: var(--color-rust); color: var(--color-ivory);
	font-size: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.theme-cart-count:empty { display: none; }

.theme-mobile-toggle { display: inline-flex; padding: 0.5rem; color: var(--color-navy); }
@media (min-width: 1024px) { .theme-mobile-toggle { display: none; } }
.theme-mobile-toggle.is-open .icon-menu { display: none; }
.theme-mobile-toggle.is-open .icon-close { display: inline-block !important; }

.site-mobile-menu {
	border-top: 1px solid color-mix(in srgb, var(--color-navy) 15%, transparent);
	padding: 1rem 0;
}
.site-mobile-menu[hidden] { display: none; }
@media (min-width: 1024px) { .site-mobile-menu { display: none !important; } }
.theme-nav-list--mobile { display: flex; flex-direction: column; gap: 0.25rem; }
.theme-nav-list--mobile a {
	display: block; text-align: left; padding: 0.75rem 0.5rem; border-radius: 6px;
	font-size: 15px; text-transform: uppercase; letter-spacing: 0.04em;
}
.theme-nav-list--mobile a:hover { background-color: color-mix(in srgb, var(--color-navy) 10%, transparent); color: var(--color-rust); }

/* ------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------ */
.theme-hero {
	position: relative;
	min-height: 100vh;
	display: flex; align-items: center; justify-content: center;
	overflow: hidden;
	background-color: var(--color-navy);
}
body.theme-no-hero .theme-hero { display: none; }
.theme-hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; background-color: var(--color-navy); }
.theme-hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.theme-hero-gradient-1 { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(180deg, rgba(14,42,59,0.7) 0%, rgba(14,42,59,0.55) 40%, rgba(14,42,59,0.92) 100%); }
.theme-hero-gradient-2 { position: absolute; inset: 0; z-index: 3; pointer-events: none; mix-blend-mode: overlay; background: radial-gradient(ellipse 75% 60% at 50% 45%, rgba(184,138,61,0.35) 0%, rgba(196,91,40,0.15) 40%, rgba(0,0,0,0) 75%); }
.theme-hero-gradient-3 { position: absolute; inset: 0; z-index: 4; pointer-events: none; background: radial-gradient(ellipse 90% 80% at 50% 55%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45) 82%, rgba(0,0,0,0.7) 100%); }
.theme-hero-inner { position: relative; z-index: 10; padding-top: 5rem; padding-bottom: 5rem; text-align: center; width: 100%; }
@media (min-width: 1024px) { .theme-hero-inner { padding-top: 7rem; padding-bottom: 7rem; } }
.theme-hero-content { max-width: 56rem; margin: 0 auto; }
.theme-hero-kicker { color: var(--color-header-sand); }
.theme-hero-kicker::before, .theme-hero-kicker::after { background-color: color-mix(in srgb, var(--color-header-sand) 70%, transparent); width: 2rem; height: 1px; }

.theme-hero-title {
	font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em;
	color: var(--color-ivory);
	font-size: 3rem; line-height: 1.02; margin-top: 1.5rem;
}
@media (min-width: 640px) { .theme-hero-title { font-size: 3.75rem; } }
@media (min-width: 768px) { .theme-hero-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .theme-hero-title { font-size: 6rem; } }

.theme-hero-subtitle { font-family: var(--font-display); font-style: italic; color: var(--color-header-sand); font-size: 1.25rem; margin-top: 1rem; }
@media (min-width: 768px) { .theme-hero-subtitle { font-size: 1.5rem; } }

.theme-hero-description {
	color: color-mix(in srgb, var(--color-ivory) 85%, transparent);
	font-size: 1rem; margin-top: 1.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; line-height: 1.7;
}
@media (min-width: 640px) { .theme-hero-description { font-size: 1.125rem; } }
@media (min-width: 768px) { .theme-hero-description { font-size: 1.25rem; } }

.theme-hero-ctas {
	display: flex; flex-direction: column; flex-wrap: wrap; gap: 0.75rem;
	justify-content: center; align-items: stretch;
	margin-top: 2.5rem; max-width: 28rem; margin-left: auto; margin-right: auto;
}
@media (min-width: 640px) { .theme-hero-ctas { flex-direction: row; align-items: center; max-width: none; gap: 1rem; } }

/* ------------------------------------------------------------------
   Section shells
   ------------------------------------------------------------------ */
.theme-section { position: relative; padding: 5rem 0; }
@media (min-width: 1024px) { .theme-section { padding: 7rem 0; } }
.theme-section--ivory { background-color: var(--color-ivory); color: var(--color-navy); }
.theme-section--cream { background-color: var(--color-cream); color: var(--color-navy); }
.theme-section--sand { background-color: var(--color-sand); color: var(--color-navy); }
.theme-section--dark { background-color: var(--color-navy); color: var(--color-ivory); }

.theme-section-intro { text-align: center; max-width: 48rem; margin: 0 auto 3.5rem; }
.theme-section-heading,
.theme-music-heading {
	font-weight: 600; margin-top: 1.25rem; line-height: 1.05; letter-spacing: -0.025em;
	font-size: 2.25rem; color: var(--color-navy);
}
@media (min-width: 768px) { .theme-section-heading, .theme-music-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-section-heading, .theme-music-heading { font-size: 3.75rem; } }
.theme-section-heading--light { color: var(--color-ivory); }
.theme-section-description { margin-top: 1.5rem; font-size: 1rem; line-height: 1.7; color: color-mix(in srgb, var(--color-navy) 75%, transparent); }
@media (min-width: 768px) { .theme-section-description { font-size: 1.125rem; } }
.theme-section--dark .theme-section-description { color: color-mix(in srgb, var(--color-ivory) 85%, transparent); }

/* ------------------------------------------------------------------
   About
   ------------------------------------------------------------------ */
.theme-about-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .theme-about-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.theme-about-image-wrap {
	margin-top: 2rem; position: relative; overflow: hidden; border-radius: 6px;
	border: 1px solid color-mix(in srgb, var(--color-navy) 15%, transparent);
	aspect-ratio: 3/4; box-shadow: var(--shadow-soft);
}
.theme-about-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease-out; }
.theme-about-image-wrap:hover .theme-about-image { transform: scale(1.05); }
.theme-about-heading { font-size: 2.25rem; line-height: 1.05; font-weight: 600; letter-spacing: -0.01em; }
@media (min-width: 768px) { .theme-about-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-about-heading { font-size: 3.75rem; } }
.theme-about-copy { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 1rem; line-height: 1.7; color: color-mix(in srgb, var(--color-navy) 85%, transparent); max-width: 42rem; }
@media (min-width: 768px) { .theme-about-copy { font-size: 1.125rem; } }
.theme-about-quote { border-left: 2px solid var(--color-gold); padding: 0.5rem 0 0.5rem 1.25rem; font-style: italic; font-family: var(--font-display); color: var(--color-navy); font-size: 1.125rem; line-height: 1.4; }
@media (min-width: 768px) { .theme-about-quote { font-size: 1.25rem; } }
.theme-about-quote cite { font-style: normal; display: block; margin-top: 0.5rem; color: var(--color-rust); font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; font-size: 14px; }

/* ------------------------------------------------------------------
   Product cards / Music grid
   ------------------------------------------------------------------ */
.theme-product-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.5rem; align-items: stretch; width: 100%; min-width: 0; }
.theme-product-grid > * { min-width: 0; max-width: 100%; }
@media (min-width: 640px) { .theme-product-grid:not(.theme-music-grid) { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.theme-related-grid { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 768px) { .theme-related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
.theme-shop-grid { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .theme-shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Music shop — full cards on small/tablet screens, more columns as width allows */
.theme-music-grid {
	grid-template-columns: minmax(0, 1fr);
	gap: 1.25rem;
}
@media (min-width: 768px) {
	.theme-music-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}
}
@media (min-width: 900px) {
	.theme-music-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.5rem;
	}
}
@media (min-width: 1280px) {
	.theme-music-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 2rem;
	}
}

.theme-music-section .theme-product-card-wrap {
	width: 100%;
	min-width: 0;
}
.theme-music-grid .theme-product-card {
	width: 100%;
	min-width: 0;
}
.theme-music-grid .theme-product-card__info {
	flex-wrap: wrap;
	row-gap: 0.375rem;
	padding-bottom: 0.75rem;
}
.theme-music-grid .theme-product-card__title {
	white-space: normal;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: unset;
}
@media (max-width: 767px) {
	.theme-music-grid .theme-product-card__info {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.375rem;
	}
	.theme-music-grid .theme-product-card__price {
		font-size: 1.125rem;
	}
}
@media (min-width: 768px) and (max-width: 899px) {
	.theme-music-grid .theme-product-card__title {
		font-size: 1.125rem;
	}
	.theme-music-grid .theme-product-card__price {
		font-size: 1rem;
	}
}

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; min-width: 0; }
.theme-music-card-desc { margin-top: 0.75rem; padding: 0 0.25rem 0.25rem; font-size: 14px; line-height: 1.5; color: color-mix(in srgb, var(--color-navy) 70%, transparent); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.theme-product-card {
	display: flex; flex-direction: column; height: 100%;
	background-color: var(--color-ivory);
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--color-navy) 15%, transparent);
	transition: transform .5s ease-out, border-color .5s ease-out, box-shadow .5s ease-out;
	will-change: transform;
}
.theme-product-card:hover { transform: translateY(-8px); border-color: var(--color-gold); box-shadow: 0 18px 40px -18px rgba(14,42,59,0.35); }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 3/4; width: 100%; overflow: hidden; background-color: var(--color-sand); }
.theme-product-card__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s ease-out; }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.06); }
.theme-product-card__info { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.25rem 1rem 0.5rem; flex: 1; }
.theme-product-card__text { min-width: 0; }
.theme-product-card__category { color: var(--color-burnt-orange); }
.theme-product-card__title { font-size: 1.25rem; font-weight: 600; line-height: 1.3; margin-top: 0.25rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.5rem; } }
.theme-product-card__price { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; flex-shrink: 0; white-space: nowrap; }
@media (min-width: 768px) { .theme-product-card__price { font-size: 1.25rem; } }
.theme-product-card__price .woocommerce-Price-amount { font-family: inherit; }

.theme-stock-badge {
	position: absolute; bottom: 0.75rem; right: 0.75rem; z-index: 2;
	background-color: var(--color-rust); color: var(--color-ivory);
	font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
	padding: 0.25rem 0.6rem; border-radius: 9999px;
}
.theme-stock-badge--inline { position: static; display: inline-block; margin: 0.5rem 0 0; }

/* ------------------------------------------------------------------
   Live sessions / video
   ------------------------------------------------------------------ */
.theme-sessions-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .theme-sessions-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }
.theme-session-card {
	position: relative; display: block; overflow: hidden; border-radius: 6px;
	border: 1px solid color-mix(in srgb, var(--color-navy) 15%, transparent);
	aspect-ratio: 3/4;
	transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.theme-session-card:hover { transform: translateY(-6px); }
.theme-session-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s ease-out; }
.theme-session-card:hover .theme-session-image { transform: scale(1.05); }
.theme-session-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,42,59,0.85), transparent 60%); }
.theme-session-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: color-mix(in srgb, var(--color-header-sand) 90%, transparent); transition: transform .3s ease, color .3s ease; }
.theme-session-card:hover .theme-session-play { color: var(--color-header-sand); transform: translate(-50%,-50%) scale(1.1); }
.theme-session-caption { position: absolute; inset-inline: 0; bottom: 0; padding: 1.25rem; }
.theme-session-kicker { color: var(--color-header-sand); }
.theme-session-title { font-size: 1.25rem; margin-top: 0.25rem; color: var(--color-ivory); }
@media (min-width: 768px) { .theme-session-title { font-size: 1.5rem; } }

.theme-platforms-row { margin-top: 3rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; }
.theme-platforms-label { color: color-mix(in srgb, var(--color-navy) 70%, transparent); margin-right: 0.5rem; }
.theme-platform-link {
	display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.25rem; border-radius: 9999px;
	border: 1px solid color-mix(in srgb, var(--color-navy) 25%, transparent);
	font-size: 14px; transition: background-color .2s ease, color .2s ease;
}
.theme-platform-link:hover { background-color: var(--color-navy); color: var(--color-header-sand); }

/* ------------------------------------------------------------------
   Shows
   ------------------------------------------------------------------ */
.theme-shows-card {
	max-width: 48rem; margin: 0 auto; border-radius: 10px; text-align: center;
	background-color: var(--color-ivory);
	border: 1px solid color-mix(in srgb, var(--color-navy) 20%, transparent);
	padding: 2.5rem 2rem; box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .theme-shows-card { padding: 3.5rem; } }
.theme-shows-card svg { color: var(--color-gold); margin: 0 auto; }
.theme-shows-card-heading { font-size: 1.5rem; margin-top: 1rem; }
@media (min-width: 768px) { .theme-shows-card-heading { font-size: 1.875rem; } }
.theme-shows-card-body { color: color-mix(in srgb, var(--color-navy) 75%, transparent); margin-top: 0.75rem; max-width: 32rem; margin-left: auto; margin-right: auto; }
.theme-shows-card .theme-btn-primary { margin-top: 2rem; }

/* ------------------------------------------------------------------
   Be Love
   ------------------------------------------------------------------ */
.theme-belove-section { padding: 0; }
.theme-belove-hero { position: relative; min-height: 80vh; display: flex; align-items: center; }
.theme-belove-bg { position: absolute; inset: 0; }
.theme-belove-image { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.theme-belove-gradient { position: absolute; inset: 0; background: linear-gradient(to right, var(--color-navy), color-mix(in srgb, var(--color-navy) 70%, transparent), transparent); }
.theme-belove-inner { position: relative; z-index: 10; padding-top: 6rem; padding-bottom: 6rem; }
@media (min-width: 1024px) { .theme-belove-inner { padding-top: 8rem; padding-bottom: 8rem; } }
.theme-belove-content { max-width: 42rem; }
.theme-belove-heading { color: var(--color-ivory); font-size: 2.25rem; font-weight: 600; margin-top: 1.25rem; line-height: 1.05; letter-spacing: -0.01em; }
@media (min-width: 768px) { .theme-belove-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-belove-heading { font-size: 3.75rem; } }
.theme-belove-copy { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; color: color-mix(in srgb, var(--color-ivory) 90%, transparent); font-size: 1rem; line-height: 1.7; }
@media (min-width: 768px) { .theme-belove-copy { font-size: 1.125rem; } }
.theme-belove-ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ------------------------------------------------------------------
   Giving back
   ------------------------------------------------------------------ */
.theme-giving-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .theme-giving-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.theme-giving-heading { font-size: 2.25rem; font-weight: 600; margin-top: 1.25rem; line-height: 1.05; letter-spacing: -0.01em; }
@media (min-width: 768px) { .theme-giving-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-giving-heading { font-size: 3.75rem; } }
.theme-giving-copy { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 1rem; line-height: 1.7; color: color-mix(in srgb, var(--color-navy) 85%, transparent); max-width: 36rem; }
@media (min-width: 768px) { .theme-giving-copy { font-size: 1.125rem; } }
.theme-giving-stat { margin-top: 2.5rem; display: flex; align-items: center; gap: 0.75rem; }
.theme-giving-stat svg { color: var(--color-gold); flex-shrink: 0; }
.theme-giving-stat span { font-size: 14px; }
.theme-giving-cta,
.theme-giving-copy-col .theme-btn-primary { margin-top: 2.5rem; }
.theme-giving-image-wrap { position: relative; overflow: hidden; border-radius: 6px; border: 1px solid color-mix(in srgb, var(--color-navy) 15%, transparent); aspect-ratio: 4/5; box-shadow: var(--shadow-soft); }
.theme-giving-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease-out; }
.theme-giving-image-wrap:hover .theme-giving-image { transform: scale(1.05); }

/* ------------------------------------------------------------------
   Stories
   ------------------------------------------------------------------ */
.theme-stories-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .theme-stories-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.theme-story-card {
	position: relative; overflow: hidden; border-radius: 6px;
	border: 1px solid color-mix(in srgb, var(--color-navy) 15%, transparent);
	background-color: var(--color-ivory);
	box-shadow: var(--shadow-soft);
	transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.theme-story-card:hover { transform: translateY(-6px); }
.theme-story-image-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.theme-story-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s ease-out; }
.theme-story-card:hover .theme-story-image { transform: scale(1.05); }
.theme-story-body { padding: 1.5rem; }
@media (min-width: 1024px) { .theme-story-body { padding: 2rem; } }
.theme-story-kicker { color: var(--color-rust); }
.theme-story-title { font-size: 1.5rem; margin-top: 0.5rem; line-height: 1.2; }
@media (min-width: 768px) { .theme-story-title { font-size: 1.875rem; } }
.theme-story-copy { color: color-mix(in srgb, var(--color-navy) 80%, transparent); margin-top: 0.75rem; line-height: 1.7; }

/* ------------------------------------------------------------------
   Gallery
   ------------------------------------------------------------------ */
.theme-gallery-marquee { position: relative; overflow: hidden; width: 100vw; margin-left: calc((100vw - 100%) / -2); }
.theme-gallery-track { display: flex; width: max-content; will-change: transform; }
.theme-gallery-item { position: relative; flex-shrink: 0; width: 200px; aspect-ratio: 4/5; overflow: hidden; background-color: var(--color-sand); display: block; }
@media (min-width: 768px) { .theme-gallery-item { width: 260px; } }
@media (min-width: 1024px) { .theme-gallery-item { width: 300px; } }
.theme-gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s ease-out; }
.theme-gallery-item:hover img { transform: scale(1.05); }
.theme-gallery-item-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,42,59,0.4), transparent 60%); opacity: 0; transition: opacity .3s ease; }
.theme-gallery-item:hover .theme-gallery-item-gradient { opacity: 1; }

.theme-lightbox { position: fixed; inset: 0; z-index: 100; background-color: rgba(14,42,59,0.95); display: flex; align-items: center; justify-content: center; padding: 1rem; }
.theme-lightbox[hidden] { display: none; }
.theme-lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; color: var(--color-ivory); transition: color .2s ease; }
.theme-lightbox-close:hover { color: var(--color-gold); }
.theme-lightbox-image { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 6px; }

/* ------------------------------------------------------------------
   FAQ accordion
   ------------------------------------------------------------------ */
.theme-faq-container { max-width: 48rem; }
.theme-accordion { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; }
.theme-accordion-item {
	border-radius: 6px; border: 1px solid color-mix(in srgb, var(--color-navy) 20%, transparent);
	background-color: var(--color-ivory); padding: 0 1.25rem;
}
.theme-accordion-item.is-open { border-color: var(--color-gold); }
.theme-accordion-trigger {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	padding: 1.25rem 0; text-align: left; font-family: var(--font-display); font-size: 1.125rem;
	transition: color .2s ease;
}
@media (min-width: 768px) { .theme-accordion-trigger { font-size: 1.25rem; } }
.theme-accordion-trigger:hover { color: var(--color-rust); }
.theme-accordion-chevron { flex-shrink: 0; transition: transform .2s ease; }
.theme-accordion-item.is-open .theme-accordion-chevron { transform: rotate(180deg); }
.theme-accordion-content { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.theme-accordion-content p { padding-bottom: 1.25rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-navy) 85%, transparent); }

/* ------------------------------------------------------------------
   Contact
   ------------------------------------------------------------------ */
.theme-contact-section { position: relative; }
.theme-contact-bg { position: absolute; inset: 0; }
.theme-contact-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.theme-contact-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(14,42,59,0.85), rgba(14,42,59,0.8), rgba(14,42,59,0.9)); }
.theme-contact-inner { position: relative; z-index: 10; }

.theme-inquiry-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 3.5rem; }
@media (min-width: 640px) { .theme-inquiry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .theme-inquiry-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.5rem; } }
.theme-inquiry-card {
	display: flex; flex-direction: column; text-align: left; border-radius: 6px;
	border: 1px solid color-mix(in srgb, var(--color-navy) 20%, transparent);
	background-color: var(--color-ivory);
	padding: 1.5rem; transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
	box-shadow: var(--shadow-soft);
}
@media (min-width: 1024px) { .theme-inquiry-card { padding: 1.75rem; } }
.theme-inquiry-card:hover { border-color: var(--color-gold); transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(14,42,59,0.35); }
.theme-inquiry-icon {
	width: 2.75rem; height: 2.75rem; border-radius: 50%;
	background-color: color-mix(in srgb, var(--color-gold) 15%, transparent);
	color: var(--color-rust);
	display: flex; align-items: center; justify-content: center;
	transition: background-color .3s ease, color .3s ease;
}
.theme-inquiry-card:hover .theme-inquiry-icon { background-color: var(--color-rust); color: var(--color-cream); }
.theme-inquiry-kicker { color: var(--color-burnt-orange); margin-top: 1.25rem; display: block; }
.theme-inquiry-title { font-size: 1.25rem; margin-top: 0.25rem; line-height: 1.3; min-height: 3.5rem; }
@media (min-width: 768px) { .theme-inquiry-title { font-size: 1.5rem; } }
.theme-inquiry-body { font-size: 14px; margin-top: 0.75rem; line-height: 1.6; color: color-mix(in srgb, var(--color-navy) 75%, transparent); min-height: 5.25rem; }
.theme-inquiry-cta { margin-top: auto; padding-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.375rem; font-size: 14px; color: var(--color-rust); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; transition: color .2s ease; }
.theme-inquiry-card:hover .theme-inquiry-cta { color: var(--color-navy); }

.theme-contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .theme-contact-grid { grid-template-columns: 5fr 7fr; gap: 3rem; } }
.theme-contact-info { display: flex; flex-direction: column; gap: 1rem; }
.theme-contact-info-item {
	display: flex; align-items: center; gap: 1rem; border-radius: 6px;
	border: 1px solid color-mix(in srgb, var(--color-navy) 20%, transparent);
	background-color: var(--color-cream);
	padding: 1.25rem; transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
	color: var(--color-navy);
}
.theme-contact-info-item:hover { border-color: var(--color-gold); transform: translateY(-2px); box-shadow: 0 14px 30px -18px rgba(14,42,59,0.4); }
.theme-contact-info-icon { width: 2.75rem; height: 2.75rem; border-radius: 50%; background-color: var(--color-navy); color: var(--color-header-sand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background-color .3s ease; }
.theme-contact-info-item:hover .theme-contact-info-icon { background-color: var(--color-rust); }
.theme-contact-info-text { display: flex; flex-direction: column; min-width: 0; }
.theme-contact-info-text .cs-label { color: var(--color-rust); font-size: 14px; }
.theme-contact-info-text span:last-child { font-size: 15px; }

.theme-contact-main-form,
.theme-contact-form {
	background-color: var(--color-ivory);
	border: 1px solid color-mix(in srgb, var(--color-navy) 20%, transparent);
	border-radius: 6px; padding: 1.5rem; box-shadow: var(--shadow-soft);
	display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 1024px) { .theme-contact-main-form { padding: 2rem; } }

.theme-form-row-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-form-row-2 { grid-template-columns: 1fr 1fr; } }
.theme-form-field { display: flex; flex-direction: column; }
.theme-form-field label { font-size: 14px; font-weight: 500; margin-bottom: 0.375rem; color: var(--color-navy); }
.theme-form-field input,
.theme-form-field select,
.theme-form-field textarea {
	width: 100%; padding: 0.625rem 0.75rem; background-color: var(--color-cream);
	border: 1px solid color-mix(in srgb, var(--color-navy) 20%, transparent);
	border-radius: 6px; color: var(--color-navy);
}
.theme-form-field input:focus,
.theme-form-field select:focus,
.theme-form-field textarea:focus {
	outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-gold) 50%, transparent);
}
.theme-form-field textarea { resize: none; }
.theme-form-actions { display: flex; }
.theme-form-actions--end { justify-content: flex-end; }
.theme-form-success {
	border-radius: 6px; background-color: color-mix(in srgb, var(--color-gold) 15%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-gold) 40%, transparent);
	padding: 1rem; display: flex; align-items: center; gap: 0.75rem; color: var(--color-navy); font-size: 14px;
}
.theme-form-success svg { color: var(--color-rust); flex-shrink: 0; }
.theme-form-success[hidden] { display: none; }

/* ------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------ */
.site-footer { position: relative; overflow: hidden; border-top: 1px solid color-mix(in srgb, var(--color-navy) 15%, transparent); background-color: var(--color-header-sand); }
.theme-footer-inner { padding-top: 4rem; padding-bottom: 1.5rem; }
@media (min-width: 1024px) { .theme-footer-inner { padding-top: 5rem; padding-bottom: 2rem; } }
.theme-footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .theme-footer-grid { grid-template-columns: 5fr 3fr 4fr; gap: 3rem; } }
.theme-footer-logo { height: 6rem; width: 18rem; }
@media (min-width: 768px) { .theme-footer-logo { height: 7rem; width: 20rem; } }
.theme-footer-description { margin-top: 1.5rem; max-width: 28rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-navy) 85%, transparent); }
.theme-footer-nav h3, .theme-footer-contact h3 { color: var(--color-navy); margin-bottom: 1.25rem; }
.theme-footer-nav-list { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer-nav-list a { font-size: 14px; color: color-mix(in srgb, var(--color-navy) 80%, transparent); }
.theme-footer-nav-list a:hover { color: var(--color-rust); }
.theme-footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer-contact-list a { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-navy) 85%, transparent); word-break: break-all; }
.theme-footer-contact-list a:hover { color: var(--color-rust); }

.theme-footer-newsletter {
	margin-top: 1.5rem;
	display: flex;
	align-items: stretch;
	gap: 0.5rem;
}
.theme-footer-newsletter input[type="email"] {
	flex: 1;
	min-width: 0;
	padding: 0.5rem 0.75rem;
	border-radius: 6px;
	border: 1px solid color-mix(in srgb, var(--color-navy) 25%, transparent);
	background-color: var(--color-ivory);
	color: var(--color-navy);
	font-size: 14px;
}
.theme-footer-newsletter input[type="email"]::placeholder {
	color: color-mix(in srgb, var(--color-navy) 50%, transparent);
}
.theme-footer-newsletter input[type="email"]:focus {
	outline: none;
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-rust) 40%, transparent);
}
.theme-footer-newsletter button {
	padding: 0.5rem 1rem;
	border-radius: 6px;
	background-color: var(--color-navy);
	color: var(--color-header-sand);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background-color .2s ease;
}
.theme-footer-newsletter button:hover { background-color: var(--color-rust); }

.theme-footer-bottom {
	margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-navy) 15%, transparent);
	display: grid; grid-template-columns: 1fr; gap: 0.75rem; align-items: center; text-align: center;
}
@media (min-width: 768px) { .theme-footer-bottom { grid-template-columns: repeat(3, 1fr); } }
.theme-footer-copyright, .theme-footer-credit { font-size: 14px; color: color-mix(in srgb, var(--color-navy) 80%, transparent); }
@media (min-width: 768px) { .theme-footer-copyright { justify-self: start; } .theme-footer-credit { justify-self: center; } }
.theme-footer-credit a { color: var(--color-rust); text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--color-rust) 40%, transparent); text-underline-offset: 2px; }
.theme-footer-totop { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 14px; color: color-mix(in srgb, var(--color-navy) 85%, transparent); }
@media (min-width: 768px) { .theme-footer-totop { justify-self: end; } }
.theme-footer-totop:hover { color: var(--color-rust); }

/* ------------------------------------------------------------------
   Back to top
   ------------------------------------------------------------------ */
.theme-back-to-top {
	position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
	width: 2.5rem; height: 2.5rem; border-radius: 50%;
	background-color: var(--color-gold); color: #fff;
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow-soft);
	transition: transform .2s ease, opacity .2s ease;
	opacity: 0; pointer-events: none;
}
@media (min-width: 768px) { .theme-back-to-top { width: 3rem; height: 3rem; } }
.theme-back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.theme-back-to-top:hover { transform: scale(1.1); }

/* ------------------------------------------------------------------
   Contact modal
   ------------------------------------------------------------------ */
.theme-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1rem; }
.theme-modal.is-open { display: flex; }
.theme-modal-overlay { position: absolute; inset: 0; background-color: rgba(0,0,0,0.8); animation: fadeIn .2s ease; }
.theme-modal-content {
	position: relative; z-index: 10; width: 100%; max-width: 32rem; max-height: 90vh; overflow-y: auto;
	display: grid; gap: 1rem;
	background-color: var(--color-ivory);
	border: 1px solid color-mix(in srgb, var(--color-navy) 20%, transparent);
	border-radius: 8px; padding: 1.5rem;
	box-shadow: 0 10px 15px -3px rgba(14,42,59,0.12), 0 4px 6px -4px rgba(14,42,59,0.08);
	animation: themeModalIn .2s ease;
}
@keyframes themeModalIn {
	from { opacity: 0; transform: scale(0.96); }
	to { opacity: 1; transform: scale(1); }
}
.theme-modal-close { position: absolute; top: 1rem; right: 1rem; color: var(--color-navy); opacity: 0.7; border-radius: 4px; padding: 0.25rem; }
.theme-modal-close:hover { opacity: 1; }
.theme-modal-header { display: flex; flex-direction: column; gap: 0.375rem; padding-right: 1.5rem; }
.theme-modal-title { font-family: var(--font-display); font-size: 1.875rem; font-weight: 500; line-height: 1.2; color: var(--color-navy); }
.theme-modal-description { color: color-mix(in srgb, var(--color-navy) 70%, transparent); font-size: 15px; line-height: 1.5; margin: 0; }
.theme-modal-links { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1rem; font-size: 14px; }
.theme-modal-links a { display: inline-flex; align-items: center; gap: 0.5rem; color: color-mix(in srgb, var(--color-navy) 85%, transparent); transition: color .2s ease; }
.theme-modal-links a:hover { color: var(--color-rust); }
.theme-modal-form { display: flex; flex-direction: column; gap: 1rem; margin: 0; padding: 0; border: none; background: none; box-shadow: none; }
.theme-modal-form .theme-form-field input,
.theme-modal-form .theme-form-field select,
.theme-modal-form .theme-form-field textarea {
	background-color: var(--color-cream);
	font-size: 16px;
}
.theme-modal-form .theme-form-field input::placeholder,
.theme-modal-form .theme-form-field textarea::placeholder {
	color: color-mix(in srgb, var(--color-navy) 45%, transparent);
}
.theme-modal-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 6px;
	padding: 0 1.5rem;
	height: 48px;
	background-color: var(--color-navy);
	color: var(--color-header-sand);
	border: none;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	transition: background-color .2s ease, color .2s ease;
}
.theme-modal-submit:hover { background-color: var(--color-rust); color: var(--color-ivory); }
.theme-modal-submit:disabled { opacity: 0.7; cursor: wait; }
.theme-modal-success { text-align: center; padding: 2rem 0; }
.theme-modal-success[hidden] { display: none; }
.theme-modal-success-icon {
	width: 3.5rem; height: 3.5rem; border-radius: 50%;
	background-color: var(--color-gold);
	color: var(--color-navy);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 1rem;
}
.theme-modal-success-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--color-navy); }
.theme-modal-success-text { font-size: 14px; color: color-mix(in srgb, var(--color-navy) 75%, transparent); margin: 0; }
.theme-modal-content.is-success .theme-modal-form,
.theme-modal-content.is-success .theme-modal-links { display: none; }

/* ------------------------------------------------------------------
   Cart drawer + overlay
   ------------------------------------------------------------------ */
#theme-cart-overlay { position: fixed; inset: 0; background-color: rgba(14,42,59,0.4); z-index: 60; display: none; }
body.cart-open #theme-cart-overlay { display: block; animation: fadeIn .2s ease; }

#theme-cart-drawer {
	position: fixed; right: -100%; top: 0; bottom: 0; width: 100%; max-width: 28rem;
	background-color: var(--color-ivory); z-index: 61;
	box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	transition: right .35s cubic-bezier(0.22,1,0.36,1);
}
body.cart-open #theme-cart-drawer { right: 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 color-mix(in srgb, var(--color-navy) 15%, transparent); }
.theme-cart-drawer-header h2 { font-size: 1.5rem; font-weight: 500; }
.theme-cart-drawer-close { padding: 0.25rem; opacity: 0.8; }
.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; }
.theme-cart-drawer-empty svg { color: color-mix(in srgb, var(--color-navy) 50%, transparent); margin-bottom: 1rem; }
.theme-cart-drawer-empty p { color: color-mix(in srgb, var(--color-navy) 65%, transparent); margin-bottom: 1.5rem; }
.theme-cart-drawer-empty .theme-btn-outline { height: 44px; padding: 0 1.5rem; }

.theme-cart-drawer-items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-drawer-item { display: flex; gap: 1rem; }
.theme-cart-drawer-item-image { width: 5rem; height: 6rem; background-color: var(--color-sand); overflow: hidden; flex-shrink: 0; border-radius: 6px; display: block; }
.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-title { font-size: 14px; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-drawer-item-title:hover { opacity: 0.7; }
.theme-cart-drawer-item-price { font-size: 14px; color: var(--color-rust); font-weight: 600; margin-top: 0.125rem; }
.theme-cart-drawer-item-variation { font-size: 13px; color: color-mix(in srgb, var(--color-navy) 60%, transparent); margin-top: 0.25rem; }
.theme-cart-drawer-item-controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; }
.theme-cart-qty-btn { padding: 0.25rem 0.5rem; border-radius: 4px; transition: background-color .2s ease; }
.theme-cart-qty-btn:hover { background-color: color-mix(in srgb, var(--color-navy) 10%, transparent); }
.theme-cart-qty-value { font-size: 14px; width: 1.5rem; text-align: center; }
.theme-cart-remove { margin-left: auto; font-size: 14px; color: color-mix(in srgb, var(--color-navy) 60%, transparent); }
.theme-cart-remove:hover { color: var(--color-navy); }

.theme-cart-drawer-footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-navy) 15%, transparent); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer-subtotal { display: flex; justify-content: space-between; align-items: baseline; font-weight: 500; }
.theme-cart-drawer-subtotal-value { font-family: var(--font-display); font-size: 1.875rem; font-weight: 500; }
.theme-cart-checkout-btn { width: 100%; }

/* Hide WooCommerce's own "View cart" link and default notices per context — Section 11.4.2 / 14.1 */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }

/* ------------------------------------------------------------------
   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-navy) !important;
	color: var(--color-ivory) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-navy) !important;
	color: var(--color-ivory) !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-navy) !important;
}
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* ------------------------------------------------------------------
   Single product page — Section 11.13
   ------------------------------------------------------------------ */
.theme-single-product { padding-top: 2.5rem; padding-bottom: 6rem; }
@media (min-width: 1024px) { .theme-single-product { padding-top: 3.5rem; } }
.theme-breadcrumb { padding: 1.5rem 0; font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--color-navy) 65%, transparent); }
.theme-breadcrumb a { color: inherit; }
.theme-breadcrumb a:hover { color: var(--color-navy); }
.theme-breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }
.theme-breadcrumb .theme-breadcrumb-current { color: var(--color-navy); margin: 0; }
.theme-breadcrumb .theme-breadcrumb-category { color: var(--color-navy); margin: 0; }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 1rem 0 6rem; align-items: start; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-info { position: static; }
@media (min-width: 1024px) { .theme-product-info { position: sticky; top: 7rem; } }

.theme-product-main-image-wrap { aspect-ratio: 4/5; background-color: var(--color-sand); overflow: hidden; border-radius: 6px; box-shadow: var(--shadow-soft); }
.theme-product-main-image { width: 100%; height: 100%; object-fit: cover; }
.theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; max-width: 100%; }
.theme-product-thumb { width: 4.5rem; height: 5.5rem; border-radius: 6px; overflow: hidden; border: 2px solid transparent; opacity: 0.7; transition: opacity .2s ease, border-color .2s ease; flex-shrink: 0; }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-product-thumb.is-active, .theme-product-thumb:hover { opacity: 1; border-color: var(--color-gold); }

.theme-product-category { color: var(--color-rust); }
.theme-product-title { font-size: 2.25rem; font-weight: 500; line-height: 1.05; margin-top: 0.75rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .theme-product-title { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-product-title { font-size: 3.75rem; } }
.theme-product-price { font-family: var(--font-display); font-size: 1.875rem; font-weight: 500; margin-bottom: 1.5rem; }
.theme-product-price .woocommerce-Price-amount { font-family: inherit; }
.theme-product-description { color: color-mix(in srgb, var(--color-navy) 75%, transparent); line-height: 1.625; margin-bottom: 2rem; font-size: 1rem; overflow-wrap: break-word; word-break: break-word; }

.theme-product-quantity-block { margin-bottom: 1.5rem; }
.theme-quantity-label { color: color-mix(in srgb, var(--color-navy) 65%, transparent); margin-bottom: 0.75rem; }

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, var(--color-navy) 20%, transparent); border-radius: 6px; background-color: var(--color-cream); }
.theme-qty-minus, .theme-qty-plus { padding: 0.5rem 0.75rem; transition: background-color .2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background-color: color-mix(in srgb, var(--color-navy) 10%, transparent); }
.theme-qty-value { padding: 0.5rem 1rem; min-width: 2.75rem; text-align: center; font-size: 14px; }
.theme-qty-input { display: none; }

.theme-product-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 0; }
@media (min-width: 640px) { .theme-product-actions { flex-direction: row; } }

.theme-btn-product-primary,
.theme-btn-product-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex: 1 1 auto;
	min-width: 0;
	border-radius: 6px;
	padding: 1rem 1.5rem;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
	border: 1px solid transparent;
	text-align: center;
}
.theme-btn-product-primary {
	background-color: var(--color-navy);
	color: var(--color-cream);
}
.theme-btn-product-primary:hover {
	background-color: var(--color-gold);
	color: var(--color-navy);
}
.theme-btn-product-primary.disabled,
.theme-btn-product-primary:disabled {
	cursor: not-allowed;
	opacity: 0.7;
	pointer-events: none;
}
.theme-btn-product-outline {
	background: transparent;
	color: var(--color-navy);
	border-color: var(--color-navy);
}
.theme-btn-product-outline:hover {
	background-color: var(--color-navy);
	color: var(--color-cream);
}

.theme-product-actions .single_add_to_cart_button.button,
.theme-product-actions .single_add_to_cart_button.button:hover,
.theme-product-actions .single_add_to_cart_button.button:disabled {
	background-color: var(--color-navy) !important;
	color: var(--color-cream) !important;
	border: none !important;
	border-radius: 6px !important;
	min-height: auto !important;
	height: auto !important;
	padding: 1rem 1.5rem !important;
	letter-spacing: 0.15em !important;
	opacity: 1 !important;
}
.theme-product-actions .single_add_to_cart_button.button:hover {
	background-color: var(--color-gold) !important;
	color: var(--color-navy) !important;
}
.theme-product-actions .single_add_to_cart_button.is-added,
.theme-product-actions .single_add_to_cart_button.is-added:hover {
	opacity: 0.7 !important;
	pointer-events: none !important;
}

.theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.theme-add-to-cart-area .single_add_to_cart_button,
.theme-add-to-cart-area .theme-btn-outline { flex: 1 1 auto; min-width: 160px; }

.theme-product-details { margin-top: 2.5rem; border-top: 1px solid color-mix(in srgb, var(--color-navy) 15%, transparent); }
.theme-details-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; }
.theme-details-chevron { transition: transform .2s ease; }
.theme-details-chevron.is-open { transform: rotate(180deg); }
.theme-details-content { padding-bottom: 1.5rem; }
.theme-details-content ul { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-details-content li { font-size: 15px; color: color-mix(in srgb, var(--color-navy) 75%, transparent); display: flex; align-items: flex-start; }
.theme-details-content li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background-color: var(--color-gold); margin-top: 8px; margin-right: 0.75rem; flex-shrink: 0; }
.theme-details-divider { border-top: 1px solid color-mix(in srgb, var(--color-navy) 15%, transparent); }

.theme-related-intro { text-align: center; margin-bottom: 3rem; }
.theme-related-heading-break { display: none; }
@media (min-width: 768px) { .theme-related-heading-break { display: inline; } }

.theme-related-products { padding: 5rem 0; border-top: 1px solid color-mix(in srgb, var(--color-navy) 15%, transparent); }

/* ------------------------------------------------------------------
   Shop archive
   ------------------------------------------------------------------ */
.theme-shop-archive { padding: 3rem 0 5rem; }
.theme-shop-heading { font-size: 2.25rem; margin-bottom: 2rem; }
.theme-shop-empty { padding: 4rem 0; text-align: center; color: color-mix(in srgb, var(--color-navy) 60%, transparent); }

/* ------------------------------------------------------------------
   404
   ------------------------------------------------------------------ */
.theme-404 { min-height: 60vh; display: flex; align-items: center; }
.theme-404-inner { text-align: center; padding: 5rem 0; }
.theme-404-title { font-size: 2.5rem; margin-bottom: 1rem; }
.theme-404-message { color: color-mix(in srgb, var(--color-navy) 70%, transparent); margin-bottom: 2rem; }

/* ------------------------------------------------------------------
   Generic page template
   ------------------------------------------------------------------ */
.theme-page-container { padding-top: 4rem; padding-bottom: 6rem; }
.page-title { font-size: 2.5rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .page-title { font-size: 3rem; } }

/* WooCommerce system pages (checkout, cart, account) — comfortable gutters on small screens */
.theme-wc-page-container,
body.theme-thankyou-page .theme-page-container {
	--wc-page-gutter: 1.5rem;
	padding-left: var(--wc-page-gutter);
	padding-right: var(--wc-page-gutter);
	box-sizing: border-box;
}
@media (min-width: 640px) {
	.theme-wc-page-container,
	body.theme-thankyou-page .theme-page-container {
		--wc-page-gutter: 1.75rem;
	}
}
@media (min-width: 1024px) {
	.theme-wc-page-container,
	body.theme-thankyou-page .theme-page-container {
		--wc-page-gutter: 2rem;
	}
}

body.theme-wc-system-page .entry-content,
body.theme-thankyou-page .entry-content {
	min-width: 0;
	max-width: 100%;
	overflow-x: clip;
}

/* WooCommerce Blocks bleed past theme padding with negative margins — reset on system pages */
body.theme-wc-system-page .entry-content .wc-block-checkout,
body.theme-wc-system-page .entry-content .wc-block-cart,
body.theme-wc-system-page .entry-content .wp-block-woocommerce-checkout,
body.theme-wc-system-page .entry-content .wp-block-woocommerce-cart,
body.theme-wc-system-page .entry-content .woocommerce,
body.theme-thankyou-page .entry-content .woocommerce-order {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: 100%;
}

body.theme-wc-system-page .wc-block-components-sidebar-layout,
body.theme-wc-system-page .wc-block-components-main,
body.theme-wc-system-page .wc-block-components-sidebar,
body.theme-wc-system-page .wc-block-cart,
body.theme-wc-system-page .wc-block-checkout {
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0;
	padding-right: 0;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

body.theme-wc-system-page .wc-block-components-form,
body.theme-wc-system-page .wc-block-components-checkout-step,
body.theme-wc-system-page .wc-block-components-panel,
body.theme-wc-system-page .wc-block-components-totals-wrapper,
body.theme-wc-system-page .wc-block-cart-items,
body.theme-wc-system-page .wc-block-cart__main {
	margin-left: 0;
	margin-right: 0;
	max-width: 100%;
}

body.theme-wc-system-page .woocommerce-MyAccount-navigation,
body.theme-wc-system-page .woocommerce-MyAccount-content {
	min-width: 0;
	max-width: 100%;
}

@media (max-width: 767px) {
	body.theme-wc-system-page .theme-wc-page-container,
	body.theme-thankyou-page .theme-page-container {
		padding-top: 2rem;
		padding-bottom: 3rem;
	}

	body.theme-wc-system-page .page-title {
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}

	body.theme-wc-system-page .wc-block-checkout__sidebar,
	body.theme-wc-system-page .wc-block-cart .wc-block-cart__totals-title,
	body.theme-wc-system-page .wc-block-components-totals-wrapper {
		padding: 1.25rem;
	}
}

/* ------------------------------------------------------------------
   WooCommerce Checkout Block — Section 13
   ------------------------------------------------------------------ */
body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main {
	padding-top: 2rem;
	padding-bottom: 4rem;
}
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-cart .wc-block-cart {
	font-family: var(--font-body);
	color: var(--color-navy);
}
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 {
	border-color: color-mix(in srgb, var(--color-navy) 20%, transparent);
	border-radius: 6px;
	background-color: var(--color-cream);
	color: var(--color-navy);
	font-family: var(--font-body);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	outline: none;
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-gold) 50%, transparent);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-navy) !important;
	border-radius: var(--btn-radius) !important;
	color: var(--color-ivory) !important;
	font-family: var(--font-body) !important;
	text-transform: var(--btn-text-transform);
	letter-spacing: var(--btn-letter-spacing);
	font-weight: var(--btn-font-weight);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
	background-color: var(--color-gold) !important;
	color: var(--color-navy) !important;
}
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-cart .wc-block-cart__totals-title {
	background-color: var(--color-cream);
	border-radius: 10px;
	padding: 2rem;
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-checkout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: start;
	}
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: start;
	}
}

/* ------------------------------------------------------------------
   Thank-you page — Section 22.8
   ------------------------------------------------------------------ */
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 h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-size: 1.5rem;
	padding: 0 0 1rem 0;
}
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: start;
	}
	body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; }
}
