/* ==========================================================================
   Ascension Alchemy — theme.css
   Fonts, design tokens, layout, components, animations, WooCommerce overrides.
   ========================================================================== */

/* ---- Fonts (Section 2.2 — same mechanism as the original design source) ---- */
@font-face {
	font-family: "Cormorant Garamond";
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url("https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.woff2") format("woff2");
}
@font-face {
	font-family: "Cormorant Garamond";
	font-style: italic;
	font-weight: 300 700;
	font-display: swap;
	src: url("https://fonts.gstatic.com/s/cormorantgaramond/v16/co3RmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.woff2") format("woff2");
}
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2") format("woff2");
}

/* ---- Design tokens ---- */
:root {
	--font-serif: "Cormorant Garamond", ui-serif, Georgia, serif;
	--font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
	--radius: 0.75rem;

	--sand: #e8dfd1;
	--earth: #d7c8b6;
	--charcoal: #1c1b1f;
	--card: #ffffff;
	--muted-foreground: #6b6660;

	--gradient-aura:
		radial-gradient(circle at 20% 30%, rgba(192, 132, 252, 0.18), transparent 55%),
		radial-gradient(circle at 80% 20%, rgba(253, 186, 116, 0.18), transparent 55%),
		radial-gradient(circle at 60% 80%, rgba(249, 168, 212, 0.15), transparent 55%);
	--shadow-soft: 0 20px 60px -30px rgba(28, 27, 31, 0.18);

	--btn-radius: 999px;
	--btn-height: 3rem;
	--btn-padding: 0 1.5rem;
	--btn-font-size: 0.8rem;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0.02em;
	--btn-text-transform: none;
	--btn-icon-padding: 0;
	--card-radius: 1rem;
	--section-padding: 2rem;
	--checkout-gap: 2rem;
	--header-height: 80px;
	--admin-bar-height: 0px;
}

/* WordPress admin bar — offset fixed UI so it does not overlap */
body.admin-bar {
	--admin-bar-height: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
	body.admin-bar {
		--admin-bar-height: var(--wp-admin--admin-bar--height, 46px);
	}
}
body.admin-bar .site-header {
	top: var(--admin-bar-height);
}
body.admin-bar #theme-cart-overlay,
body.admin-bar #theme-booking-overlay {
	top: var(--admin-bar-height);
}
body.admin-bar #theme-cart-drawer {
	top: var(--admin-bar-height);
	height: calc(100% - var(--admin-bar-height));
}
body.admin-bar .theme-dialog {
	top: var(--admin-bar-height);
}

/* ---- Reset ---- */
* {
	box-sizing: border-box;
}
html, body {
	margin: 0;
	padding: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-serif);
	font-weight: inherit;
	font-size: inherit;
	font-weight: 400;
	letter-spacing: -0.01em;
	margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; }

img:not(.cover-img):not(.hero-bg-img):not(.shop-card__image):not(.theme-product-main-image):not(.related-product-card__image) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-bg-img, .shop-card__image, .theme-product-main-image, .related-product-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.theme-container {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 1024px) {
	.theme-container { padding: 0 2.5rem; }
}
.theme-container--narrow { max-width: 56rem; }

/* ---- Reveal animation (Section 2.1) ---- */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	filter: blur(8px);
	transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), filter 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}
body.is-customizer [data-reveal] {
	opacity: 1 !important;
	transform: none !important;
	filter: none !important;
}
@media (prefers-reduced-motion: reduce) {
	[data-reveal] {
		transition: none;
		opacity: 1;
		transform: none;
		filter: none;
	}
}

.theme-eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
	margin-bottom: 1.5rem;
}
.theme-eyebrow--light { color: rgba(255,255,255,0.7); }
.theme-eyebrow-mini {
	font-size: 0.7rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
}
.theme-heading-block { max-width: 48rem; }
.theme-heading-block--center { max-width: 42rem; margin: 0 auto; text-align: center; }
.theme-lead {
	margin-top: 1.5rem;
	font-size: 1rem;
	line-height: 1.65;
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
}
.theme-lead--wide { max-width: 32rem; }
.theme-lead-price {
	font-weight: 500;
	color: var(--color-foreground);
}
@media (min-width: 768px) { .theme-lead { font-size: 1.125rem; } }
.theme-copy { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-copy p {
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	line-height: 1.7;
	font-size: 1rem;
}
@media (min-width: 768px) { .theme-copy p { font-size: 1.125rem; } }
.heading-italic { font-style: italic; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.theme-btn-dark, .theme-btn-light, .theme-btn-outline, .theme-btn-ghost,
.theme-btn-hero-primary, .theme-btn-hero-outline, .theme-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	border-radius: var(--btn-radius);
	height: var(--btn-height);
	padding: var(--btn-padding);
	font-size: var(--btn-font-size);
	letter-spacing: var(--btn-letter-spacing);
	font-weight: var(--btn-font-weight);
	text-transform: var(--btn-text-transform);
	transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}
.theme-btn-dark, .theme-btn-primary {
	background-color: var(--color-primary);
	color: var(--color-button-text);
}
.theme-btn-dark:hover, .theme-btn-primary:hover { opacity: 0.85; }
.theme-btn-light { background-color: #fff; color: var(--color-primary); }
.theme-btn-light:hover { opacity: 0.9; }
.theme-btn-outline {
	border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	background: transparent;
	color: var(--color-foreground);
}
.theme-btn-outline:hover { background-color: var(--color-primary); color: var(--color-button-text); }
.theme-btn-ghost { background: transparent; color: var(--color-foreground); }
.theme-btn-hero-primary { background-color: #fff; color: var(--charcoal); text-transform: none; }
.theme-btn-hero-primary:hover { opacity: 0.9; }
.theme-btn-hero-outline {
	border: 1px solid rgba(255,255,255,0.5);
	color: #fff;
	background: rgba(255,255,255,0.05);
	backdrop-filter: blur(4px);
	text-transform: none;
}
.theme-btn-hero-outline:hover { background: rgba(255,255,255,0.1); }
.theme-btn-small { height: 2.5rem; padding: 0 1rem; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; }
.theme-btn-full { width: 100%; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	transition: all 0.5s ease-out;
}
.site-header__bar {
	transition: all 0.5s ease-out;
}
.site-header.is-solid .site-header__bar {
	background-color: color-mix(in srgb, var(--color-background) 70%, transparent);
	backdrop-filter: blur(24px) saturate(150%);
	border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	box-shadow: 0 4px 30px -12px rgba(28,27,31,0.12);
}
.site-nav {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 3.5rem;
	transition: height 0.5s ease-out;
}
.site-header.is-solid .site-nav { height: 3rem; }
@media (min-width: 768px) {
	.site-nav { padding: 0 2.5rem; height: 4rem; }
	.site-header.is-solid .site-nav { height: 3.5rem; }
}
.site-brand { display: flex; align-items: center; }
.site-logo-img {
	height: var(--logo-height, 56px) !important;
	width: auto !important;
	display: block;
	object-fit: contain;
	transition: height 0.5s ease-out;
}
.site-logo-text { font-family: var(--font-serif); font-size: 1.5rem; color: #fff; }
.site-header.is-solid .site-logo-text { color: var(--color-foreground); }

.site-nav__links { display: none; }
@media (min-width: 768px) { .site-nav__links { display: block; } }
.theme-nav-list { display: flex; align-items: center; gap: 2.5rem; }
.theme-nav-list a {
	font-size: 0.875rem;
	letter-spacing: 0.02em;
	color: rgba(255,255,255,0.8);
	transition: color 0.2s ease;
}
.theme-nav-list a:hover { color: #fff; }
.site-header.is-solid .theme-nav-list a { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.site-header.is-solid .theme-nav-list a:hover { color: var(--color-foreground); }

.site-nav__actions { display: flex; align-items: center; gap: 0.75rem; }
.cart-toggle-btn {
	position: relative;
	width: 2.5rem; height: 2.5rem;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	color: #fff;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.site-header.is-solid .cart-toggle-btn { color: var(--color-foreground); }
.cart-toggle-btn:hover { background-color: rgba(255,255,255,0.1); }
.site-header.is-solid .cart-toggle-btn:hover { background-color: color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.cart-toggle-btn .theme-cart-count {
	position: absolute;
	top: -1px; right: -1px;
	min-width: 18px; height: 18px; padding: 0 4px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background-color: var(--earth);
	color: var(--charcoal);
	font-size: 10px; font-weight: 600;
}
.theme-cart-count:empty { display: none; }

.header-book-btn {
	display: none;
	border-radius: var(--btn-radius);
	padding: 0.6rem 1.5rem;
	font-size: 0.875rem;
	background: #fff;
	color: var(--charcoal);
	transition: background-color 0.2s ease;
}
.site-header.is-solid .header-book-btn { background: var(--color-primary); color: var(--color-button-text); }
@media (min-width: 768px) { .header-book-btn:not(.header-book-btn--mobile) { display: inline-flex; } }
.header-book-btn:hover { opacity: 0.85; }
.header-book-btn--mobile { display: inline-flex; width: 100%; margin-top: 1.25rem; }

.mobile-menu-toggle {
	display: inline-flex; align-items: center; justify-content: center;
	width: 2.5rem; height: 2.5rem;
	color: #fff;
}
.site-header.is-solid .mobile-menu-toggle { color: var(--color-foreground); }
@media (min-width: 768px) { .mobile-menu-toggle { display: none; } }
.mobile-menu-toggle .icon-close { display: none; }
body.mobile-menu-open .mobile-menu-toggle .icon-menu { display: none; }
body.mobile-menu-open .mobile-menu-toggle .icon-close { display: block; }

.mobile-menu {
	display: none;
	overflow: hidden;
	border-top: 1px solid rgba(255,255,255,0.1);
	background: rgba(0,0,0,0.6);
	backdrop-filter: blur(20px);
	padding: 1.5rem 1.5rem;
}
.site-header.is-solid .mobile-menu {
	background-color: color-mix(in srgb, var(--color-background) 96%, transparent);
	backdrop-filter: blur(24px) saturate(150%);
	border-top-color: color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
body.mobile-menu-open .mobile-menu { display: block; }
.mobile-menu .theme-nav-list { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
.mobile-menu .theme-nav-list a {
	font-size: 1rem;
	color: rgba(255,255,255,0.9);
}
.mobile-menu .theme-nav-list a:hover { color: #fff; }
.site-header.is-solid .mobile-menu .theme-nav-list a {
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
}
.site-header.is-solid .mobile-menu .theme-nav-list a:hover {
	color: var(--color-foreground);
}
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-section { position: relative; min-height: 100vh; width: 100%; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; }
.hero-overlay--top { background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.35)); }
.hero-overlay--side { background: linear-gradient(to right, rgba(0,0,0,0.4), transparent 50%, rgba(0,0,0,0.2)); }
.hero-overlay--aura { opacity: 0.3; mix-blend-mode: soft-light; pointer-events: none; background: var(--gradient-aura); }
.hero-content { position: absolute; inset: 4px; z-index: 10; display: flex; align-items: center; justify-content: center; padding: 0 1.5rem; }
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-eyebrow { font-size: 0.625rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(247,244,239,0.75); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .hero-eyebrow { font-size: 0.75rem; } }
.hero-heading { font-size: 3rem; line-height: 1.02; letter-spacing: -0.01em; font-weight: 300; color: #f7f4ef; }
@media (min-width: 768px) { .hero-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-heading { font-size: 4.5rem; } }
.hero-heading-italic { font-style: italic; color: rgba(247,244,239,0.95); }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 2.5rem; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-section { padding: 7rem 0; }
@media (min-width: 768px) { .about-section { padding: 10rem 0; } }
.about-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.about-image-wrap { position: relative; }
.about-image-wrap::before {
	content: "";
	position: absolute;
	inset: -1.5rem;
	border-radius: 1.5rem;
	background: color-mix(in srgb, var(--sand) 60%, transparent);
	filter: blur(24px);
	opacity: 0.7;
	z-index: 0;
}
.about-image {
	position: relative;
	border-radius: 1rem;
	width: 100%;
	height: 520px;
	box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .about-image { height: 640px; } }
.about-section .section-heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .about-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section .section-heading { font-size: 3.75rem; } }

/* Generic section-heading fallback (overridden per-section per Section 2.2.5) */
.section-heading { font-size: 2rem; line-height: 1.05; color: var(--color-foreground); }
.section-heading--light { color: #fff; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-section { position: relative; padding: 7rem 0; background-color: color-mix(in srgb, var(--sand) 40%, transparent); overflow: hidden; }
@media (min-width: 768px) { .services-section { padding: 10rem 0; } }
.services-section::before { content: ""; position: absolute; inset: 0; opacity: 0.5; pointer-events: none; background: var(--gradient-aura); }
.services-section .theme-container { position: relative; }
.services-section .section-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .services-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .services-section .section-heading { font-size: 3.75rem; } }
.services-grid { margin-top: 4rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; margin-top: 5rem; } }
.service-card {
	display: flex; flex-direction: column; height: 100%;
	border-radius: 1.5rem; overflow: hidden;
	background: var(--card);
	border: 1px solid var(--color-border);
	transition: box-shadow 0.7s ease, transform 0.7s ease;
}
.service-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.service-card__image-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.service-card__image { transition: transform 1.4s ease-out; }
.service-card:hover .service-card__image { transform: scale(1.05); }
.service-card__body { padding: 2rem; display: flex; flex-direction: column; flex: 1; }
.service-card__title { font-size: 1.5rem; }
@media (min-width: 768px) { .service-card__title { font-size: 1.75rem; } }
.service-card__text { margin-top: 1rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; flex: 1; }
.service-card__footer { margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.service-card__price { font-size: 0.875rem; letter-spacing: 0.02em; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-section { padding: 6rem 0; }
@media (min-width: 768px) { .pricing-section { padding: 8rem 0; } }
.pricing-section .section-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .pricing-section .section-heading { font-size: 3rem; } }
.pricing-grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.pricing-card {
	height: 100%; border-radius: 1.5rem;
	border: 1px solid var(--color-border);
	background: var(--card);
	padding: 2.5rem;
	display: flex; flex-direction: column;
}
.pricing-card--dark { position: relative; background: var(--charcoal); color: #f7f4ef; overflow: hidden; }
.pricing-card--dark::before { content: ""; position: absolute; inset: 0; opacity: 0.3; pointer-events: none; background: var(--gradient-aura); }
.pricing-card--dark .theme-eyebrow-mini { color: rgba(247,244,239,0.65); }
.pricing-card__top-row { display: flex; align-items: center; justify-content: space-between; position: relative; }
.pricing-card__badge { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; background: rgba(247,244,239,0.15); padding: 0.25rem 0.75rem; border-radius: 999px; }
.pricing-card__price-row { margin-top: 1rem; display: flex; align-items: baseline; gap: 0.5rem; position: relative; }
.pricing-card__price { font-family: var(--font-serif); font-size: 3rem; }
@media (min-width: 768px) { .pricing-card__price { font-size: 3.5rem; } }
.pricing-card__unit { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.pricing-card--dark .pricing-card__unit { color: rgba(247,244,239,0.65); }
.pricing-card__desc { margin-top: 1.5rem; line-height: 1.6; flex: 1; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); position: relative; }
.pricing-card--dark .pricing-card__desc { color: rgba(247,244,239,0.75); }
.pricing-card button { margin-top: 2rem; position: relative; }

/* ==========================================================================
   ABOUT REIKI
   ========================================================================== */
.about-reiki-section { position: relative; padding: 7rem 0; background-color: color-mix(in srgb, var(--sand) 30%, transparent); overflow: hidden; }
@media (min-width: 768px) { .about-reiki-section { padding: 9rem 0; } }
.about-reiki-section::before { content: ""; position: absolute; inset: 0; opacity: 0.4; pointer-events: none; background: var(--gradient-aura); }
.about-reiki-section .theme-container { position: relative; }
.about-reiki-section .section-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .about-reiki-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-reiki-section .section-heading { font-size: 3.75rem; } }
.facts-grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .facts-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.fact-card { height: 100%; border-radius: 1rem; background: var(--card); border: 1px solid var(--color-border); padding: 2rem; }
.fact-card__label { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.fact-card__text { margin-top: 1rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.6; font-size: 0.94rem; }
.aboutreiki-disclaimer { margin-top: 2.5rem; font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 45%, transparent); max-width: 48rem; }

/* ==========================================================================
   BENEFITS STICKY
   ========================================================================== */
.benefits-section { padding: 7rem 0; }
@media (min-width: 768px) { .benefits-section { padding: 9rem 0; } }
.benefits-section .section-heading { font-size: 2.25rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .benefits-section .section-heading { font-size: 3rem; margin-bottom: 6rem; } }
@media (min-width: 1024px) { .benefits-section .section-heading { font-size: 3.75rem; } }
.benefits-layout { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .benefits-layout { grid-template-columns: 1.22fr 1fr; gap: 5rem; } }
.benefits-list { border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.benefit-item { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.benefit-item__toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; text-align: left; }
@media (min-width: 768px) { .benefit-item__toggle { padding: 1.75rem 0; } }
.benefit-item__heading { display: flex; align-items: baseline; gap: 1.25rem; min-width: 0; }
.benefit-item__num { font-family: var(--font-serif); font-style: italic; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 40%, transparent); flex-shrink: 0; }
.benefit-item__title { font-size: 1.25rem; line-height: 1.3; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); transition: color 0.5s ease; }
.benefit-item.is-open .benefit-item__title { color: var(--color-foreground); }
@media (min-width: 768px) { .benefit-item__title { font-size: 1.5rem; } }
@media (min-width: 1024px) { .benefit-item__title { font-size: 1.7rem; } }
.benefit-item__icon {
	flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	display: inline-flex; align-items: center; justify-content: center;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
	transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.benefit-item.is-open .benefit-item__icon { transform: rotate(45deg); }
.benefit-item__content { overflow: hidden; padding-bottom: 1.75rem; padding-left: 2.5rem; padding-right: 0.5rem; }
@media (min-width: 768px) { .benefit-item__content { padding-left: 3.5rem; } }
.benefit-item__desc { font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.7; font-weight: 300; max-width: 32rem; }
@media (min-width: 768px) { .benefit-item__desc { font-size: 1.125rem; } }
.benefit-item__mobile-image { display: block; margin-top: 1.5rem; position: relative; aspect-ratio: 4/3; border-radius: 1rem; overflow: hidden; }
@media (min-width: 1024px) { .benefit-item__mobile-image { display: none; } }

.benefits-sticky-preview { display: none; }
@media (min-width: 1024px) { .benefits-sticky-preview { display: block; position: sticky; top: 110px; } }
.benefits-preview-frame { position: relative; aspect-ratio: 4/5; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 40px 100px -50px rgba(28,27,31,0.35); }
.benefits-preview-img { opacity: 0; transition: opacity 0.9s ease; }
.benefits-preview-img.is-active { opacity: 1; }
.benefits-preview-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,27,31,0.55), rgba(28,27,31,0.1) 60%, transparent); }
.benefits-preview-caption { position: absolute; inset: 0; padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end; color: #f7f4ef; }
.benefits-preview-caption__item { display: none; }
.benefits-preview-caption__item.is-active { display: block; }
.benefits-preview-caption__num { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(247,244,239,0.7); }
.benefits-preview-caption__title { margin-top: 0.75rem; font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; line-height: 1.3; max-width: 20rem; }
@media (min-width: 768px) { .benefits-preview-caption__title { font-size: 1.7rem; } }

/* ==========================================================================
   EXPERIENCE
   ========================================================================== */
.experience-section { position: relative; padding: 8rem 0; overflow: hidden; }
@media (min-width: 768px) { .experience-section { padding: 12rem 0; } }
.experience-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.experience-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.35), rgba(0,0,0,0.5)); }
.experience-content { position: relative; max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.experience-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .experience-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .experience-heading { font-size: 4.5rem; } }
.experience-cta { margin-top: 2.5rem; display: flex; justify-content: center; }

/* ==========================================================================
   SHOP
   ========================================================================== */
.shop-section { padding: 7rem 0; }
@media (min-width: 768px) { .shop-section { padding: 10rem 0; } }
.shop-section .section-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .shop-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-section .section-heading { font-size: 3.75rem; } }
.shop-grid.theme-product-grid { margin-top: 4rem; display: grid; gap: 2rem; align-items: stretch; }
@media (min-width: 640px) { .shop-grid.theme-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .shop-grid.theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.theme-product-card-wrap { display: flex; }
.shop-card {
	display: flex; flex-direction: column; height: 100%; width: 100%;
	border-radius: 1rem; overflow: hidden;
	background: #fff;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-soft);
}
.shop-card__image-link, .shop-card__image-wrap { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: #fafaf8; }
.shop-card__badge {
	position: absolute; top: 1rem; left: 1rem; z-index: 2;
	font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em;
	background: color-mix(in srgb, var(--color-background) 90%, transparent);
	backdrop-filter: blur(6px);
	padding: 0.4rem 0.75rem; border-radius: 999px;
	color: var(--color-foreground); font-weight: 500;
}
.shop-card__image { transition: transform 0.7s ease; }
.shop-card:hover .shop-card__image { transform: scale(1.05); }
.shop-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.shop-card__title { font-size: 1.5rem; }
.shop-card__title-link:hover .shop-card__title { text-decoration: underline; }
.shop-card__desc { margin-top: 0.75rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; flex: 1; }
.shop-card__footer { margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.shop-card__price { font-family: var(--font-serif); font-size: 1.5rem; }
.shop-card__price .woocommerce-Price-amount { font-family: var(--font-serif); }
.shop-card__actions { display: flex; gap: 0.5rem; }
.shop-card__outofstock { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.shop-footer-note { margin-top: 3rem; text-align: center; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.shop-empty { text-align: center; padding: 3rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews-section { position: relative; padding: 7rem 0; background-color: color-mix(in srgb, var(--sand) 20%, transparent); overflow: hidden; }
@media (min-width: 768px) { .reviews-section { padding: 10rem 0; } }
.reviews-section::before { content: ""; position: absolute; inset: 0; opacity: 0.4; pointer-events: none; background: var(--gradient-aura); }
.reviews-section .theme-container { position: relative; }
.reviews-section .section-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .reviews-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .reviews-section .section-heading { font-size: 3.75rem; } }
.reviews-track { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .reviews-track { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
.review-card {
	display: flex; flex-direction: column; height: 100%;
	border-radius: 1.5rem; background: var(--card); border: 1px solid var(--color-border);
	padding: 2rem;
	transition: box-shadow 0.7s ease;
}
.review-card:hover { box-shadow: var(--shadow-soft); }
.review-quote-icon { color: var(--earth); margin-bottom: 1.5rem; flex-shrink: 0; }
.review-text { color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.65; flex: 1; }
.review-footer { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.review-author { font-family: var(--font-serif); font-size: 1.125rem; }
.reviews-nav { margin-top: 3rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.reviews-nav__btn {
	width: 2.5rem; height: 2.5rem; border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	display: inline-flex; align-items: center; justify-content: center;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	transition: background-color 0.2s ease, color 0.2s ease;
}
.reviews-nav__btn:hover { background: var(--color-primary); color: var(--color-button-text); }
.reviews-dots { display: flex; align-items: center; gap: 0.5rem; }
.reviews-dot { height: 8px; width: 8px; border-radius: 999px; background: color-mix(in srgb, var(--color-foreground) 25%, transparent); transition: all 0.3s ease; }
.reviews-dot.is-active { width: 24px; background: var(--color-foreground); }
.reviews-dot:hover { background: color-mix(in srgb, var(--color-foreground) 40%, transparent); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { padding: 7rem 0; background-color: color-mix(in srgb, var(--sand) 30%, transparent); }
@media (min-width: 768px) { .faq-section { padding: 10rem 0; } }
.faq-section .section-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .faq-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .faq-section .section-heading { font-size: 3.75rem; } }
.faq-list { margin-top: 4rem; 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__toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.75rem 0; text-align: left; }
@media (min-width: 768px) { .faq-item__toggle { padding: 2rem 0; } }
.faq-item__q { font-size: 1.25rem; padding-right: 1rem; }
@media (min-width: 768px) { .faq-item__q { font-size: 1.5rem; } }
.faq-item__icon {
	flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	display: inline-flex; align-items: center; justify-content: center;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), background-color 0.2s ease, color 0.2s ease;
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__toggle:hover .faq-item__icon { background: var(--color-primary); color: var(--color-button-text); }
.faq-item__content { overflow: hidden; padding-bottom: 2rem; padding-right: 3rem; }
.faq-item__content p { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.7; font-size: 1rem; }
@media (min-width: 768px) { .faq-item__content p { font-size: 1.125rem; } }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-section { position: relative; padding: 7rem 0; overflow: hidden; }
@media (min-width: 768px) { .contact-section { padding: 10rem 0; } }
.contact-section::before { content: ""; position: absolute; inset: 0; opacity: 0.6; pointer-events: none; background: var(--gradient-aura); }
.contact-grid { position: relative; display: grid; gap: 4rem; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.contact-section .section-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .contact-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-section .section-heading { font-size: 3.75rem; } }
.contact-info-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon {
	margin-top: 0.25rem; height: 2.5rem; width: 2.5rem; border-radius: 50%;
	background: var(--sand); display: inline-flex; align-items: center; justify-content: center;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent); flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.contact-mailto, .contact-tel { color: var(--color-foreground); word-break: break-all; }
.contact-mailto:hover, .contact-tel:hover { opacity: 0.7; }
.contact-location { overflow-wrap: break-word; }
.theme-contact-form { border-radius: 1.5rem; background: var(--card); border: 1px solid var(--color-border); padding: 2rem; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 1.25rem; }
.theme-contact-form .theme-field label { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-underline-input {
	margin-top: 0.5rem; width: 100%; background: transparent;
	border: none; border-bottom: 1px solid var(--color-border);
	outline: none; padding: 0.6rem 0; color: var(--color-foreground);
	font-family: inherit; font-size: 1rem;
}
.theme-underline-input:focus { border-bottom-color: var(--color-foreground); }
.theme-underline-input--textarea { resize: none; }
.theme-contact-form button { margin-top: 0.5rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--color-background); border-top: 1px solid var(--color-border); }
.site-footer__inner { max-width: 80rem; margin: 0 auto; padding: 5rem 1.5rem; display: grid; gap: 3rem; }
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 5rem 2.5rem; } }
.footer-col { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-logo { height: 5rem; width: auto; }
.footer-eyebrow { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.footer-paragraph { font-size: 0.875rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); max-width: 24rem; }
.theme-footer-nav-list { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer-nav-list a { font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); transition: color 0.2s ease; }
.theme-footer-nav-list a:hover { color: var(--color-foreground); }
.footer-direct-line { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-mailto, .footer-tel { font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); word-break: break-all; }
.footer-mailto:hover, .footer-tel:hover { color: var(--color-foreground); }
.footer-quote { font-size: 0.875rem; font-style: italic; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.site-footer__bottom { border-top: 1px solid var(--color-border); }
.site-footer__bottom > p, .site-footer__bottom { display: flex; }
.site-footer__bottom {
	max-width: 80rem; margin: 0 auto; padding: 1.5rem 1.5rem;
	display: flex; flex-direction: column; gap: 0.5rem;
	font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
}
@media (min-width: 768px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; padding: 1.5rem 2.5rem; } }
.footer-credit { text-transform: none; letter-spacing: normal; }
.footer-credit a { font-weight: 600; color: var(--color-foreground); text-underline-offset: 4px; }
.footer-credit a:hover { text-decoration: underline; }

/* ==========================================================================
   CART DRAWER
   ========================================================================== */
#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 60;
	background: rgba(28,27,31,0.5); backdrop-filter: blur(4px);
	opacity: 0; pointer-events: none;
	transition: opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }
#theme-cart-drawer {
	position: fixed; top: 0; right: 0; z-index: 70;
	height: 100%; width: 100%; max-width: 440px;
	background: var(--color-background);
	border-left: 1px solid var(--color-border);
	display: flex; flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.5s 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); background: color-mix(in srgb, var(--sand) 40%, transparent); }
.theme-cart-drawer__title-wrap { display: flex; align-items: center; gap: 0.75rem; }
.theme-cart-drawer__title { font-size: 1.5rem; }
.theme-cart-drawer__close {
	width: 2.25rem; height: 2.25rem; border-radius: 50%;
	border: 1px solid var(--color-border);
	display: inline-flex; align-items: center; justify-content: center;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.theme-cart-drawer__close:hover { background: var(--color-primary); color: var(--color-button-text); }
.theme-cart-drawer__body { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-empty { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 0; gap: 0.5rem; }
.theme-cart-empty svg { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); margin-bottom: 0.5rem; }
.theme-cart-empty__title { font-family: var(--font-serif); font-size: 1.5rem; }
.theme-cart-empty__text { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1rem; }
.theme-cart-item { border-radius: 1rem; background: #fff; border: 1px solid var(--color-border); padding: 0.75rem; display: flex; gap: 0.75rem; box-shadow: var(--shadow-soft); }
.theme-cart-item__image { flex-shrink: 0; width: 5rem; height: 5rem; border-radius: 0.4rem; overflow: hidden; border: 1px solid var(--color-border); display: block; }
.theme-cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-item__details { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-item__title { font-family: var(--font-serif); font-size: 1rem; line-height: 1.3; display: block; }
.theme-cart-item__title:hover { text-decoration: underline; }
.theme-cart-item__unit-price { font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.15rem; }
.theme-cart-item__variation { font-size: 0.7rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.25rem; }
.theme-cart-item__row { margin-top: auto; padding-top: 0.5rem; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.theme-cart-item__qty { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: 999px; }
.theme-cart-item__qty button { width: 1.75rem; height: 1.75rem; display: inline-flex; align-items: center; justify-content: center; }
.theme-cart-item__qty button:hover { color: var(--earth); }
.theme-cart-item__qty-value { width: 2rem; text-align: center; font-size: 0.875rem; font-weight: 600; }
.theme-cart-item__line-total { font-family: var(--font-serif); font-size: 1.125rem; }
.theme-cart-item__remove { width: 1.75rem; height: 1.75rem; display: inline-flex; align-items: center; justify-content: center; }
.theme-cart-item__remove:hover { color: #dc2626; }
.theme-cart-drawer__footer { border-top: 1px solid var(--color-border); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; background: color-mix(in srgb, var(--sand) 40%, transparent); }
.theme-cart-drawer__subtotal-row { display: flex; align-items: center; justify-content: space-between; }
.theme-cart-drawer__subtotal-label { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-cart-drawer__subtotal-value { font-family: var(--font-serif); font-size: 1.5rem; }
.theme-cart-drawer__note {
	font-size: 0.6875rem;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
	line-height: 1.45;
}
.theme-cart-checkout-btn { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.75rem; }

/* ==========================================================================
   BOOKING DIALOG
   ========================================================================== */
#theme-booking-overlay {
	position: fixed; inset: 0; z-index: 80;
	background: rgba(0,0,0,0.6);
	opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
body.booking-dialog-open #theme-booking-overlay { opacity: 1; pointer-events: auto; }
.theme-dialog {
	position: fixed; inset: 0; z-index: 90;
	display: flex; align-items: center; justify-content: center;
	padding: 0.75rem;
	opacity: 0; visibility: hidden; pointer-events: none;
	transition: opacity 0.25s ease;
}
.theme-dialog.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.theme-dialog__panel {
	position: relative;
	width: 100%; max-width: 42rem;
	max-height: calc(100dvh - 1.5rem - var(--admin-bar-height));
	overflow-y: auto;
	overflow-x: hidden;
	background: var(--color-background);
	border-radius: 1.25rem;
	padding: 1.25rem 1.5rem;
	box-shadow: 0 30px 90px -30px rgba(0,0,0,0.4);
	transform: scale(0.97);
	transition: transform 0.25s ease;
}
.theme-dialog.is-open .theme-dialog__panel { transform: scale(1); }
.theme-dialog__close { position: absolute; top: 0.875rem; right: 0.875rem; width: 2rem; height: 2rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-dialog__close:hover { background: color-mix(in srgb, var(--color-foreground) 8%, transparent); }
.theme-dialog__title { font-size: 1.375rem; display: flex; align-items: center; gap: 0.5rem; padding-right: 2rem; }
.theme-dialog__desc { margin-top: 0.25rem; font-size: 0.8125rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); line-height: 1.45; }
.theme-booking-form { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
.theme-form-row { display: grid; gap: 0.75rem; }
.theme-form-row--split { grid-template-columns: 1fr; }
@media (min-width: 640px) { .theme-form-row--split { grid-template-columns: 1fr 1fr; } }
.theme-dialog .theme-field label { font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); display: block; margin-bottom: 0.25rem; }
.theme-dialog .theme-field select,
.theme-dialog .theme-field input,
.theme-dialog .theme-field textarea {
	width: 100%; border-radius: 0.5rem; border: 1px solid var(--color-border);
	background: #fff; padding: 0.5rem 0.75rem; font-size: 0.875rem;
	color: var(--color-foreground); font-family: inherit; outline: none;
}
.theme-dialog .theme-field textarea { min-height: 3.5rem; resize: none; }
.theme-dialog .theme-date-trigger { padding: 0.5rem 0.75rem; font-size: 0.875rem; }
.theme-dialog .theme-booking-total-row { margin-top: 0.75rem; padding: 0.75rem 1rem; }
.theme-dialog .theme-booking-total-price { font-size: 1.5rem; }
.theme-dialog .theme-payment-grid { margin-top: 0.75rem; gap: 0.75rem; }
.theme-dialog .theme-payment-card { padding: 0.875rem; }
.theme-dialog .theme-payment-qr { width: 7rem; height: 7rem; }
.theme-dialog .theme-booking-done { margin-top: 0.75rem; }
.theme-field label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); display: block; margin-bottom: 0.4rem; }
.theme-field select, .theme-field input, .theme-field textarea {
	width: 100%; border-radius: 0.5rem; border: 1px solid var(--color-border);
	background: #fff; padding: 0.65rem 0.85rem; font-size: 0.9rem;
	color: var(--color-foreground); font-family: inherit; outline: none;
}
.theme-field select:focus, .theme-field input:focus, .theme-field textarea:focus { border-color: var(--earth); }
.theme-date-picker { position: relative; }
.theme-date-trigger {
	width: 100%; display: flex; align-items: center; gap: 0.5rem;
	border: 1px solid var(--color-border); border-radius: 0.5rem; padding: 0.65rem 0.85rem;
	background: #fff; font-size: 0.9rem; color: var(--color-foreground);
}
.theme-date-calendar {
	position: absolute; z-index: 5; top: calc(100% + 0.4rem); left: 0;
	width: 280px; background: #fff; border: 1px solid var(--color-border);
	border-radius: 0.75rem; padding: 0.75rem; box-shadow: var(--shadow-soft);
}
.theme-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.85rem; font-weight: 600; }
.theme-cal-nav { padding: 0.25rem 0.5rem; }
.theme-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.theme-cal-dow { font-size: 0.65rem; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); padding: 0.25rem 0; }
.theme-cal-day { font-size: 0.8rem; padding: 0.4rem 0; border-radius: 0.35rem; }
.theme-cal-day:not(.theme-cal-day--empty):not(.is-disabled):hover { background: color-mix(in srgb, var(--earth) 40%, transparent); }
.theme-cal-day.is-selected { background: var(--color-primary); color: var(--color-button-text); }
.theme-cal-day.is-disabled { color: color-mix(in srgb, var(--color-foreground) 25%, transparent); cursor: not-allowed; }
.theme-booking-submit { width: 100%; }
.theme-booking-submit:disabled { opacity: 0.5; pointer-events: none; }
.theme-booking-note { font-size: 0.6875rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); text-align: center; line-height: 1.4; }
@media (max-height: 740px) {
	.theme-dialog__panel { padding: 1rem 1.25rem; }
	.theme-dialog__title { font-size: 1.25rem; }
	.theme-booking-form { gap: 0.625rem; margin-top: 0.5rem; }
	.theme-form-row { gap: 0.625rem; }
	.theme-dialog .theme-field select,
	.theme-dialog .theme-field input,
	.theme-dialog .theme-field textarea { padding: 0.4375rem 0.625rem; font-size: 0.8125rem; }
	.theme-dialog .theme-field textarea { min-height: 2.75rem; }
}
.theme-booking-total-row { margin-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; border-radius: 1rem; background: color-mix(in srgb, var(--sand) 40%, transparent); padding: 1rem 1.25rem; gap: 1rem; flex-wrap: wrap; }
.theme-booking-total-price { font-family: var(--font-serif); font-size: 1.875rem; margin-top: 0.25rem; }
.theme-payment-grid { margin-top: 1.25rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .theme-payment-grid { grid-template-columns: 1fr 1fr; } }
.theme-payment-card { border-radius: 1rem; border: 1px solid var(--color-border); padding: 1.25rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
.theme-payment-handle { font-size: 0.875rem; margin-top: 0.25rem; }
.theme-payment-qr { margin-top: 1rem; width: 10rem; height: 10rem; object-fit: contain; }
.theme-booking-done { width: 100%; margin-top: 1.25rem; }

/* ==========================================================================
   WOOCOMMERCE — SINGLE PRODUCT
   ========================================================================== */
.single-product-main { padding-top: 7rem; padding-bottom: 5rem; }
.back-to-shop-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.25em; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 2rem; }
.back-to-shop-link:hover { color: var(--color-foreground); }
.theme-product-layout { display: grid; gap: 2.5rem; min-width: 0; }
@media (min-width: 768px) { .theme-product-layout { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery__main { position: relative; border-radius: 1rem; overflow: hidden; aspect-ratio: 4/5; background: color-mix(in srgb, var(--sand) 30%, transparent); border: 1px solid var(--color-border); box-shadow: var(--shadow-soft); }
.theme-product-thumbnails { margin-top: 1rem; display: flex; gap: 0.75rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb { width: 4.5rem; height: 4.5rem; border-radius: 0.5rem; overflow: hidden; border: 2px solid transparent; position: relative; }
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-product-category { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); font-weight: 500; }
.theme-product-title { font-family: var(--font-body); font-weight: 600; font-size: 2.25rem; margin-top: 0.75rem; line-height: 1.2; }
@media (min-width: 1024px) { .theme-product-title { font-size: 2.75rem; } }
.theme-product-price { margin-top: 1.5rem; font-family: var(--font-serif); font-size: 2rem; }
.theme-stock-status--out { margin-top: 0.75rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: #b45309; }
.theme-product-description { margin-top: 1.5rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.7; overflow-wrap: break-word; word-break: break-word; }
.theme-product-details { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--color-border); overflow-wrap: break-word; word-break: break-word; }
.theme-details-heading { font-size: 1.125rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 0.75rem; }
.theme-product-details-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	line-height: 1.65;
	font-size: 0.9375rem;
}
.theme-product-details-list li {
	position: relative;
	padding-left: 1.125rem;
}
.theme-product-details-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.3125rem;
	height: 0.3125rem;
	border-radius: 50%;
	background: var(--earth);
}
.theme-add-to-cart-area {
	margin-top: 2rem;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.theme-add-to-cart-area .single_add_to_cart_button,
.theme-add-to-cart-area .add_to_cart_button {
	flex: 1 1 12rem;
	min-width: 12rem;
	padding-left: 2.25rem !important;
	padding-right: 2.25rem !important;
}
.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: 999px; background: #fff; }
.theme-qty-minus, .theme-qty-plus { width: 2.75rem; height: 3rem; display: inline-flex; align-items: center; justify-content: center; }
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--earth); }
.theme-qty-input { width: 3rem; text-align: center; border: none; background: transparent; font-family: var(--font-serif); font-size: 1.125rem; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.related-products-section { margin-top: 6rem; }
.related-products-heading { font-size: 1.5rem; margin-bottom: 2rem; }
@media (min-width: 1024px) { .related-products-heading { font-size: 1.875rem; } }
.related-products-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
@media (min-width: 1024px) { .related-products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.related-product-card { display: block; border-radius: 1rem; overflow: hidden; background: #fff; border: 1px solid var(--color-border); box-shadow: var(--shadow-soft); }
.related-product-card__image-wrap { position: relative; aspect-ratio: 4/5; background: color-mix(in srgb, var(--sand) 30%, transparent); overflow: hidden; }
.related-product-card__image { transition: transform 0.7s ease; }
.related-product-card:hover .related-product-card__image { transform: scale(1.1); }
.related-product-card__body { padding: 1rem; }
.related-product-card__title { font-size: 1.125rem; line-height: 1.3; }
.related-product-card__price { margin-top: 0.25rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }

/* Product variations table layout (Section 11.5.1) */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product .variations tbody td.value { padding-top: 0; }

/* Add-to-cart WooCommerce style override (Section 11.4.1) */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
/* Card compact button — overrides global rules for card variant */
.theme-product-card-wrap .add_to_cart_button.ajax_add_to_cart,
.shop-card .add_to_cart_button.ajax_add_to_cart {
	min-height: 2.5rem !important;
	height: 2.5rem !important;
	padding: 0 1rem !important;
	font-size: 0.68rem !important;
	letter-spacing: 0.15em !important;
	text-transform: uppercase !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; }

/* Hide "View cart" injected by WooCommerce after AJAX add (Section 11.4.2) */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

/* WooCommerce 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 {
	border-radius: 0.5rem; border: 1px solid var(--color-border);
	background: var(--card); padding: 1rem 1.5rem; margin-bottom: 1.5rem;
	font-family: var(--font-body); font-size: 0.9rem; list-style: none;
}
.woocommerce-error { border-color: #dc2626; color: #991b1b; }

/* ==========================================================================
   WOOCOMMERCE — SHOP ARCHIVE
   ========================================================================== */
.shop-archive-main { padding-top: 7rem; padding-bottom: 5rem; }
.shop-archive-main .page-title { font-size: 2.5rem; margin-bottom: 2.5rem; text-align: center; }
.shop-archive-grid { margin-top: 0; }
.woocommerce-pagination { margin-top: 3rem; text-align: center; }
.woocommerce-pagination ul { display: inline-flex; gap: 0.5rem; }
.woocommerce-pagination a, .woocommerce-pagination span {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 2.25rem; height: 2.25rem; border-radius: 50%;
	border: 1px solid var(--color-border);
}
.woocommerce-pagination .current { background: var(--color-primary); color: var(--color-button-text); }

/* ==========================================================================
   GENERIC / 404
   ========================================================================== */
.error-404-main { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 6rem 0; }
.error-404-content { text-align: center; max-width: 28rem; margin: 0 auto; }
.error-404-code { font-size: 4.5rem; font-weight: 700; }
.error-404-title { margin-top: 1rem; font-size: 1.25rem; font-weight: 600; }
.error-404-text { margin-top: 0.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.error-404-content a { margin-top: 1.5rem; display: inline-flex; }
.generic-page-main { padding-top: 7rem; padding-bottom: 5rem; }
.generic-page-main .page-title { font-size: 2.5rem; margin-bottom: 2rem; }

/* ==========================================================================
   WOOCOMMERCE — CHECKOUT BLOCK (Section 13)
   ========================================================================== */
body.woocommerce-checkout .site-main { padding-top: var(--header-height, 80px); padding-bottom: 4rem; }
body.woocommerce-checkout .page-title { font-size: 2.25rem; margin-bottom: 2rem; }
body.woocommerce-checkout .wc-block-checkout { display: block; }
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap, 2rem);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
	width: 100% !important;
	max-width: none !important;
	border-radius: 0.5rem;
	border: 1px solid var(--color-border);
	font-family: var(--font-body);
	color: var(--color-foreground);
	background-color: #fff;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	border-color: var(--earth);
}
body.woocommerce-checkout .wc-block-components-text-input input {
	padding: revert;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: color-mix(in srgb, var(--sand) 40%, transparent);
	border-radius: var(--card-radius);
	padding: var(--section-padding);
}
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;
	text-transform: none;
}
body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 0.5rem;
	font-family: var(--font-body);
}

/* ==========================================================================
   WOOCOMMERCE — CART / ACCOUNT / THANK YOU (Section 13.7 / 22.8)
   ========================================================================== */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: var(--header-height, 80px); padding-bottom: 4rem; }
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: var(--header-height, 80px); padding-bottom: 4rem; }
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-overview { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; padding: 0; margin: 1.5rem 0; }
body.theme-thankyou-page .woocommerce-order-overview li {
	border-radius: 0.5rem; border: 1px solid var(--color-border); padding: 0.75rem 1rem;
	font-size: 0.85rem;
}
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-customer-details {
	display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem;
}
body.theme-thankyou-page .woocommerce-customer-details address {
	max-width: 480px; overflow-wrap: break-word; border: 1px solid var(--color-border);
	border-radius: 0.5rem; padding: 1rem; font-style: normal;
}
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: start;
	}
}
