/* ==========================================================================
   Joanne Raptis Therapy & Coaching — theme.css
   Design tokens converted from the original OKLCH brand tokens
   (Section 6.1). Defaults are re-emitted live via wp_add_inline_style;
   this file only declares fallbacks + all layout/animation/typography.
   ========================================================================== */

:root {
	--color-background: #fbf4e8;
	--color-foreground: #35251b;
	--color-primary: #506450;
	--color-secondary: #f1eadc;
	--color-muted-foreground: #84776f;
	--color-accent: #bc6f4c;
	--color-border: #ddd7cd;
	--color-white: #ffffff;
	--color-destructive: #d40c1a;
	--color-button-text: var(--color-white);

	--font-display: "Cormorant Garamond", Georgia, serif;
	--font-body: "Inter", system-ui, sans-serif;

	--logo-height: 60px;
	--header-height: 72px;
	--section-padding: 6rem;
	--container-max: 1280px;
	--card-radius: 0.75rem;
	--btn-radius: 999px;
	--btn-height: 3rem;
	--btn-padding: 0 1.75rem;
	--btn-font-size: 0.875rem;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0.01em;
	--btn-text-transform: none;
	--checkout-gap: 2rem;
}

@media (min-width: 1024px) {
	:root {
		--header-height: 80px;
	}
}

/* ---------------- Reset & base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	max-width: 100%;
}
body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	max-width: 100%;
}
.site-main,
.theme-home {
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

/* Tailwind preflight parity: browsers bold h1-h6 by default; the source's
   display font (Cormorant Garamond ~500) needs the un-bolded reset. */
h1, h2, h3, h4, h5, h6 {
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
	font-family: var(--font-display);
	letter-spacing: -0.02em;
}
.font-display { font-family: var(--font-display); }
em { font-style: italic; }

.theme-container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 1.25rem;
	box-sizing: border-box;
}
@media (min-width: 640px) {
	.theme-container { padding: 0 2rem; }
}

/* Full-bleed section shells — prevents mobile grids from shrinking section
   backgrounds when a child overflows the viewport. */
.hero-section,
.about-section,
.services-section,
.owner-section,
.approach-section,
.pricing-section,
.resources-section,
.insights-section,
.speaking-section,
.faq-section,
.contact-section,
.theme-shop-archive,
.related-products-section,
.site-footer {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

/* Global cover-image rule — excludes every cover/full-bleed image class
   used across the theme (Section 15.1 completeness rule). */
img:not(.cover-img):not(.hero-bg-img):not(.product-main-img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-bg-img, .product-main-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ==========================================================================
   Animation utility layer (Section 2.1)
   ========================================================================== */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 1s cubic-bezier(.2,.6,.2,1), transform 1s cubic-bezier(.2,.6,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

.reveal-item, .scale-in-item {
	opacity: 0;
	transform: translateY(20px) scale(0.98);
	transition: opacity .6s cubic-bezier(.2,.6,.2,1), transform .6s cubic-bezier(.2,.6,.2,1);
}
.reveal-item.is-visible, .scale-in-item.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.reveal, .reveal-item, .scale-in-item {
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* Customizer preview fallback — reveal content must never stay hidden while
   editing (Section 2.1.5). */
body.is-customizer .reveal,
body.is-customizer .reveal-item,
body.is-customizer .scale-in-item {
	opacity: 1 !important;
	transform: none !important;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.theme-btn-hero-primary, .theme-btn-hero-outline, .theme-btn-primary, .theme-btn-outline-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	height: var(--btn-height);
	padding: var(--btn-padding);
	border-radius: var(--btn-radius);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: none;
	font-family: var(--font-body);
	border: none;
	cursor: pointer;
	transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}
.theme-btn-hero-primary {
	background: var(--color-white);
	color: var(--color-primary);
	box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}
.theme-btn-hero-primary:hover { transform: translateY(-2px); background: color-mix(in srgb, var(--color-white) 95%, transparent); }
.theme-btn-hero-outline {
	background: color-mix(in srgb, var(--color-white) 10%, transparent);
	color: var(--color-white);
	border: 1px solid color-mix(in srgb, var(--color-white) 70%, transparent);
	backdrop-filter: blur(6px);
}
.theme-btn-hero-outline:hover { background: color-mix(in srgb, var(--color-white) 20%, transparent); }
.theme-btn-primary {
	background: var(--color-primary);
	color: var(--color-button-text);
}
.theme-btn-primary:hover { opacity: 0.9; }
.theme-btn-outline-pill {
	background: transparent;
	color: var(--color-primary);
	border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
	text-transform: uppercase;
	font-size: 0.72rem;
	letter-spacing: 0.2em;
}
.theme-btn-outline-pill:hover { background: var(--color-primary); color: var(--color-button-text); }
.theme-btn-arrow { transition: transform .2s ease; }
a:hover .theme-btn-arrow { transform: translateX(3px); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	width: 100%;
	transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
	background: transparent;
	border-bottom: 1px solid transparent;
}
.site-header.is-solid {
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(10px);
	border-bottom-color: var(--color-border);
	box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0 1rem;
	height: 64px;
}
@media (min-width: 1024px) { .site-header__inner { height: 72px; padding: 0 2.5rem; } }

.site-header__brand { display: flex; align-items: center; min-width: 0; flex-shrink: 0; }
.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; transition: filter .3s; }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-primary); }
.site-header:not(.is-solid) .theme-logo-light { filter: brightness(0) invert(1); }

.site-header__nav-wrap { display: none; align-items: center; gap: 1.25rem; min-width: 0; }
@media (min-width: 1024px) { .site-header__nav-wrap { display: flex; } }
.theme-nav-list { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.theme-nav-link {
	font-size: 13px;
	letter-spacing: 0.02em;
	white-space: nowrap;
	padding: 0.25rem 0;
	color: color-mix(in srgb, var(--color-white) 80%, transparent);
	transition: color .2s ease;
}
.site-header.is-solid .theme-nav-link { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.theme-nav-link:hover { color: var(--color-white); }
.site-header.is-solid .theme-nav-link:hover { color: var(--color-primary); }

.theme-header-cta {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1.25rem;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	background: color-mix(in srgb, var(--color-white) 10%, transparent);
	color: var(--color-white);
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-white) 30%, transparent);
	transition: background-color .2s ease;
}
.site-header.is-solid .theme-header-cta { background: var(--color-primary); color: var(--color-button-text); box-shadow: none; }
.theme-header-cta:hover { background: color-mix(in srgb, var(--color-white) 20%, transparent); }
.site-header.is-solid .theme-header-cta:hover { opacity: .9; }
.theme-header-cta--mobile { display: inline-flex; margin-top: 0.5rem; justify-content: center; background: var(--color-primary); color: var(--color-button-text); }

.site-header__actions { display: flex; align-items: center; gap: 0.5rem; }
.theme-cart-button {
	position: relative;
	display: inline-flex;
	padding: 0.5rem;
	border-radius: 999px;
	background: transparent;
	border: none;
	color: var(--color-white);
	cursor: pointer;
}
.site-header.is-solid .theme-cart-button { color: var(--color-foreground); }
.theme-cart-button:hover { background: color-mix(in srgb, var(--color-white) 10%, transparent); }
.site-header.is-solid .theme-cart-button:hover { background: var(--color-secondary); }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px;
	min-width: 18px; height: 18px; padding: 0 4px;
	border-radius: 999px;
	background: var(--color-primary);
	color: var(--color-button-text);
	font-size: 10px; font-weight: 500;
	display: flex; align-items: center; justify-content: center;
}
.theme-cart-count:empty { display: none; }

.theme-mobile-toggle {
	display: inline-flex; background: transparent; border: none; padding: 0.5rem -0.5rem 0.5rem 0.5rem; color: var(--color-white); cursor: pointer;
}
.site-header.is-solid .theme-mobile-toggle { color: var(--color-foreground); }
@media (min-width: 1024px) { .theme-mobile-toggle { display: none; } }

.theme-mobile-menu {
	display: none;
	border-top: 1px solid var(--color-border);
	background: var(--color-background);
}
.theme-mobile-menu.is-open { display: block; }
.theme-mobile-menu .theme-nav-list, .theme-mobile-nav-list {
	flex-direction: column;
	align-items: flex-start;
	gap: 1.25rem;
	padding: 1.5rem 1.25rem;
	max-height: 80vh;
	overflow-y: auto;
}
.theme-mobile-menu .theme-nav-link { color: var(--color-foreground); font-size: 1rem; font-weight: 500; }
@media (min-width: 1024px) { .theme-mobile-menu { display: none !important; } }

/* Home hero fills viewport under the fixed transparent header (Section 22.7). */
body.theme-no-hero .site-main { padding-top: var(--header-height); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero-section { position: relative; min-height: 100vh; width: 100%; overflow: hidden; }
.hero-section__gradient-1 {
	position: absolute; inset: 0;
	background: linear-gradient(to bottom, oklch(0.22 0.03 55 / 0.55), oklch(0.22 0.03 55 / 0.4), oklch(0.22 0.03 55 / 0.75));
}
.hero-section__gradient-2 {
	position: absolute; inset: 0;
	background: radial-gradient(ellipse at 30% 40%, transparent 0%, oklch(0.22 0.03 55 / 0.3) 70%);
}
.hero-section__content { position: relative; z-index: 10; min-height: 100vh; display: flex; flex-direction: column; }
.hero-section__top { flex: 1; display: flex; align-items: center; }
.hero-section__top .theme-container { padding-top: 6rem; padding-bottom: 4rem; }
@media (min-width: 640px) { .hero-section__top .theme-container { padding-top: 8rem; padding-bottom: 4rem; } }

.hero-section__eyebrow {
	display: flex; align-items: center; gap: 0.75rem;
	font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
	color: var(--color-white);
	margin-bottom: 1.5rem;
	filter: drop-shadow(0 2px 10px rgba(0,0,0,0.55));
}
@media (min-width: 640px) { .hero-section__eyebrow { font-size: 12px; } }
.hero-section__eyebrow-line { height: 1px; width: 2.5rem; background: color-mix(in srgb, var(--color-white) 80%, transparent); }

.hero-section__title {
	color: var(--color-white);
	text-wrap: balance;
	font-size: clamp(2.4rem, 7vw, 6.5rem);
	line-height: 0.98;
	letter-spacing: -0.02em;
	filter: drop-shadow(0 6px 30px rgba(0,0,0,0.55));
}
.hero-section__title-em { font-style: italic; }

.hero-section__subtitle {
	margin-top: 2rem; max-width: 36rem;
	color: var(--color-white);
	font-size: 1rem; line-height: 1.65;
	filter: drop-shadow(0 3px 16px rgba(0,0,0,0.5));
}
@media (min-width: 640px) { .hero-section__subtitle { font-size: 1.125rem; } }

.hero-section__ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-section__stats-bar { border-top: 1px solid color-mix(in srgb, var(--color-white) 20%, transparent); background: rgba(0,0,0,0.1); }
.hero-section__stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 1.5rem 0; }
@media (min-width: 768px) { .hero-section__stats-grid { grid-template-columns: repeat(4, 1fr); } }
.hero-section__stat-value { font-family: var(--font-display); font-size: 1.875rem; color: var(--color-white); filter: drop-shadow(0 2px 10px rgba(0,0,0,0.45)); }
@media (min-width: 640px) { .hero-section__stat-value { font-size: 2.25rem; } }
.hero-section__stat-label { font-size: 12px; color: color-mix(in srgb, var(--color-white) 90%, transparent); margin-top: 0.25rem; }
@media (min-width: 640px) { .hero-section__stat-label { font-size: 13px; } }

/* ==========================================================================
   Section heading scale — per-section, not global (Section 2.2.5)
   ========================================================================== */
.section-heading { line-height: 0.95; letter-spacing: -0.02em; }

.about-section { padding: 6rem 0; }
@media (min-width: 640px) { .about-section { padding: 9rem 0; } }
.about-section__eyebrow { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 70%, transparent); margin-bottom: 1.5rem; }
.about-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: 6fr 6fr; gap: 4rem; } }
.about-section__col-image, .about-section__col-text { display: flex; flex-direction: column; height: 100%; }
.about-section__heading { font-size: 3rem; }
@media (min-width: 640px) { .about-section__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .about-section__heading { font-size: 3.5rem; } }
.about-section__image-wrap { margin-top: 2.5rem; flex: 1; min-height: 0; border-radius: 0.25rem; overflow: hidden; box-shadow: 0 20px 50px -15px rgba(0,0,0,0.25); position: relative; aspect-ratio: 3/5; }
@media (min-width: 1024px) { .about-section__image-wrap { aspect-ratio: auto; } }
.about-section__col-text { justify-content: space-between; }
.about-section__p1 { font-size: 1.125rem; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
@media (min-width: 640px) { .about-section__p1 { font-size: 1.25rem; } }
.about-section__p2 { font-size: 1rem; line-height: 1.7; color: var(--color-muted-foreground); margin-top: 1.5rem; }
@media (min-width: 640px) { .about-section__p2 { font-size: 1.125rem; } }
.about-section__features { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .about-section__features { grid-template-columns: 1fr 1fr; gap: 2.5rem 2.5rem; } }
.about-section__feature { border-top: 1px solid var(--color-border); padding-top: 1rem; }
.about-section__feature h3 { font-size: 1.125rem; color: var(--color-primary); }
.about-section__feature p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.6; }

/* ==========================================================================
   Services
   ========================================================================== */
.services-section { padding: 6rem 0; background: var(--color-primary); color: var(--color-button-text); }
@media (min-width: 640px) { .services-section { padding: 9rem 0; } }
.services-section__header { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
@media (min-width: 1024px) { .services-section__header { grid-template-columns: repeat(12, 1fr); margin-bottom: 5rem; } }
@media (min-width: 1024px) { .services-section__header-main { grid-column: span 7; } }
@media (min-width: 1024px) { .services-section__header-aside { grid-column: span 5; padding-top: 1.5rem; } }
.services-section__eyebrow { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: color-mix(in srgb, var(--color-white) 80%, transparent); margin-bottom: 1.25rem; }
.services-section__heading { font-size: 3rem; }
@media (min-width: 640px) { .services-section__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .services-section__heading { font-size: 6rem; } }
.services-section__header-aside p { font-size: 1rem; line-height: 1.6; color: color-mix(in srgb, var(--color-white) 85%, transparent); }
@media (min-width: 640px) { .services-section__header-aside p { font-size: 1.125rem; } }

.services-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .services-section__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .services-section__grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }

.offering-card {
	position: relative;
	display: flex; flex-direction: column; height: 100%;
	border-radius: 0.75rem;
	background: var(--color-background);
	border: 1px solid color-mix(in srgb, var(--color-white) 40%, transparent);
	box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15);
	overflow: hidden;
	transition: transform .3s ease, box-shadow .3s ease;
}
.offering-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -15px rgba(0,0,0,0.3); }
.offering-card__top-bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--color-accent), var(--color-primary), color-mix(in srgb, var(--color-accent) 60%, transparent)); }
.offering-card__inner { position: relative; padding: 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
@media (min-width: 640px) { .offering-card__inner { padding: 1.75rem; } }
.offering-card__head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }
.offering-card__number { font-family: var(--font-display); font-size: 1.5rem; color: color-mix(in srgb, var(--color-primary) 30%, transparent); }
.offering-card:hover .offering-card__number { color: color-mix(in srgb, var(--color-primary) 50%, transparent); }
.offering-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 999px; background: color-mix(in srgb, var(--color-primary) 10%, transparent); color: var(--color-primary); transition: all .3s ease; }
.offering-card:hover .offering-card__icon { background: var(--color-primary); color: var(--color-button-text); transform: scale(1.1); }
.offering-card__title { font-size: 1.4rem; line-height: 1.15; letter-spacing: -0.02em; color: var(--color-primary); margin-bottom: 0.75rem; }
@media (min-width: 640px) { .offering-card__title { font-size: 1.65rem; } }
.offering-card__body { font-size: 0.875rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); flex: 1; }
.offering-card__cta-wrap { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--color-border); }
.offering-card__cta { display: inline-flex; width: 100%; align-items: center; justify-content: center; padding: 0.75rem 1.25rem; border-radius: 999px; background: var(--color-primary); color: var(--color-button-text); font-size: 0.875rem; font-weight: 500; }
.offering-card__cta:hover { opacity: 0.9; }

/* ==========================================================================
   Owner
   ========================================================================== */
.owner-section { padding: 5rem 0; min-height: calc(100dvh - 4rem); display: flex; align-items: center; }
@media (min-width: 1024px) { .owner-section { padding: 7rem 0; min-height: calc(100dvh - 4.5rem); } }
.owner-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: flex-start; width: 100%; }
@media (min-width: 1024px) { .owner-section__grid { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }
.owner-section__photo-col { display: flex; flex-direction: column; }
@media (min-width: 1024px) { .owner-section__photo-col { grid-column: span 5; } }
.owner-section__photo-wrap { position: relative; aspect-ratio: 8/13; }
.owner-section__photo-wrap img { border-radius: 0.25rem; box-shadow: 0 25px 60px -20px rgba(0,0,0,0.35); }
.owner-section__photo-card { position: absolute; bottom: -1.5rem; left: 1rem; background: var(--color-background); border: 1px solid var(--color-border); padding: 1rem 1.25rem; border-radius: 0.25rem; box-shadow: 0 10px 30px rgba(0,0,0,0.15); max-width: 80%; z-index: 10; }
@media (min-width: 640px) { .owner-section__photo-card { left: -2rem; } }
.owner-section__photo-card-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-primary); }
.owner-section__photo-card-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.owner-section__text-col { display: flex; flex-direction: column; height: 100%; }
@media (min-width: 1024px) { .owner-section__text-col { grid-column: span 7; padding-top: 0.5rem; } }
.owner-section__eyebrow { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 70%, transparent); margin-bottom: 1.25rem; }
.owner-section__heading { font-size: 3rem; }
@media (min-width: 640px) { .owner-section__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .owner-section__heading { font-size: 4.5rem; } }
.owner-section__body-wrap { flex: 1; min-height: 0; display: flex; flex-direction: column; justify-content: flex-end; margin-top: 1.5rem; }
.owner-section__paragraphs { display: flex; flex-direction: column; gap: 1.25rem; font-size: 1rem; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
@media (min-width: 640px) { .owner-section__paragraphs { font-size: 1.125rem; } }
.owner-section__quote { color: var(--color-primary); font-family: var(--font-display); font-size: 1.5rem; font-style: italic; line-height: 1.3; }
@media (min-width: 640px) { .owner-section__quote { font-size: 1.875rem; } }
.owner-section__stats { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--color-border); }
@media (min-width: 640px) { .owner-section__stats { grid-template-columns: repeat(3, 1fr); } }
.owner-section__stat-value { font-family: var(--font-display); font-size: 1.875rem; color: var(--color-primary); }
.owner-section__stat-label { font-size: 0.875rem; color: var(--color-muted-foreground); }

/* ==========================================================================
   Approach
   ========================================================================== */
.approach-section { padding: 6rem 0; background: var(--color-secondary); }
@media (min-width: 640px) { .approach-section { padding: 9rem 0; } }
.approach-section__header { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 1024px) { .approach-section__header { grid-template-columns: repeat(12, 1fr); } }
@media (min-width: 1024px) { .approach-section__header-main { grid-column: span 7; } }
@media (min-width: 1024px) { .approach-section__header-aside { grid-column: span 5; padding-top: 1rem; } }
.approach-section__eyebrow { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 70%, transparent); margin-bottom: 1.25rem; }
.approach-section__heading { font-size: 3rem; }
@media (min-width: 640px) { .approach-section__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .approach-section__heading { font-size: 4.5rem; } }
.approach-section__header-aside p { font-size: 1rem; line-height: 1.6; color: var(--color-muted-foreground); }
@media (min-width: 640px) { .approach-section__header-aside p { font-size: 1.125rem; } }

.approach-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.approach-tab-btn {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.625rem 1.25rem; border-radius: 999px;
	font-size: 0.875rem; border: 1px solid var(--color-border);
	background: var(--color-background); color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	cursor: pointer; transition: all .2s ease;
}
.approach-tab-btn:hover { border-color: color-mix(in srgb, var(--color-primary) 60%, transparent); color: var(--color-primary); }
.approach-tab-btn.is-active { background: var(--color-primary); color: var(--color-button-text); border-color: var(--color-primary); box-shadow: 0 1px 2px rgba(0,0,0,0.08); }

.approach-panel { position: relative; }
.approach-panel__content {
	display: none;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	background: var(--color-background);
	border-radius: 1rem;
	padding: 1.75rem;
	border: 1px solid var(--color-border);
	box-shadow: 0 1px 2px rgba(0,0,0,0.04);
	align-items: stretch;
}
.approach-panel__content.is-active { display: grid; }
@media (min-width: 640px) { .approach-panel__content { padding: 2.5rem; } }
@media (min-width: 1024px) { .approach-panel__content.is-active { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.approach-panel__col-approach { display: flex; flex-direction: column; }
@media (min-width: 1024px) { .approach-panel__col-approach { border-left: 1px solid var(--color-border); padding-left: 2.5rem; } }
.approach-panel__tab-title { display: flex; align-items: center; gap: 0.75rem; color: var(--color-primary); }
.approach-panel__tab-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; background: color-mix(in srgb, var(--color-primary) 10%, transparent); }
.approach-panel__tab-title h3 { font-size: 1.5rem; }
@media (min-width: 640px) { .approach-panel__tab-title h3 { font-size: 1.875rem; } }
.approach-panel__label { margin-top: 1rem; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-muted-foreground); }
.approach-panel__symptom-list { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
.approach-panel__symptom-list li { display: flex; gap: 0.75rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.6; }
@media (min-width: 640px) { .approach-panel__symptom-list li { font-size: 1rem; } }
.approach-panel__symptom-list li::before { content: ""; margin-top: 0.5rem; height: 6px; width: 6px; border-radius: 999px; background: color-mix(in srgb, var(--color-primary) 60%, transparent); flex-shrink: 0; }
.approach-panel__approach-text { margin-top: 0.75rem; font-size: 1rem; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
@media (min-width: 640px) { .approach-panel__approach-text { font-size: 1.125rem; } }
.approach-panel__pills { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.approach-panel__pill { padding: 0.25rem 0.75rem; border-radius: 999px; background: color-mix(in srgb, var(--color-primary) 10%, transparent); color: var(--color-primary); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.approach-panel__cta { margin-top: 2rem; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-section { position: relative; padding: 4rem 0 5rem; background: var(--color-foreground); color: var(--color-white); overflow: hidden; }
@media (min-width: 640px) { .pricing-section { padding: 5rem 0; } }
.pricing-section__glow { position: absolute; inset: 0; pointer-events: none; opacity: 0.3; }
.pricing-section__glow::before { content: ""; position: absolute; top: 0; right: 0; width: 60rem; height: 60rem; background: color-mix(in srgb, var(--color-white) 3%, transparent); border-radius: 999px; filter: blur(60px); transform: translate(33%, -50%); }
.pricing-section__inner { position: relative; }
.pricing-section__header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .pricing-section__header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.pricing-section__header-main { max-width: 42rem; }
.pricing-section__eyebrow { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: color-mix(in srgb, var(--color-white) 70%, transparent); margin-bottom: 0.75rem; }
.pricing-section__heading { font-size: 2.25rem; }
@media (min-width: 640px) { .pricing-section__heading { font-size: 3rem; } }
.pricing-section__intro { margin-top: 1rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-white) 75%, transparent); line-height: 1.6; }
@media (min-width: 640px) { .pricing-section__intro { font-size: 1rem; } }

.pricing-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .pricing-section__grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { display: flex; flex-direction: column; height: 100%; border-radius: 0.5rem; border: 1px solid color-mix(in srgb, var(--color-white) 10%, transparent); background: color-mix(in srgb, var(--color-white) 4%, transparent); padding: 1.5rem; }
.pricing-card__heading { font-size: 1.25rem; color: var(--color-white); }
@media (min-width: 640px) { .pricing-card__heading { font-size: 1.5rem; } }
.pricing-card__note { margin-top: 0.5rem; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 60%, var(--color-white)); line-height: 1.5; }
.pricing-card__tiers { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.pricing-card__tier { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; border-top: 1px solid color-mix(in srgb, var(--color-white) 10%, transparent); padding-top: 0.75rem; }
.pricing-card__tier-text { min-width: 0; }
.pricing-card__tier-title { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, var(--color-white)); }
.pricing-card__tier-body { font-size: 12px; color: color-mix(in srgb, var(--color-white) 55%, transparent); margin-top: 0.25rem; line-height: 1.4; }
.pricing-card__tier-price { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-white); flex-shrink: 0; }

/* ==========================================================================
   Resources section + Product cards (shared across shop/archive/related)
   ========================================================================== */
.resources-section, .theme-shop-archive { padding: 6rem 0; background: var(--color-secondary); }
@media (min-width: 640px) { .resources-section { padding: 9rem 0; } }
.theme-shop-archive { padding-top: calc(var(--header-height) + 3rem); }
.resources-section__header, .services-section__header { }
.resources-section__header { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3.5rem; }
@media (min-width: 1024px) { .resources-section__header { grid-template-columns: repeat(12, 1fr); } }
@media (min-width: 1024px) { .resources-section__header-main { grid-column: span 7; } }
@media (min-width: 1024px) { .resources-section__header-aside { grid-column: span 5; padding-top: 1rem; } }
.resources-section__eyebrow { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 70%, transparent); margin-bottom: 1.25rem; }
.resources-section__heading { font-size: 3rem; }
@media (min-width: 640px) { .resources-section__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .resources-section__heading { font-size: 4.5rem; } }
.resources-section__header-aside p { font-size: 1rem; line-height: 1.6; color: var(--color-muted-foreground); }
@media (min-width: 640px) { .resources-section__header-aside p { font-size: 1.125rem; } }

.theme-product-grid, .theme-shop-archive__grid, .related-products-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.25rem;
	align-items: stretch;
}
@media (min-width: 640px) {
	.theme-product-grid, .theme-shop-archive__grid, .related-products-section__grid {
		grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
	}
}
@media (min-width: 640px) { .resources-section__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .resources-section__grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.resources-section__grid .theme-product-card-wrap--extra { display: none; }
.resources-section__grid.is-expanded .theme-product-card-wrap--extra { display: flex; }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card {
	display: flex; flex-direction: column; height: 100%;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 0.75rem;
	overflow: hidden;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.theme-product-card:hover { transform: translateY(-6px); box-shadow: 0 25px 60px -25px rgba(0,0,0,0.18); border-color: color-mix(in srgb, var(--color-primary) 30%, transparent); }

.theme-product-card__media {
	position: relative;
	aspect-ratio: 16/10;
	display: flex; align-items: center; justify-content: center;
	overflow: hidden;
}
.theme-product-card__media-icon { color: color-mix(in srgb, var(--color-white) 90%, transparent); transition: transform .5s ease; }
.theme-product-card:hover .theme-product-card__media-icon { transform: scale(1.1); }
.theme-product-card__media--workbook   { background: linear-gradient(to bottom right, oklch(0.75 0.06 60), oklch(0.55 0.08 35)); }
.theme-product-card__media--toolkit    { background: linear-gradient(to bottom right, oklch(0.78 0.05 180), oklch(0.5 0.08 220)); }
.theme-product-card__media--program    { background: linear-gradient(to bottom right, oklch(0.8 0.06 90), oklch(0.55 0.09 50)); }
.theme-product-card__media--audio      { background: linear-gradient(to bottom right, oklch(0.78 0.06 320), oklch(0.5 0.09 280)); }
.theme-product-card__media--free-guide { background: linear-gradient(to bottom right, oklch(0.82 0.05 140), oklch(0.55 0.08 160)); }
.theme-product-card__media--default    { background: linear-gradient(to bottom right, color-mix(in srgb, var(--color-primary) 60%, transparent), var(--color-primary)); }

.theme-product-card__badge {
	position: absolute;
	padding: 0.25rem 0.6rem;
	font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
	border-radius: 999px; font-weight: 500;
}
.theme-product-card__badge--cat { top: 0.75rem; left: 0.75rem; background: color-mix(in srgb, var(--color-white) 90%, transparent); color: var(--color-primary); }
.theme-product-card__badge--free { top: 0.75rem; right: 0.75rem; background: var(--color-primary); color: var(--color-button-text); }
.theme-product-card__badge--soldout { bottom: 0.75rem; right: 0.75rem; background: var(--color-destructive); color: var(--color-white); }

.theme-product-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.theme-product-card__title { font-size: 1.25rem; line-height: 1.2; color: var(--color-primary); }
@media (min-width: 640px) { .theme-product-card__title { font-size: 1.5rem; } }
.theme-product-card__tagline { margin-top: 0.75rem; font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.6; flex: 1; }
.theme-product-card__footer { margin-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--color-border); padding-top: 1rem; }
.theme-product-card__price { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-foreground); }
.theme-product-card__price .woocommerce-Price-amount { font-family: var(--font-display); }
.theme-product-card__view { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-primary); transition: transform .2s ease; }
.theme-product-card:hover .theme-product-card__view { transform: translateX(3px); }

.resources-section__more-wrap { margin-top: 3rem; display: flex; justify-content: center; }
.theme-shop-archive__empty { text-align: center; padding: 4rem 0; color: var(--color-muted-foreground); }

/* ==========================================================================
   Insights (Instagram)
   ========================================================================== */
.insights-section { padding: 6rem 0; }
@media (min-width: 640px) { .insights-section { padding: 9rem 0; } }
.insights-section__header { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3.5rem; }
@media (min-width: 1024px) { .insights-section__header { grid-template-columns: repeat(12, 1fr); } }
@media (min-width: 1024px) { .insights-section__header-main { grid-column: span 7; } }
.insights-section__header-aside { display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; }
@media (min-width: 1024px) { .insights-section__header-aside { grid-column: span 5; padding-top: 1rem; } }
.insights-section__eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 70%, transparent); margin-bottom: 1.25rem; }
.insights-section__heading { font-size: 3rem; }
@media (min-width: 640px) { .insights-section__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .insights-section__heading { font-size: 4.5rem; } }
.insights-section__header-aside p { font-size: 1rem; line-height: 1.6; color: var(--color-muted-foreground); }
@media (min-width: 640px) { .insights-section__header-aside p { font-size: 1.125rem; } }
.insights-section__header-aside .theme-btn-outline-pill { align-self: flex-start; }

.insights-section__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .insights-section__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .insights-section__grid { grid-template-columns: repeat(6, 1fr); } }
.insights-tile { position: relative; display: block; aspect-ratio: 1/1; overflow: hidden; border-radius: 0.5rem; background: var(--color-secondary); }
.insights-tile img { transition: transform .5s ease; }
.insights-tile:hover img { transform: scale(1.05); }
.insights-tile__overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 0.75rem; background: color-mix(in srgb, var(--color-primary) 0%, transparent); transition: background-color .3s ease; }
.insights-tile:hover .insights-tile__overlay { background: color-mix(in srgb, var(--color-primary) 60%, transparent); }
.insights-tile__overlay p { color: var(--color-white); font-size: 12px; line-height: 1.4; opacity: 0; transition: opacity .3s ease; }
.insights-tile:hover .insights-tile__overlay p { opacity: 1; }
.insights-tile__icon { position: absolute; top: 0.5rem; right: 0.5rem; height: 28px; width: 28px; border-radius: 999px; background: color-mix(in srgb, var(--color-white) 90%, transparent); color: var(--color-primary); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s ease; }
.insights-tile:hover .insights-tile__icon { opacity: 1; }

/* ==========================================================================
   Speaking
   ========================================================================== */
.speaking-section { position: relative; width: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; min-height: 80vh; }
.speaking-section__overlay-1 { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-primary) 55%, transparent); }
.speaking-section__overlay-2 { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-primary) 70%, transparent), color-mix(in srgb, var(--color-primary) 30%, transparent), color-mix(in srgb, var(--color-primary) 40%, transparent)); }
.speaking-section__content { position: relative; z-index: 10; max-width: 56rem; margin: 0 auto; padding-top: 6rem; padding-bottom: 6rem; }
@media (min-width: 640px) { .speaking-section__content { padding-top: 8rem; padding-bottom: 8rem; } }
.speaking-section__eyebrow { font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase; color: color-mix(in srgb, var(--color-white) 90%, transparent); margin-bottom: 1.25rem; }
.speaking-section__heading { color: var(--color-white); text-wrap: balance; font-size: 2.25rem; line-height: 0.95; letter-spacing: -0.02em; }
@media (min-width: 640px) { .speaking-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .speaking-section__heading { font-size: 3.75rem; } }
.speaking-section__paragraph { margin-top: 1.25rem; max-width: 36rem; margin-left: auto; margin-right: auto; color: var(--color-white); font-size: 1rem; line-height: 1.6; }
@media (min-width: 640px) { .speaking-section__paragraph { font-size: 1.125rem; } }
.speaking-section__content .theme-btn-hero-primary { margin-top: 2rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { padding: 6rem 0; }
@media (min-width: 640px) { .faq-section { padding: 9rem 0; } }
.faq-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: repeat(12, 1fr); } }
@media (min-width: 1024px) { .faq-section__col-header { grid-column: span 4; position: sticky; top: 8rem; align-self: flex-start; } }
@media (min-width: 1024px) { .faq-section__col-list { grid-column: span 8; } }
.faq-section__eyebrow { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 70%, transparent); margin-bottom: 1.25rem; }
.faq-section__heading { font-size: 3rem; }
@media (min-width: 640px) { .faq-section__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .faq-section__heading { font-size: 3.5rem; } }
.faq-section__intro { margin-top: 1.5rem; font-size: 1rem; line-height: 1.6; color: var(--color-muted-foreground); }
@media (min-width: 640px) { .faq-section__intro { font-size: 1.125rem; } }

.faq-list { border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:last-child { border-bottom: none; }
.faq-item__question { width: 100%; text-align: left; padding: 1.5rem 0; display: flex; align-items: flex-start; gap: 1.5rem; background: none; border: none; cursor: pointer; }
@media (min-width: 640px) { .faq-item__question { padding: 1.75rem 0; } }
.faq-item__index { font-family: var(--font-display); font-size: 1.25rem; color: color-mix(in srgb, var(--color-muted-foreground) 70%, transparent); flex-shrink: 0; width: 2rem; }
.faq-item__text { flex: 1; min-width: 0; }
.faq-item__q { display: block; font-size: 1.25rem; color: var(--color-primary); }
@media (min-width: 640px) { .faq-item__q { font-size: 1.5rem; } }
.faq-item__a-wrap { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .3s ease, opacity .3s ease, margin-top .3s ease; }
.faq-item.is-open .faq-item__a-wrap { grid-template-rows: 1fr; opacity: 1; margin-top: 0.75rem; }
.faq-item__a-wrap > .faq-item__a { overflow: hidden; display: block; }
.faq-item__a { font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.6; }
@media (min-width: 640px) { .faq-item__a { font-size: 1rem; } }
.faq-item__icon { flex-shrink: 0; margin-top: 0.5rem; height: 24px; width: 24px; border-radius: 999px; border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; transition: transform .2s ease, background-color .2s ease; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); background: var(--color-primary); color: var(--color-button-text); border-color: var(--color-primary); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-section { padding: 6rem 0; background: var(--color-primary); color: var(--color-white); overflow: hidden; }
@media (min-width: 640px) { .contact-section { padding: 9rem 0; } }
.contact-section__eyebrow { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: color-mix(in srgb, var(--color-white) 80%, transparent); margin-bottom: 1.5rem; }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }
@media (min-width: 1024px) { .contact-section__col-info { grid-column: span 4; } }
.contact-section__heading { font-size: 2.25rem; line-height: 0.92; letter-spacing: -0.02em; }
@media (min-width: 640px) { .contact-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-section__heading { font-size: 3.5rem; } }
.contact-section__intro { margin-top: 1.5rem; max-width: 24rem; color: color-mix(in srgb, var(--color-white) 75%, transparent); font-size: 0.875rem; line-height: 1.6; }
@media (min-width: 640px) { .contact-section__intro { font-size: 1rem; } }
.contact-section__details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-section__detail { border-top: 1px solid color-mix(in srgb, var(--color-white) 20%, transparent); padding-top: 1rem; }
.contact-section__detail-label { display: flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: color-mix(in srgb, var(--color-white) 60%, transparent); }
.contact-section__detail-value { display: block; margin-top: 0.375rem; font-family: var(--font-display); font-size: 1.125rem; color: var(--color-white); word-break: break-all; overflow-wrap: break-word; }
@media (min-width: 640px) { .contact-section__detail-value { font-size: 1.25rem; } }
.contact-section__detail-value:hover { color: color-mix(in srgb, var(--color-white) 80%, transparent); }
.contact-section__detail-value--muted { color: color-mix(in srgb, var(--color-white) 90%, transparent); font-size: 1rem; line-height: 1.4; }
@media (min-width: 640px) { .contact-section__detail-value--muted { font-size: 1.125rem; } }
.contact-section__social { margin-top: 0.5rem; display: flex; align-items: center; gap: 0.75rem; }
.contact-section__social a { display: inline-flex; align-items: center; justify-content: center; height: 36px; width: 36px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-white) 30%, transparent); color: color-mix(in srgb, var(--color-white) 80%, transparent); }
.contact-section__social a:hover { color: var(--color-white); border-color: var(--color-white); }

.contact-section__col-form { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .contact-section__col-form { grid-column: span 8; } }
.contact-form-card { border: 1px solid color-mix(in srgb, var(--color-white) 15%, transparent); border-radius: 0.75rem; padding: 1.5rem; background: color-mix(in srgb, var(--color-white) 4%, transparent); flex: 1; display: flex; flex-direction: column; }
@media (min-width: 640px) { .contact-form-card { padding: 2rem; } }
.contact-form { flex: 1; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .contact-form__row { grid-template-columns: 1fr 1fr; } }
.contact-form__field-grow { flex: 1; display: flex; flex-direction: column; }
.contact-form__label { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-white) 60%, transparent); margin-bottom: 0.5rem; }
.contact-form__input {
	width: 100%; border-radius: 0.375rem; border: 1px solid color-mix(in srgb, var(--color-white) 20%, transparent);
	background: color-mix(in srgb, var(--color-white) 5%, transparent);
	padding: 0.875rem 1rem; color: var(--color-white); font-size: 0.875rem;
	font-family: var(--font-body);
}
.contact-form__input::placeholder { color: color-mix(in srgb, var(--color-white) 40%, transparent); }
.contact-form__input:focus { outline: none; box-shadow: 0 0 0 1px var(--color-white); border-color: var(--color-white); }
.contact-form__textarea { resize: none; flex: 1; }
.contact-form__select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff66' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.contact-form__submit {
	width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	padding: 0.875rem 2rem; border-radius: 999px; background: var(--color-white); color: var(--color-primary);
	font-size: 0.875rem; font-weight: 500; border: none; cursor: pointer; transition: transform .2s ease;
	box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}
@media (min-width: 640px) { .contact-form__submit { width: auto; } }
.contact-form__submit:hover { transform: translateY(-2px); }
.contact-form-success { display: none; flex: 1; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 3rem 1rem; }
.contact-form-success:not([hidden]) { display: flex; }
.contact-form-success__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 999px; background: color-mix(in srgb, var(--color-white) 20%, transparent); color: var(--color-white); margin-bottom: 1.5rem; }
.contact-form-success h3 { font-size: 1.5rem; color: var(--color-white); margin-bottom: 0.75rem; }
.contact-form-success p { color: color-mix(in srgb, var(--color-white) 70%, transparent); font-size: 0.875rem; line-height: 1.6; max-width: 24rem; }

.contact-cta-card { border: 1px solid color-mix(in srgb, var(--color-white) 15%, transparent); border-radius: 0.75rem; padding: 1.5rem; background: color-mix(in srgb, var(--color-white) 4%, transparent); display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .contact-cta-card { flex-direction: row; align-items: center; justify-content: space-between; padding: 1.75rem; } }
.contact-cta-card__small { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: color-mix(in srgb, var(--color-white) 60%, transparent); margin-bottom: 0.25rem; }
.contact-cta-card__heading { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-white); }
@media (min-width: 640px) { .contact-cta-card__heading { font-size: 1.5rem; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: color-mix(in srgb, var(--color-background) 85%, transparent); backdrop-filter: blur(20px); color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.site-footer__inner { max-width: var(--container-max); margin: 0 auto; padding: 3.5rem 1.25rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .site-footer__inner { padding: 3.5rem 2rem; } }
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: repeat(3, 1fr); gap: 4rem; } }
.site-footer__tagline { margin-top: 1rem; font-size: 13px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); max-width: 20rem; }
.site-footer__heading { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); margin-bottom: 1rem; }
.theme-footer-nav-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.375rem 1.5rem; }
.theme-footer-nav-list a { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-footer-nav-list a:hover { color: var(--color-foreground); }
.site-footer__contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__contact-list li a { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.site-footer__contact-list li a:hover { color: var(--color-foreground); }
.site-footer__bottom { border-top: 1px solid color-mix(in srgb, var(--color-border) 40%, transparent); }
.site-footer__bottom > div, .site-footer__bottom { max-width: var(--container-max); margin: 0 auto; padding: 1.25rem 1.25rem; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; padding: 1.25rem 2rem; } }
.site-footer__bottom a { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); text-decoration: none; }
.site-footer__bottom a:hover { color: var(--color-foreground); }

/* ==========================================================================
   Cart Drawer (Section 12)
   ========================================================================== */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); z-index: 60; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }
#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem;
	background: var(--color-background); z-index: 70; box-shadow: -10px 0 40px rgba(0,0,0,0.2);
	display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform .3s ease;
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__header h2 { font-size: 1.25rem; color: var(--color-primary); }
.theme-cart-drawer__close { background: none; border: none; padding: 0.25rem; cursor: pointer; color: var(--color-foreground); }
.theme-cart-drawer__close:hover { opacity: 0.6; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 1rem; }
.theme-cart-drawer__empty svg { color: var(--color-muted-foreground); }
.theme-cart-drawer__empty p { color: var(--color-muted-foreground); }
.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-item { display: flex; gap: 1rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-item:last-child { border-bottom: none; padding-bottom: 0; }
.theme-cart-item__thumb img { width: 64px; height: 64px; object-fit: cover; border-radius: 0.5rem; }
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 0.875rem; font-weight: 500; display: block; }
.theme-cart-item__name:hover { opacity: 0.7; }
.theme-cart-item__price { font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; background: none; border: none; cursor: pointer; border-radius: 0.25rem; display: inline-flex; }
.theme-cart-item__qty-btn:hover { background: var(--color-secondary); }
.theme-cart-item__qty-value { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 0.75rem; color: var(--color-muted-foreground); background: none; border: none; cursor: pointer; }
.theme-cart-item__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-drawer__note { font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout-btn { width: 100%; justify-content: center; }

/* Hide WooCommerce's own "View cart" link after AJAX add (Section 11.4.2) */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

/* ==========================================================================
   Single Product (Section 11)
   ========================================================================== */
.single-product-page { padding-top: calc(var(--header-height) + 1.5rem); padding-bottom: 5rem; }
.single-product__back-wrap { padding: 1rem 0; }
.single-product__back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); }
.single-product__back-link:hover { color: var(--color-foreground); }
.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; padding-bottom: 3rem; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 1fr 1fr; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery__placeholder {
	position: relative; aspect-ratio: 4/5; border-radius: 1rem; overflow: hidden;
	display: flex; align-items: center; justify-content: center;
}
.theme-product-gallery__placeholder-icon { color: color-mix(in srgb, var(--color-white) 90%, transparent); }
.theme-product-gallery__cat-badge { position: absolute; top: 1.25rem; left: 1.25rem; padding: 0.375rem 0.9rem; font-size: 11px; }
.theme-product-gallery__main { position: relative; aspect-ratio: 4/5; border-radius: 1rem; overflow: hidden; }
.theme-product-thumbnails { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb { width: 64px; height: 64px; border-radius: 0.5rem; overflow: hidden; border: 2px solid transparent; padding: 0; cursor: pointer; }
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.theme-product-info__eyebrow { font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 70%, transparent); }
.product-title, .theme-product-info__title { font-family: var(--font-body); font-weight: 600; font-size: 2.25rem; line-height: 0.95; margin-top: 0.75rem; color: var(--color-primary); }
@media (min-width: 640px) { .theme-product-info__title { font-size: 3rem; } }
.theme-product-info__tagline { margin-top: 1rem; font-size: 1.125rem; color: var(--color-muted-foreground); }
.theme-product-info__price { margin-top: 1.5rem; font-family: var(--font-display); font-size: 1.875rem; color: var(--color-foreground); }
.theme-product-info__price .woocommerce-Price-amount { font-family: var(--font-display); }
.theme-product-info__stock--out { color: var(--color-destructive); font-weight: 500; margin-top: 0.5rem; }
.theme-product-info__description { margin-top: 2rem; font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.7; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__meta { margin-top: 2rem; display: flex; align-items: center; gap: 1.25rem; font-size: 0.875rem; color: var(--color-muted-foreground); flex-wrap: wrap; }
.theme-product-info__meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.theme-product-info__details { margin-top: 2.5rem; border-top: 1px solid var(--color-border); padding-top: 2rem; }
.theme-product-info__details h3 { font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 70%, transparent); margin-bottom: 1rem; }
.theme-product-info__details ul { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-product-info__details li { display: flex; gap: 0.75rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.theme-product-info__details li::before { content: ""; margin-top: 0.5rem; height: 6px; width: 6px; border-radius: 999px; background: color-mix(in srgb, var(--color-primary) 60%, transparent); flex-shrink: 0; }

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: 999px; overflow: hidden; }
.theme-qty-minus, .theme-qty-plus { padding: 0.75rem 1rem; background: none; border: none; cursor: pointer; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input { width: 48px; text-align: center; border: none; background: none; padding: 0.75rem 0; -moz-appearance: textfield; font-family: var(--font-body); }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-add-to-cart-area { margin-top: 2rem; display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; }
.single_add_to_cart_button.button, .add_to_cart_button.button, a.single_add_to_cart_button, a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
	flex: 1 1 auto;
	min-width: 160px;
}
.single_add_to_cart_button.button:hover, .add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled, .single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled, .add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover, .single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover, .add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
.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; }

.related-products-section { padding: 5rem 0; border-top: 1px solid var(--color-border); }
.related-products-section__heading { font-size: 1.875rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .related-products-section__heading { font-size: 2.25rem; } }
.related-products-section__grid { grid-template-columns: 1fr; }
@media (min-width: 768px) { .related-products-section__grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }

/* WooCommerce notices — scoped visibility (Section 14.1) */
.single-product .woocommerce-message, .single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	max-width: var(--container-max); margin: 1rem auto; padding: 1rem 1.5rem; border-radius: 0.5rem;
	background: var(--color-secondary); color: var(--color-foreground); border-left: 3px solid var(--color-primary);
	list-style: none; font-size: 0.875rem;
}
.woocommerce-error { border-left-color: var(--color-destructive); }

/* ==========================================================================
   404
   ========================================================================== */
.theme-404 { min-height: 70vh; display: flex; align-items: center; }
.theme-404__inner { text-align: center; padding: 6rem 0; }
.theme-404__code { font-size: 4.5rem; color: var(--color-primary); }
.theme-404__title { font-size: 1.5rem; margin-top: 1rem; }
.theme-404__body { margin-top: 0.75rem; color: var(--color-muted-foreground); }
.theme-404__inner .theme-btn-primary { margin-top: 2rem; }

/* ==========================================================================
   Blog single post
   ========================================================================== */
.theme-blog-post { padding-top: calc(var(--header-height) + 1.5rem); }
.theme-blog-post__inner { max-width: 48rem; padding-top: 2.5rem; padding-bottom: 3.5rem; }
.theme-blog-post__tag { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 70%, transparent); margin-bottom: 1rem; }
.theme-blog-post__title { font-size: 2.5rem; line-height: 1.05; color: var(--color-primary); }
@media (min-width: 640px) { .theme-blog-post__title { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-blog-post__title { font-size: 3.75rem; } }
.theme-blog-post__meta { margin-top: 1rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted-foreground); }
.theme-blog-post__cover { margin-top: 2.5rem; overflow: hidden; border-radius: 1rem; background: var(--color-secondary); position: relative; aspect-ratio: 3/2; }
.theme-blog-post__excerpt { margin-top: 2rem; font-size: 1.25rem; font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--color-primary) 80%, transparent); line-height: 1.4; border-left: 2px solid color-mix(in srgb, var(--color-primary) 30%, transparent); padding-left: 1.5rem; }
@media (min-width: 640px) { .theme-blog-post__excerpt { font-size: 1.5rem; } }
.theme-blog-post__body { margin-top: 3rem; font-size: 1rem; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
@media (min-width: 640px) { .theme-blog-post__body { font-size: 1.125rem; } }
.theme-blog-post__body h2 { font-size: 1.5rem; color: var(--color-primary); margin: 3rem 0 0.5rem; }
@media (min-width: 640px) { .theme-blog-post__body h2 { font-size: 1.875rem; } }
.theme-blog-post__body ul { display: flex; flex-direction: column; gap: 0.75rem; padding-left: 0.25rem; }
.theme-blog-post__body li { display: flex; gap: 0.75rem; }
.theme-blog-post__body li::before { content: ""; margin-top: 0.75rem; height: 6px; width: 6px; border-radius: 999px; background: color-mix(in srgb, var(--color-primary) 60%, transparent); flex-shrink: 0; }
.theme-blog-post__body p { margin: 0 0 1rem; }
.theme-blog-post__back { margin-top: 2.5rem; }
.theme-blog-post__back a { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted-foreground); }
.theme-blog-post__back a:hover { color: var(--color-primary); }
.theme-blog-post__footer { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--color-border); }
.theme-blog-post__disclaimer { font-size: 0.875rem; color: var(--color-muted-foreground); font-style: italic; }
.theme-blog-post__footer .theme-btn-primary { margin-top: 2rem; }

/* ==========================================================================
   Generic pages / page-title
   ========================================================================== */
.theme-generic-main { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; }
.page-title { font-size: 2.25rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .page-title { font-size: 3rem; } }

/* ==========================================================================
   WooCommerce Checkout Block (Section 13)
   ========================================================================== */
body.woocommerce-checkout .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wc-block-cart-items { font-family: var(--font-body); color: var(--color-foreground); }

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,
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select {
	font-family: var(--font-body);
	border: 1px solid var(--color-border);
	border-radius: 0.5rem;
	background-color: var(--color-background);
	color: var(--color-foreground);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 1px var(--color-primary);
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: var(--color-muted-foreground); }

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	text-transform: none !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }

body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 0.5rem;
	font-family: var(--font-body);
}

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: var(--checkout-gap);
		align-items: start;
	}
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; }

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary);
	border-radius: var(--card-radius);
	padding: var(--section-padding, 2rem);
}
@media (max-width: 767px) {
	body.woocommerce-checkout .wc-block-checkout__sidebar { padding: 1.5rem; }
}

/* ==========================================================================
   Thank-you page (Section 22.8) & Cart/My Account width parity (13.7)
   ========================================================================== */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem 0; font-size: 1.5rem; color: var(--color-primary); }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; margin: 1.5rem 0; }
body.theme-thankyou-page .woocommerce-order-overview li { border-left: 2px solid var(--color-border); padding-left: 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; }
body.theme-thankyou-page .woocommerce-order-details td,
body.theme-thankyou-page .woocommerce-order-details th { padding: 0.75rem; border-bottom: 1px solid var(--color-border); }
body.theme-thankyou-page .woocommerce-customer-details {
	display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem;
}
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; overflow-wrap: break-word; border: 1px solid var(--color-border); border-radius: 0.5rem; padding: 1rem; }

/* ==========================================================================
   Customizer media control panel styles
   ========================================================================== */
.theme-media-control { display: flex; flex-direction: column; gap: 0.5rem; }
.theme-media-url-input { width: 100%; min-width: 0; box-sizing: border-box; }
.theme-media-preview { max-width: 100%; height: auto; display: block; }
