/* =========================================================================
   Elev4ting Wellness — theme.css
   Design tokens are injected as CSS variables via wp_add_inline_style
   (Section 22.9). Fallback values below match the site's design system.
   ========================================================================= */

:root {
	--color-background: #faf8f5;
	--color-foreground: #2c352e;
	--color-primary: #4b5d4f;
	--color-primary-foreground: #faf8f4;
	--color-secondary: #f2e7de;
	--color-accent: #c59f59;
	--color-rose: #c59f59;
	--color-rose-foreground: #1b271e;
	--color-bone: #eae3d2;
	--color-sand: #c7dbcd;
	--color-linen: #faf8f5;
	--color-ivory: #fefcfb;
	--color-border: #e2ddcf;
	--color-destructive: #b24034;
	--color-button-text: var(--color-rose-foreground);

	--font-display: 'Newsreader', 'Instrument Serif', Georgia, serif;
	--font-body: 'Switzer', system-ui, -apple-system, sans-serif;

	--radius: 0.75rem;
	--card-radius: 1rem;
	--btn-radius: 999px;
	--btn-height: 44px;
	--btn-padding: 0 1.75rem;
	--btn-font-size: 14px;
	--btn-font-weight: 500;
	--btn-letter-spacing: normal;
	--btn-text-transform: none;
	--btn-icon-padding: 0;
	--logo-height: 60px;
	--header-height: 7.25rem; /* announce bar + header row; JS syncs to measured height */
	--checkout-gap: 2rem;
	--section-padding: 2rem;
}

/* ---------------------------------------------------------------------- */
/* Reset / base                                                            */
/* ---------------------------------------------------------------------- */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.012em;
	margin: 0;
	color: var(--color-foreground);
}
.font-display { font-family: var(--font-display); font-weight: inherit; font-size: inherit; }

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button,
[type="button"],
[type="submit"],
[type="reset"],
[role="button"],
select,
summary,
label[for],
.theme-cat-pill,
.theme-subcat-pill,
.theme-faq-question,
.theme-testimonial-dot,
.theme-testimonial-prev,
.theme-testimonial-next,
.theme-watch-btn,
.theme-menu-toggle,
.theme-cart-toggle,
.theme-nav-link,
.theme-footer-links a,
.theme-footer-links button {
	cursor: pointer;
}
button { font-family: inherit; background: none; border: none; padding: 0; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
img:not(.cover-img):not(.hero-bg-img):not(.product-card-img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-bg-img, .product-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
section[id] { scroll-margin-top: 96px; }

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.25rem;
}
@media (min-width: 640px) { .container-wide { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-wide { padding: 0 2.5rem; } }

.theme-anchor-offset { display: block; margin-top: -6rem; padding-top: 6rem; }

.theme-eyebrow {
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-rose);
	font-weight: 500;
	margin-bottom: 1rem;
}
.theme-section-paragraph {
	margin-top: 1.25rem;
	font-size: 14px;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	line-height: 1.7;
	max-width: 42rem;
}
@media (min-width: 768px) { .theme-section-paragraph { font-size: 15px; } }

.theme-quote {
	font-family: var(--font-display);
	font-weight: 300;
	font-style: italic;
	font-size: 1.25rem;
	line-height: 1.35;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	border-left: 2px solid color-mix(in srgb, var(--color-rose) 70%, transparent);
	padding-left: 1.25rem;
	margin: 0;
}
.theme-quote-attribution {
	display: block;
	margin-top: 0.5rem;
	font-style: normal;
	font-size: 12px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */

.theme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: var(--btn-height);
	padding: var(--btn-padding);
	border-radius: var(--btn-radius);
	font-family: var(--font-body);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	border: 1px solid transparent;
	white-space: nowrap;
	transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	text-transform: none;
}
.theme-btn-primary, .theme-btn-hero-primary {
	background-color: var(--color-rose);
	color: var(--color-rose-foreground);
	border-color: var(--color-rose);
	text-transform: none;
}
.theme-btn-primary:hover { opacity: 0.9; }
.theme-btn-outline {
	background-color: transparent;
	color: var(--color-foreground);
	border-color: color-mix(in srgb, var(--color-foreground) 25%, transparent);
}
.theme-btn-outline:hover { border-color: var(--color-foreground); background-color: color-mix(in srgb, var(--color-foreground) 4%, transparent); }
.theme-btn-glass, .theme-btn-hero-outline {
	background-color: color-mix(in srgb, #fff 10%, transparent);
	color: #fff;
	border-color: color-mix(in srgb, #fff 40%, transparent);
	backdrop-filter: blur(8px);
	text-transform: none;
}
.theme-btn-glass:hover { background-color: color-mix(in srgb, #fff 20%, transparent); }
.theme-btn-ghost { background-color: transparent; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-btn-ghost:hover { background-color: color-mix(in srgb, var(--color-foreground) 5%, transparent); }
.theme-btn-block { width: 100%; }
.theme-btn-sm { height: 36px; padding: 0 1rem; font-size: 13px; }
.theme-btn[disabled], .theme-btn.disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

/* ---------------------------------------------------------------------- */
/* Header                                                                  */
/* ---------------------------------------------------------------------- */

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}
@media screen and (max-width: 600px) {
	body.admin-bar .site-header { top: 0; }
}
body.admin-bar #theme-cart-drawer { top: 32px; height: calc(100% - 32px); }
@media screen and (max-width: 782px) {
	body.admin-bar #theme-cart-drawer { top: 46px; height: calc(100% - 46px); }
}
@media screen and (max-width: 600px) {
	body.admin-bar #theme-cart-drawer { top: 0; height: 100%; }
}
.theme-subscription-bar {
	background-color: var(--color-rose);
	color: var(--color-rose-foreground);
	padding: 0.5rem 1rem;
	text-align: center;
}
.theme-subscription-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	padding: 0.35rem 1.25rem;
	border-radius: 9999px;
	background-color: color-mix(in srgb, var(--color-rose-foreground) 12%, transparent);
	color: inherit;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}
.theme-subscription-btn:hover {
	background-color: color-mix(in srgb, var(--color-rose-foreground) 20%, transparent);
	transform: translateY(-1px);
}
@media (min-width: 640px) {
	.theme-subscription-btn { font-size: 13px; }
}

.theme-announce-bar {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.5rem 1rem;
	text-align: center;
}
.theme-announce-highlight { color: var(--color-rose); }

.theme-header-bar { transition: background-color 0.5s ease, border-color 0.5s ease; border-bottom: 1px solid transparent; }
.site-header:not(.is-solid) .theme-header-bar { background-color: transparent; }
.site-header.is-solid .theme-header-bar,
.site-header.theme-scrolled .theme-header-bar {
	background-color: color-mix(in srgb, var(--color-linen) 85%, transparent);
	backdrop-filter: blur(20px);
	border-bottom-color: color-mix(in srgb, var(--color-foreground) 10%, transparent);
}

.theme-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
	gap: 1rem;
}
@media (min-width: 1024px) { .theme-header-row { height: 80px; } }

.theme-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--color-foreground);
	transition: background-color 0.2s;
}
.site-header:not(.is-solid):not(.theme-scrolled) .theme-menu-toggle { color: var(--color-primary-foreground); }
.theme-menu-toggle:hover { background-color: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
@media (min-width: 1280px) { .theme-menu-toggle { display: none; } }

.theme-brand { display: flex; align-items: center; gap: 0.75rem; }
.theme-brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	overflow: hidden;
	background-color: var(--color-ivory);
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-rose) 50%, transparent);
}
.site-header:not(.is-solid):not(.theme-scrolled) .theme-brand-mark { box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary-foreground) 60%, transparent); }
.theme-brand-mark .site-logo-img { height: 40px; width: 40px; object-fit: cover; display: block; }
.theme-brand-mark.site-logo-text { padding: 0.4rem 0.75rem; font-family: var(--font-display); font-size: 14px; }
@media (min-width: 1024px) { .theme-brand-mark .site-logo-img { height: 44px; width: 44px; } }
.theme-brand-text { display: none; flex-direction: column; line-height: 1.1; color: var(--color-foreground); }
.site-header:not(.is-solid):not(.theme-scrolled) .theme-brand-text { color: var(--color-primary-foreground); }
@media (min-width: 640px) { .theme-brand-text { display: flex; } }
.theme-brand-name { font-family: var(--font-display); font-size: 17px; letter-spacing: -0.01em; }
.theme-brand-tagline { margin-top: 0.2rem; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-rose); }

.theme-primary-nav { display: none; }
@media (min-width: 1280px) { .theme-primary-nav { display: flex; } }
.theme-nav-list { display: flex; align-items: center; gap: 1.25rem; }
.theme-nav-link {
	position: relative;
	font-size: 14px;
	font-weight: 500;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	transition: color 0.3s;
}
.site-header:not(.is-solid):not(.theme-scrolled) .theme-nav-link { color: color-mix(in srgb, var(--color-primary-foreground) 85%, transparent); }
.theme-nav-link:hover, .theme-nav-link.is-active { color: var(--color-rose); }
.site-header:not(.is-solid):not(.theme-scrolled) .theme-nav-link.is-active { color: var(--color-primary-foreground); }

.theme-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.theme-cart-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--color-foreground);
	transition: background-color 0.2s;
}
.site-header:not(.is-solid):not(.theme-scrolled) .theme-cart-toggle { color: var(--color-primary-foreground); }
.theme-cart-toggle:hover { background-color: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.theme-cart-count {
	position: absolute;
	top: -2px;
	right: -2px;
	background-color: var(--color-rose);
	color: var(--color-rose-foreground);
	font-size: 11px;
	font-weight: 500;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.theme-cart-count:empty { display: none; }

.theme-mobile-nav { display: none; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background-color: color-mix(in srgb, var(--color-linen) 95%, transparent); backdrop-filter: blur(20px); }
.theme-mobile-nav.is-open { display: block; animation: theme-fade-in 0.4s ease-out both; }
.theme-mobile-nav-inner { padding-top: 1rem; padding-bottom: 1rem; max-height: 70vh; overflow-y: auto; }
.theme-mobile-nav ul,
.theme-mobile-nav-list {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
.theme-mobile-nav li,
.theme-mobile-nav-list > li {
	display: block;
	width: 100%;
	margin: 0;
}
.theme-mobile-nav .theme-nav-link,
.theme-mobile-nav-list .theme-nav-link {
	display: block;
	width: 100%;
	text-align: left;
	padding: 0.75rem 0;
	border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
}
.theme-mobile-nav .theme-nav-link:hover,
.theme-mobile-nav .theme-nav-link.is-active,
.theme-mobile-nav-list .theme-nav-link:hover,
.theme-mobile-nav-list .theme-nav-link.is-active {
	color: var(--color-rose);
}
/* Keep mobile drawer links dark even when the header is still transparent over the hero. */
.site-header:not(.is-solid):not(.theme-scrolled) .theme-mobile-nav .theme-nav-link {
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
}
.site-header:not(.is-solid):not(.theme-scrolled) .theme-mobile-nav .theme-nav-link:hover,
.site-header:not(.is-solid):not(.theme-scrolled) .theme-mobile-nav .theme-nav-link.is-active {
	color: var(--color-rose);
}
.theme-mobile-nav li:last-child > .theme-nav-link,
.theme-mobile-nav-list > li:last-child .theme-nav-link { border-bottom: none; }

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */

.theme-hero { position: relative; min-height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.theme-hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-hero-scrim { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(at center, color-mix(in srgb, #14170f 40%, transparent) 0%, color-mix(in srgb, #14170f 62%, transparent) 70%, color-mix(in srgb, #14170f 85%, transparent) 100%); }
.theme-hero-overlay { position: absolute; inset: 0; pointer-events: none; background-color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	color: var(--color-primary-foreground);
	padding-top: 10rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
@media (min-width: 640px) {
	.theme-hero-content {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
@media (min-width: 1024px) {
	.theme-hero-content {
		padding-top: 13rem;
		padding-bottom: 8rem;
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}

.theme-hero-badge-wrap { display: flex; justify-content: center; margin-bottom: 1.75rem; }
.theme-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 1rem;
	border-radius: 999px;
	background-color: color-mix(in srgb, var(--color-primary-foreground) 10%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-primary-foreground) 30%, transparent);
	backdrop-filter: blur(8px);
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--color-primary-foreground);
}
.theme-hero-badge-icon { color: var(--color-rose); flex-shrink: 0; }
.theme-hero-heading {
	font-family: var(--font-display);
	font-weight: 300;
	line-height: 1.06;
	letter-spacing: -0.012em;
	max-width: 64rem;
	margin: 0 auto;
	font-size: clamp(2rem, 5.2vw, 4.2rem);
	color: #fff;
	filter: drop-shadow(0 2px 30px rgba(0,0,0,0.55));
}
.theme-hero-heading-main { color: inherit; }
.theme-hero-emphasis { font-style: italic; color: var(--color-rose); }
.theme-rose-highlight { color: var(--color-rose); font-weight: 500; }
.theme-hero-paragraph { margin-top: 1.75rem; max-width: 42rem; margin-left: auto; margin-right: auto; font-size: 15px; color: color-mix(in srgb, var(--color-primary-foreground) 90%, transparent); line-height: 1.7; }
.theme-hero-paragraph-sub { margin-top: 1rem; font-size: 14px; color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent); }
@media (min-width: 640px) { .theme-hero-paragraph { font-size: 17px; } .theme-hero-paragraph-sub { font-size: 15px; } }
.theme-hero-ctas { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; align-items: stretch; padding: 0; }
@media (min-width: 640px) { .theme-hero-ctas { flex-direction: row; gap: 1rem; align-items: center; justify-content: center; } }
.theme-hero-ctas .theme-btn { height: 48px; padding: 0 1.75rem; max-width: 100%; white-space: normal; }

/* Home hero must fill the viewport under the fixed header (Section 22.7) */
body.theme-no-hero .site-main,
body.theme-no-hero .theme-page-main,
body.woocommerce-checkout .site-main,
body.single-product .single-product-main,
.theme-archive-main {
	padding-top: var(--header-height);
}

/* ---------------------------------------------------------------------- */
/* Section heading scales (per-section, Section 2.2.5)                     */
/* ---------------------------------------------------------------------- */

.section-heading { font-weight: 300; line-height: 1.06; color: var(--color-foreground); }
.about-section, .founder-section, .team-section, .services-section, .faq-section, .portfolio-section {
	font-size: 2.25rem;
}
.faq-section { overflow-wrap: anywhere; }
@media (min-width: 768px) { .about-section, .founder-section, .services-section, .portfolio-section { font-size: 3rem; } .team-section, .faq-section { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section, .founder-section, .services-section, .portfolio-section { font-size: 3.2rem; } }
.shop-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.2rem; } }
.contact-title { font-size: 2.25rem; }
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3.2rem; } }

/* ---------------------------------------------------------------------- */
/* Generic section wrappers                                                */
/* ---------------------------------------------------------------------- */

.theme-about, .theme-founder, .theme-services, .theme-shop, .theme-portfolio, .theme-team, .theme-faq, .theme-contact {
	border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	padding: 6rem 0;
}
@media (min-width: 768px) { .theme-about, .theme-founder, .theme-services, .theme-shop, .theme-portfolio, .theme-team, .theme-faq { padding: 8rem 0; } }
.theme-contact { padding: 6rem 0 3rem; }
@media (min-width: 768px) { .theme-contact { padding-top: 8rem; padding-bottom: 4rem; } }

.theme-about { background-color: var(--color-linen); }
.theme-founder { background-color: var(--color-ivory); }
.theme-services { background-color: var(--color-bone); position: relative; }
.theme-shop { background-color: var(--color-linen); }
.theme-portfolio { background-color: var(--color-ivory); }
.theme-team { background-color: var(--color-linen); }
.theme-faq { background-color: var(--color-bone); overflow-x: clip; }
.theme-contact { background-color: var(--color-linen); }

.theme-section-head { max-width: 48rem; margin-bottom: 3.5rem; }

/* ---------------------------------------------------------------------- */
/* About                                                                   */
/* ---------------------------------------------------------------------- */

.theme-about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .theme-about-grid { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }
.theme-about-copy { display: flex; flex-direction: column; }
@media (min-width: 1024px) { .theme-about-copy { grid-column: span 6; } }
.theme-about-paragraphs { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); max-width: 42rem; }
.theme-about-copy .theme-quote { margin-top: 2.25rem; }
@media (min-width: 1024px) { .theme-about-copy .theme-quote { margin-top: auto; padding-top: 2.25rem; } }
.theme-about-image-wrap { display: flex; }
@media (min-width: 1024px) { .theme-about-image-wrap { grid-column: span 6; } }
.theme-about-image { position: relative; overflow: hidden; border-radius: var(--card-radius); background-color: var(--color-bone); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.25); width: 100%; aspect-ratio: 4/3; }
@media (min-width: 1024px) { .theme-about-image { aspect-ratio: auto; height: 100%; } }

.theme-pillars-grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .theme-pillars-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.theme-pillar-card { border-radius: var(--card-radius); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background-color: var(--color-ivory); padding: 1.5rem; }
.theme-pillar-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background-color: var(--color-sand); color: var(--color-primary); margin-bottom: 1rem; }
.theme-pillar-title { font-size: 18px; margin-bottom: 0.5rem; line-height: 1.35; }
.theme-pillar-body { font-size: 13px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }

/* ---------------------------------------------------------------------- */
/* Founder                                                                 */
/* ---------------------------------------------------------------------- */

.theme-founder-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .theme-founder-grid { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }
.theme-founder-photo-wrap { position: relative; display: flex; }
@media (min-width: 1024px) { .theme-founder-photo-wrap { grid-column: span 5; } }
.theme-founder-photo { position: relative; width: 100%; min-height: 480px; overflow: hidden; border-radius: var(--card-radius); background-color: var(--color-bone); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.25); }
@media (min-width: 1024px) { .theme-founder-photo { min-height: 0; } }
.theme-founder-photo img { object-position: center top; }
.theme-founder-badge { position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 999px; background-color: var(--color-rose); color: var(--color-rose-foreground); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; z-index: 2; }
.theme-founder-badge-dot { width: 6px; height: 6px; border-radius: 50%; background-color: color-mix(in srgb, var(--color-rose-foreground) 70%, transparent); }
.theme-founder-copy { }
@media (min-width: 1024px) { .theme-founder-copy { grid-column: span 7; padding-left: 1.5rem; } }
.theme-founder-quote { margin-top: 2rem; font-size: 1.25rem; }
.theme-founder-paragraphs { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); max-width: 42rem; }
.founder-p2-emphasis { font-style: italic; }
.theme-founder-actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.theme-founder-stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); padding-top: 2rem; }
.theme-founder-stat-value { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-rose); }
@media (min-width: 768px) { .theme-founder-stat-value { font-size: 1.75rem; } }
.theme-founder-stat-label { margin-top: 0.25rem; font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* ---------------------------------------------------------------------- */
/* Services                                                                */
/* ---------------------------------------------------------------------- */

.theme-services-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .theme-services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem; } }
@media (min-width: 1280px) { .theme-services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.theme-service-card.is-hidden-extra { display: none; }
.theme-service-card { background-color: var(--color-linen); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); border-radius: var(--card-radius); overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.3s; }
.theme-service-card:hover { border-color: color-mix(in srgb, var(--color-rose) 50%, transparent); }
.theme-service-image-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background-color: var(--color-bone); }
.theme-service-image { transition: transform 0.7s ease; }
.theme-service-card:hover .theme-service-image { transform: scale(1.05); }
.theme-service-scrim { position: absolute; inset: 0; background-color: color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.theme-watch-btn {
	position: absolute; inset: 0; margin: auto; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	width: fit-content; height: 40px; padding: 0 1.25rem; align-self: center; justify-self: center;
	border-radius: 999px; background-color: var(--color-rose); color: var(--color-rose-foreground); font-size: 14px; font-weight: 500; box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.theme-service-duration { position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.25rem 0.75rem; border-radius: 999px; background-color: color-mix(in srgb, var(--color-linen) 90%, transparent); backdrop-filter: blur(4px); color: var(--color-foreground); font-size: 12px; font-weight: 500; }
.theme-service-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
@media (min-width: 768px) { .theme-service-body { padding: 1.75rem; } }
.theme-service-category { font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-primary); margin-bottom: 0.5rem; font-weight: 500; }
.theme-service-title { font-size: 20px; margin-bottom: 0.75rem; line-height: 1.35; }
@media (min-width: 768px) { .theme-service-title { font-size: 22px; } }
.theme-service-desc { font-size: 14px; line-height: 1.65; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); flex: 1; }
.theme-service-footer { margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-service-price { font-size: 15px; font-weight: 500; min-width: 0; }
.theme-service-book-link { flex-shrink: 0; display: inline-flex; align-items: center; gap: 0.375rem; font-size: 14px; font-weight: 500; color: var(--color-primary); transition: color 0.3s; }
.theme-service-book-link:hover { color: var(--color-rose); }
.theme-services-actions { margin-top: 3rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
@media (min-width: 640px) { .theme-services-actions { flex-direction: row; } }

.theme-video-modal { position: fixed; inset: 0; z-index: 60; background-color: color-mix(in srgb, var(--color-foreground) 70%, transparent); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 1rem; }
.theme-video-modal[hidden] { display: none; }
.theme-video-modal-inner { position: relative; width: 100%; max-width: 420px; max-height: 86vh; border-radius: var(--card-radius); overflow: hidden; background-color: var(--color-foreground); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.theme-video-modal-close { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 10; width: 36px; height: 36px; border-radius: 50%; background-color: color-mix(in srgb, var(--color-linen) 90%, transparent); color: var(--color-foreground); display: inline-flex; align-items: center; justify-content: center; }
#theme-video-modal-video { width: 100%; max-height: 76vh; object-fit: contain; background-color: var(--color-foreground); display: block; }
.theme-video-modal-caption { padding: 1rem; background-color: var(--color-linen); }
.theme-video-modal-title { font-family: var(--font-display); font-size: 18px; }
.theme-video-modal-note { margin-top: 0.25rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

/* ---------------------------------------------------------------------- */
/* Shop / product grid                                                    */
/* ---------------------------------------------------------------------- */

.theme-shop-head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .theme-shop-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.theme-shop-head-copy { max-width: 42rem; }
.theme-shop-search-wrap { position: relative; width: 100%; }
@media (min-width: 1024px) { .theme-shop-search-wrap { width: 20rem; } }
.theme-shop-search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-shop-search-input { width: 100%; height: 44px; padding: 0 1rem 0 2.75rem; border-radius: 999px; background-color: var(--color-linen); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); font-size: 14px; color: var(--color-foreground); }
.theme-shop-search-input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-shop-search-input:focus { outline: none; border-color: color-mix(in srgb, var(--color-rose) 60%, transparent); }

.theme-shop-cat-pills, .theme-shop-subcat-wrap { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2.5rem; }
.theme-shop-subcat-wrap { margin-top: -1rem; gap: 0.5rem; }
.theme-shop-subcat-wrap[hidden],
.theme-shop-subcat-group[hidden] { display: none !important; }
.theme-shop-subcat-group { display: contents; }
.theme-cat-pill { height: 40px; padding: 0 1.25rem; border-radius: 999px; font-size: 14px; font-weight: 500; border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); color: color-mix(in srgb, var(--color-foreground) 75%, transparent); background-color: transparent; transition: color 0.2s, border-color 0.2s, background-color 0.2s; }
.theme-cat-pill:hover { color: var(--color-rose); border-color: var(--color-rose); }
.theme-cat-pill.is-active { background-color: var(--color-rose); color: var(--color-rose-foreground); border-color: var(--color-rose); }
.theme-subcat-pill { height: 36px; padding: 0 1rem; border-radius: 999px; font-size: 13px; font-weight: 500; border: 1px solid color-mix(in srgb, var(--color-foreground) 12%, transparent); color: color-mix(in srgb, var(--color-foreground) 65%, transparent); background-color: transparent; }
.theme-subcat-pill:hover { color: var(--color-primary); border-color: color-mix(in srgb, var(--color-primary) 50%, transparent); }
.theme-subcat-pill.is-active { background-color: color-mix(in srgb, var(--color-primary) 15%, transparent); color: var(--color-primary); border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }

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

.theme-shop-item.is-hidden-extra,
.theme-service-card.is-hidden-extra,
.theme-gallery-item.is-hidden-extra { display: none; }
.theme-shop-item.is-filtered-out { display: none !important; }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card { display: flex; flex-direction: column; flex: 1; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 4/5; background-color: var(--color-linen); border-radius: 0.75rem; overflow: hidden; margin-bottom: 0.75rem; }
.theme-product-card__image-wrapper > .theme-card-link { position: absolute; inset: 0; z-index: 1; }
.theme-product-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(0.22,0.61,0.36,1); pointer-events: none; }
.theme-product-card:hover .theme-product-card-img { transform: scale(1.04); }
.theme-product-card__scrim { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 35%, transparent), transparent 55%); opacity: 0; transition: opacity 0.5s; }
.theme-product-card:hover .theme-product-card__scrim { opacity: 1; }
.theme-product-badge { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 10; background-color: var(--color-rose); color: var(--color-rose-foreground); font-size: 12px; font-weight: 500; padding: 0.25rem 0.65rem; border-radius: 999px; pointer-events: none; }
.theme-product-badge.is-soldout { background-color: var(--color-foreground); color: var(--color-background); }
.theme-product-card__nav {
	position: absolute; top: 50%; z-index: 20; width: 32px; height: 32px; margin-top: -16px;
	border-radius: 50%; background-color: color-mix(in srgb, var(--color-background) 85%, transparent);
	backdrop-filter: blur(8px); display: inline-flex; align-items: center; justify-content: center;
	color: var(--color-foreground); opacity: 0; transition: opacity 0.3s, background-color 0.3s, color 0.3s;
	box-shadow: 0 1px 4px rgba(0,0,0,0.12); pointer-events: auto;
}
.theme-product-card__nav--prev { left: 0.5rem; }
.theme-product-card__nav--next { right: 0.5rem; }
.theme-product-card:hover .theme-product-card__nav { opacity: 1; }
.theme-product-card__nav:hover { background-color: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-card__dots { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 10; display: flex; gap: 0.25rem; pointer-events: none; }
.theme-product-card__dot { height: 4px; width: 4px; border-radius: 999px; background-color: color-mix(in srgb, var(--color-background) 60%, transparent); transition: width 0.2s, background-color 0.2s; }
.theme-product-card__dot.is-active { width: 1rem; background-color: var(--color-background); }
.theme-product-card__quick-actions { position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; z-index: 20; display: flex; align-items: center; gap: 0.5rem; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.theme-product-card:hover .theme-product-card__quick-actions { opacity: 1; pointer-events: auto; }
.theme-product-quick-btn, .theme-product-quick-view { pointer-events: auto; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; height: 40px; border-radius: 999px; background-color: var(--color-rose); color: var(--color-rose-foreground); font-size: 14px; font-weight: 500; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.theme-product-quick-btn { flex: 1; padding: 0 1.25rem; }
.theme-product-quick-view { width: 40px; flex-shrink: 0; }
.theme-product-card__info { padding: 0 0.125rem; pointer-events: auto; }
.theme-product-card__category { font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-primary) 90%, transparent); margin-bottom: 0.25rem; font-weight: 500; }
.theme-product-card__title { font-size: 16px; line-height: 1.35; color: var(--color-foreground); transition: color 0.3s; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 17.6px; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.25rem; font-size: 13px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }

.theme-shop-empty-message { text-align: center; padding: 4rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-shop-more-wrap, .theme-portfolio-more-wrap { margin-top: 3rem; display: flex; justify-content: center; }

/* ---------------------------------------------------------------------- */
/* Marquee                                                                 */
/* ---------------------------------------------------------------------- */

.theme-marquee-strip { background-color: var(--color-primary); padding: 1.25rem 0; overflow: hidden; }
.theme-marquee-track { display: flex; white-space: nowrap; animation: theme-marquee 22s linear infinite; width: max-content; }
.theme-marquee-item { display: flex; align-items: center; flex-shrink: 0; color: var(--color-primary-foreground); font-family: var(--font-display); font-size: 1.125rem; letter-spacing: 0.02em; }
@media (min-width: 768px) { .theme-marquee-item { font-size: 1.25rem; } }
.theme-marquee-text { margin: 0 1.5rem; }
@media (min-width: 768px) { .theme-marquee-text { margin: 0 2rem; } }
.theme-marquee-star { color: var(--color-rose); font-size: 14px; }
@keyframes theme-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-33.3333%); } }
@media (prefers-reduced-motion: reduce) { .theme-marquee-track { animation: none; } }

/* ---------------------------------------------------------------------- */
/* Portfolio / gallery                                                     */
/* ---------------------------------------------------------------------- */

.theme-gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 180px; gap: 0.75rem; }
@media (min-width: 640px) { .theme-gallery-grid { grid-auto-rows: 220px; gap: 1rem; } }
@media (min-width: 1024px) { .theme-gallery-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.theme-gallery-item { position: relative; overflow: hidden; border-radius: var(--card-radius); background-color: var(--color-bone); }
@media (min-width: 1024px) {
	.theme-gallery-span-wide-tall { grid-column: span 2; grid-row: span 2; }
	.theme-gallery-span-wide { grid-column: span 2; }
}
.theme-gallery-item img { transition: transform 0.7s ease; }
.theme-gallery-item:hover img { transform: scale(1.05); }
.theme-gallery-gradient { position: absolute; inset: 0; background-image: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--color-foreground) 30%, transparent), color-mix(in srgb, var(--color-foreground) 75%, transparent)); opacity: 0.95; }
.theme-gallery-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem; }
.theme-gallery-caption-top { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-rose); font-weight: 500; }
.theme-gallery-caption-bottom { font-size: 14px; color: var(--color-primary-foreground); line-height: 1.35; margin-top: 0.15rem; }

/* ---------------------------------------------------------------------- */
/* Team                                                                    */
/* ---------------------------------------------------------------------- */

.theme-team-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .theme-team-grid { grid-template-columns: repeat(12, 1fr); } }
.theme-team-photo { grid-column: span 12; }
@media (min-width: 768px) { .theme-team-photo { grid-column: span 5; } }
@media (min-width: 1024px) { .theme-team-photo { grid-column: span 4; } }
.theme-team-photo-inner { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--card-radius); background-color: var(--color-bone); box-shadow: 0 10px 30px -12px rgba(0,0,0,0.2); }
.theme-team-photo-inner img { object-position: center top; }
.theme-team-card { grid-column: span 12; border-radius: var(--card-radius); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background-color: var(--color-ivory); padding: 1.75rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .theme-team-card { grid-column: span 7; padding: 2.5rem; } }
@media (min-width: 1024px) { .theme-team-card { grid-column: span 8; } }
.theme-team-badge { display: inline-flex; align-self: flex-start; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 999px; background-color: var(--color-sand); color: var(--color-primary); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.25rem; }
.theme-team-name { font-size: 28px; line-height: 1.35; }
@media (min-width: 768px) { .theme-team-name { font-size: 32px; } }
.theme-team-title { margin-top: 0.5rem; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-rose); font-weight: 500; }
.theme-team-bio { margin-top: 1.5rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); max-width: 40rem; }
.theme-team-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------------------------------------------------------------------- */
/* FAQ + Testimonials                                                      */
/* ---------------------------------------------------------------------- */

.theme-faq-wrap {
	display: flex;
	flex-direction: column;
	gap: 5rem;
	min-width: 0;
	overflow-wrap: break-word;
}
@media (min-width: 768px) {
	.theme-faq-wrap { gap: 6rem; }
}
.theme-faq-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 3rem;
	width: 100%;
	min-width: 0;
	max-width: 100%;
}
@media (min-width: 1024px) { .theme-faq-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); } }
.theme-faq-side { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-faq-side { grid-column: span 4; } }
.theme-faq-intro { margin-top: 1.5rem; font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); max-width: 24rem; overflow-wrap: break-word; }
@media (min-width: 768px) { .theme-faq-intro { font-size: 15px; } }
.theme-faq-side-card { display: none; margin-top: 2.5rem; position: relative; overflow: hidden; border-radius: var(--card-radius); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background-color: var(--color-linen); padding: 1.75rem; }
@media (min-width: 1024px) { .theme-faq-side-card { display: block; } }
.theme-faq-side-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background-color: var(--color-rose); color: var(--color-rose-foreground); margin-bottom: 1.25rem; }
.theme-faq-side-heading { font-size: 22px; line-height: 1.35; margin-bottom: 0.5rem; }
.theme-faq-side-body { font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; }
.theme-faq-list { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-faq-list { grid-column: span 8; } }
.theme-faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); min-width: 0; }
.theme-faq-question { width: 100%; max-width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; min-width: 0; }
.theme-faq-question span:first-child { flex: 1 1 0; font-family: var(--font-display); font-weight: 300; font-size: 17px; line-height: 1.35; min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
@media (min-width: 768px) { .theme-faq-question span:first-child { font-size: 20px; } }
.theme-faq-icon { flex-shrink: 0; color: var(--color-rose); display: inline-flex; }
.theme-faq-icon-minus { display: none; }
.theme-faq-item.is-open .theme-faq-icon-plus { display: none; }
.theme-faq-item.is-open .theme-faq-icon-minus { display: block; }
.theme-faq-answer-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-out; }
.theme-faq-item.is-open .theme-faq-answer-wrap { grid-template-rows: 1fr; }
.theme-faq-answer-inner { overflow: hidden; }
.theme-faq-answer { padding-bottom: 1.5rem; padding-right: 0; font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 42rem; overflow-wrap: break-word; }
@media (min-width: 768px) { .theme-faq-answer { font-size: 15px; padding-right: 2rem; } }

.theme-testimonials { min-width: 0; }
.theme-testimonials-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; min-width: 0; }
.theme-testimonials-heading { font-family: var(--font-display); font-weight: 300; font-size: 28px; line-height: 1.25; overflow-wrap: anywhere; }
@media (min-width: 768px) { .theme-testimonials-heading { font-size: 34px; } }
.theme-testimonials-note { margin-top: 0.75rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); max-width: 28rem; overflow-wrap: break-word; }
.theme-testimonials-nav { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .theme-testimonials-nav { display: flex; } }
.theme-testimonial-prev, .theme-testimonial-next { width: 40px; height: 40px; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); display: inline-flex; align-items: center; justify-content: center; transition: border-color 0.2s, color 0.2s; }
.theme-testimonial-prev:hover, .theme-testimonial-next:hover { border-color: var(--color-rose); color: var(--color-rose); }
.theme-testimonials-viewport { overflow: hidden; margin: 0 -0.75rem; max-width: calc(100% + 1.5rem); }
.theme-testimonials-track { display: flex; transition: transform 0.4s ease; }
.theme-testimonial-slide { flex: 0 0 100%; padding: 0 0.75rem; min-width: 0; box-sizing: border-box; }
@media (min-width: 768px) { .theme-testimonial-slide { flex: 0 0 50%; } }
@media (min-width: 1024px) { .theme-testimonial-slide { flex: 0 0 25%; } }
.theme-testimonial-card { height: 100%; background-color: var(--color-ivory); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); border-radius: var(--card-radius); padding: 1.5rem; display: flex; flex-direction: column; }
.theme-testimonial-stars { display: flex; gap: 0.15rem; margin-bottom: 1rem; color: var(--color-rose); }
.theme-testimonial-text { font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); flex: 1; }
.theme-testimonial-footer { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-testimonial-name { font-size: 14px; font-weight: 500; }
.theme-testimonial-city { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.15rem; }
.theme-testimonials-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.theme-testimonial-dot { height: 6px; width: 6px; border-radius: 999px; background-color: color-mix(in srgb, var(--color-foreground) 25%, transparent); transition: width 0.2s, background-color 0.2s; }
.theme-testimonial-dot:hover { background-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-testimonial-dot.is-active { width: 2rem; background-color: var(--color-rose); }

/* ---------------------------------------------------------------------- */
/* Pre-contact CTA banner                                                  */
/* ---------------------------------------------------------------------- */

.theme-precta { position: relative; overflow: hidden; }
.theme-precta-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-precta-overlay { position: absolute; inset: 0; background-color: color-mix(in srgb, var(--color-foreground) 50%, transparent); pointer-events: none; }
.theme-precta-content { position: relative; z-index: 10; text-align: center; color: var(--color-primary-foreground); padding: 7rem 0; }
@media (min-width: 768px) { .theme-precta-content { padding: 10rem 0; } }
.theme-precta-eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 12px; letter-spacing: 0.38em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary-foreground) 85%, transparent); margin-bottom: 1.5rem; font-weight: 500; }
.theme-precta-line { height: 1px; width: 2rem; background-color: color-mix(in srgb, var(--color-rose) 80%, transparent); }
.theme-precta-heading { font-family: var(--font-display); font-weight: 300; line-height: 1.08; letter-spacing: -0.012em; max-width: 56rem; margin: 0 auto; font-size: clamp(2rem, 5.2vw, 3.8rem); color: #fff; filter: drop-shadow(0 2px 30px rgba(0,0,0,0.55)); }
.theme-precta-heading-main { display: block; color: inherit; }
.theme-precta-heading-emphasis { font-style: italic; color: var(--color-rose); }
.theme-precta-paragraph { margin-top: 1.75rem; max-width: 36rem; margin-left: auto; margin-right: auto; font-size: 15px; color: color-mix(in srgb, var(--color-primary-foreground) 85%, transparent); line-height: 1.7; }
.theme-precta-cta { margin-top: 2.5rem; }

/* ---------------------------------------------------------------------- */
/* Contact                                                                 */
/* ---------------------------------------------------------------------- */

.theme-contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .theme-contact-grid { grid-template-columns: repeat(2, 1fr); gap: 5rem; } }
.theme-contact-copy { display: flex; flex-direction: column; height: 100%; }
.theme-contact-paragraph { margin-top: 1.5rem; font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.7; max-width: 30rem; }
.theme-contact-methods { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; flex-shrink: 0; }
.theme-contact-method { display: inline-flex; align-items: center; gap: 1rem; color: var(--color-foreground); transition: color 0.2s; }
.theme-contact-method:hover { color: var(--color-rose); }
.theme-contact-method-icon { width: 44px; height: 44px; border-radius: 50%; background-color: var(--color-ivory); border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); display: inline-flex; align-items: center; justify-content: center; transition: border-color 0.2s; }
.theme-contact-method:hover .theme-contact-method-icon { border-color: var(--color-rose); }
.theme-contact-method-text { display: flex; flex-direction: column; text-align: left; }
.theme-contact-method-label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-contact-method-value { font-size: 15px; font-weight: 500; }
.theme-contact-quote-wrap {
	margin-top: auto;
	padding-top: 2.5rem;
	flex: 1 1 auto;
	display: flex;
	align-items: flex-end;
	min-height: 0;
}
.theme-contact-quote-box {
	position: relative;
	width: 100%;
	border-radius: var(--card-radius);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	background-color: color-mix(in srgb, var(--color-ivory) 80%, transparent);
	padding: 2rem;
}
@media (min-width: 768px) { .theme-contact-quote-box { padding: 2.5rem; } }
@media (min-width: 1024px) { .theme-contact-quote-box { padding-top: 3.5rem; padding-bottom: 3.5rem; } }
.theme-contact-quote-badge { position: absolute; top: -0.75rem; left: 1.5rem; display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.25rem 0.75rem; border-radius: 999px; background-color: var(--color-rose); color: var(--color-rose-foreground); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }
.theme-contact-quote { font-family: var(--font-display); font-weight: 300; font-style: italic; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); font-size: 1.375rem; line-height: 1.35; border-left: 2px solid color-mix(in srgb, var(--color-rose) 70%, transparent); padding-left: 1.5rem; }
@media (min-width: 768px) { .theme-contact-quote { font-size: 1.875rem; } }
@media (min-width: 1024px) { .theme-contact-quote { font-size: 2.1rem; line-height: 1.25; } }
.theme-contact-quote-note { margin-top: 1.25rem; padding-left: 1.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); line-height: 1.6; }
@media (min-width: 768px) { .theme-contact-quote-note { font-size: 15px; } }

.theme-contact-form { background-color: var(--color-ivory); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); border-radius: var(--card-radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: 0 10px 30px -18px rgba(0,0,0,0.2); height: 100%; }
@media (min-width: 768px) { .theme-contact-form { padding: 2rem; } }
.theme-form-row { display: flex; flex-direction: column; }
.theme-form-row label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.5rem; }
.theme-form-row-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-form-row-grid { grid-template-columns: repeat(2, 1fr); } }
.theme-contact-form input, .theme-contact-form select, .theme-contact-form textarea {
	width: 100%; height: 48px; padding: 0 1rem; background-color: var(--color-linen); border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); border-radius: var(--radius); font-size: 14px; color: var(--color-foreground); font-family: var(--font-body);
}
.theme-contact-form textarea { height: auto; padding: 0.75rem 1rem; resize: none; }
.theme-contact-form input::placeholder, .theme-contact-form textarea::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-contact-form input:focus, .theme-contact-form select:focus, .theme-contact-form textarea:focus { outline: none; border-color: var(--color-rose); }
.theme-form-actions { margin-top: auto; padding-top: 0.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.theme-form-note { text-align: center; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-contact-form.is-submitting { opacity: 0.7; pointer-events: none; }

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */

.site-footer { background-color: var(--color-primary); color: var(--color-primary-foreground); }
.theme-footer-top {
	padding-top: 3.5rem;
	padding-bottom: 1.5rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
@media (min-width: 640px) {
	.theme-footer-top {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}
@media (min-width: 1024px) {
	.theme-footer-top {
		padding-top: 5rem;
		padding-bottom: 2rem;
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}
.theme-footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .theme-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .theme-footer-grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.theme-footer-logo { display: inline-flex; align-items: center; gap: 0.75rem; }
.theme-footer-logo .site-logo-img { height: 48px; width: 48px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-rose) 50%, transparent); background-color: var(--color-ivory); }
.theme-footer-brand-text { font-family: var(--font-display); font-size: 18px; line-height: 1.35; }
.theme-footer-brand-sub { color: var(--color-rose); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; }
.theme-footer-tagline { margin-top: 1rem; font-size: 14px; color: color-mix(in srgb, var(--color-primary-foreground) 75%, transparent); line-height: 1.65; max-width: 20rem; }
.theme-footer-quote { margin-top: 1rem; font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--color-rose); }
.theme-footer-heading { font-family: var(--font-display); font-size: 18px; margin-bottom: 1rem; color: var(--color-primary-foreground); font-weight: 300; }
.theme-footer-contact-link svg { flex-shrink: 0; }
.theme-footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.theme-footer-links a, .theme-footer-links button { font-size: 14px; color: color-mix(in srgb, var(--color-primary-foreground) 75%, transparent); transition: color 0.2s; }
.theme-footer-links a:hover, .theme-footer-links button:hover { color: var(--color-rose); }
.theme-footer-contact { gap: 0.75rem; }
.theme-footer-contact-link { display: inline-flex; align-items: center; gap: 0.5rem; word-break: break-all; }
.theme-footer-note { color: color-mix(in srgb, var(--color-primary-foreground) 70%, transparent); }
.theme-footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-primary-foreground) 20%, transparent); text-align: center; font-size: 12px; color: color-mix(in srgb, var(--color-primary-foreground) 70%, transparent); }

/* ---------------------------------------------------------------------- */
/* Promo toast                                                             */
/* ---------------------------------------------------------------------- */

.theme-promo-toast { position: fixed; bottom: 1.5rem; left: 1rem; right: 1rem; z-index: 50; background-color: var(--color-primary); color: var(--color-primary-foreground); border-radius: 1rem; box-shadow: 0 20px 50px -20px rgba(0,0,0,0.4); padding: 1rem 1.25rem; display: flex; align-items: flex-start; gap: 0.75rem; animation: theme-fade-in 0.5s ease-out both; }
.theme-promo-toast[hidden] { display: none; }
@media (min-width: 640px) { .theme-promo-toast { left: auto; right: 1.5rem; max-width: 26rem; } }
.theme-promo-text { flex: 1; font-size: 13px; line-height: 1.6; }
@media (min-width: 640px) { .theme-promo-text { font-size: 15px; } }
.theme-promo-highlight { color: var(--color-rose); font-weight: 600; }
.theme-promo-dismiss { flex-shrink: 0; margin-top: 0.1rem; padding: 0.375rem; border-radius: 50%; transition: background-color 0.2s; }
.theme-promo-dismiss:hover { background-color: color-mix(in srgb, var(--color-primary-foreground) 10%, transparent); }

/* ---------------------------------------------------------------------- */
/* Cart drawer + overlay                                                   */
/* ---------------------------------------------------------------------- */

#theme-cart-overlay { position: fixed; inset: 0; z-index: 55; background-color: color-mix(in srgb, var(--color-foreground) 30%, transparent); 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; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem; background-color: var(--color-ivory); z-index: 56; box-shadow: -10px 0 40px rgba(0,0,0,0.15); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); }
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 color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-cart-drawer-title { font-family: var(--font-display); font-size: 24px; }
.theme-cart-drawer-close { padding: 0.375rem; border-radius: 50%; transition: background-color 0.2s; }
.theme-cart-drawer-close:hover { background-color: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.theme-cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-empty-icon { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); margin-bottom: 1rem; }
.theme-cart-empty-text { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; font-size: 14px; }
.theme-cart-items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item-image { width: 80px; height: 96px; background-color: var(--color-bone); border-radius: 0.5rem; overflow: hidden; flex-shrink: 0; display: block; position: relative; }
.theme-cart-item-image img,
.theme-cart-item-image .theme-cart-item-img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
}
.theme-cart-item-info { flex: 1; min-width: 0; }
.theme-cart-item-name { font-size: 14px; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.2s; }
.theme-cart-item-name:hover { color: var(--color-primary); }
.theme-cart-item-variant { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.15rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-item-price { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.15rem; }
.theme-cart-item-qty-row { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-qty-btn { padding: 0.25rem; border-radius: 0.25rem; transition: background-color 0.2s; font-size: 14px; }
.theme-cart-qty-btn:hover { background-color: var(--color-bone); }
.theme-cart-qty-value { font-size: 13px; width: 1.5rem; text-align: center; }
.theme-cart-remove { margin-left: auto; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); transition: color 0.2s; }
.theme-cart-remove:hover { color: var(--color-destructive); }
.theme-cart-drawer-footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background-color: color-mix(in srgb, var(--color-linen) 40%, transparent); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-subtotal-row { display: flex; justify-content: space-between; font-size: 14px; }
.theme-cart-subtotal-value { font-weight: 500; }
.theme-cart-note { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* 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; }

/* ---------------------------------------------------------------------- */
/* Animations                                                              */
/* ---------------------------------------------------------------------- */

@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-scale-in { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.animate-fade-in { animation: theme-fade-in 0.7s ease-out both; }
.animate-scale-in { animation: theme-scale-in 0.35s ease-out both; }

.reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
	will-change: opacity, transform;
}
.reveal-item.is-revealed { opacity: 1; transform: translateY(0); }

/* Customizer preview / no-JS fallback: never leave content permanently hidden */
body.is-customizer .reveal-item,
html.no-js .reveal-item,
.theme-shop-item .reveal-item {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none; opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------- */
/* WooCommerce: notices scoped visibility (Section 14.1)                   */
/* ---------------------------------------------------------------------- */

.single-product .woocommerce-message,
.single-product .woocommerce-info,
#theme-cart-drawer .woocommerce-message { display: none; }

/* ---------------------------------------------------------------------- */
/* WooCommerce: add-to-cart button overrides (Section 11.4.1)              */
/* ---------------------------------------------------------------------- */

.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button,
.theme-personalize-add-btn {
	background-color: var(--color-rose) !important;
	color: var(--color-rose-foreground) !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: none !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover,
.theme-personalize-add-btn:hover {
	opacity: 0.9 !important;
	background-color: var(--color-rose) !important;
	color: var(--color-rose-foreground) !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-rose) !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart.theme-product-quick-btn {
	background-color: var(--color-rose) !important;
	min-height: 40px !important;
	padding: 0 1.25rem !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

.theme-attr-select-hidden { display: none !important; }

/* ---------------------------------------------------------------------- */
/* Single product page                                                     */
/* ---------------------------------------------------------------------- */

.single-product-main { padding-bottom: 5rem; background-color: var(--color-ivory); }
body.single-product .single-product-main {
	padding-top: calc(var(--header-height) + 0.75rem);
}
.theme-breadcrumb { padding: 1.5rem 0; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-breadcrumb a:hover { color: var(--color-primary); }
.theme-breadcrumb-sep { margin: 0 0.5rem; opacity: 0.5; }
.theme-breadcrumb-current { color: var(--color-foreground); }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery { isolation: isolate; }
@media (min-width: 1024px) { .theme-product-gallery { grid-column: span 6; position: sticky; top: 7rem; align-self: start; } }
.theme-product-main-image { position: relative; z-index: 0; aspect-ratio: 1/1; width: 100%; background-color: var(--color-linen); border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem; }
.theme-product-main-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-product-thumbnails { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.625rem; position: relative; z-index: 1; max-width: 100%; }
.theme-product-thumb { position: relative; aspect-ratio: 1/1; width: 100%; background-color: var(--color-linen); border-radius: 0.375rem; overflow: hidden; border: 2px solid transparent; transition: border-color 0.2s; cursor: pointer; }
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb:hover { border-color: color-mix(in srgb, var(--color-foreground) 20%, transparent); }
.theme-product-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.theme-product-info { }
@media (min-width: 1024px) { .theme-product-info { grid-column: span 6; } }
.theme-product-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.theme-product-category, .theme-product-category a { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); font-weight: 500; }
.theme-product-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 30px;
	line-height: 1.05;
	margin-bottom: 1rem;
	color: var(--color-foreground);
}
@media (min-width: 768px) { .theme-product-title { font-size: 36px; } }
@media (min-width: 1024px) { .theme-product-title { font-size: 2.6rem; } }
.theme-product-price-row { margin-bottom: 1.75rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.theme-product-price { font-size: 20px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); }
.theme-product-price .theme-price-currency { font-size: inherit; }
.theme-product-price .theme-price-each { font-size: 14px; font-weight: 400; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-bulk-applied { display: inline-flex; align-items: center; gap: 0.375rem; background-color: var(--color-rose); color: var(--color-rose-foreground); font-size: 12px; font-weight: 500; padding: 0.25rem 0.75rem; border-radius: 999px; }
.theme-bulk-applied[hidden] { display: none !important; }
.theme-product-price del { opacity: 0.5; margin-right: 0.5rem; font-weight: 400; }
.theme-stock-status { font-size: 14px; margin-bottom: 1rem; }
.theme-stock-out { color: var(--color-destructive); font-weight: 500; }
.theme-product-description { font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; white-space: pre-line; }
.theme-product-description p { margin: 0; }
.theme-product-info .theme-product-badge { position: static; }

.theme-variant-group { margin-bottom: 1.75rem; }
.theme-variant-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.75rem; }
.theme-variant-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-variant-pill { height: 40px; padding: 0 1rem; border-radius: 999px; font-size: 13px; font-weight: 500; border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); color: color-mix(in srgb, var(--color-foreground) 75%, transparent); background-color: transparent; transition: color 0.2s, border-color 0.2s, background-color 0.2s; }
.theme-variant-pill:hover { color: var(--color-rose); border-color: var(--color-rose); }
.theme-variant-pill.is-active { background-color: var(--color-rose); color: var(--color-rose-foreground); border-color: var(--color-rose); }

.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations { display: none; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product .variations tbody td.value { padding-top: 0; }

.theme-bulk-tiers { margin-bottom: 1.75rem; border-radius: var(--card-radius); border: 1px solid color-mix(in srgb, var(--color-rose) 40%, transparent); background-color: color-mix(in srgb, var(--color-rose) 10%, transparent); padding: 1.25rem; }
.theme-bulk-tiers-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1rem; }
.theme-bulk-tiers-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.theme-tier-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 88px; height: 88px; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--color-foreground) 12%, transparent); background-color: var(--color-ivory); color: color-mix(in srgb, var(--color-foreground) 75%, transparent); text-align: center; transition: all 0.3s; }
.theme-tier-btn:hover { border-color: var(--color-rose); color: var(--color-rose); }
.theme-tier-btn.is-active { background-color: var(--color-rose); color: var(--color-rose-foreground); border-color: var(--color-rose); transform: scale(1.05); }
.theme-tier-buy { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.75; }
.theme-tier-price { font-size: 15px; font-weight: 500; line-height: 1.2; margin-top: 0.1rem; }
.theme-tier-each { font-size: 12px; opacity: 0.75; }
.theme-bulk-tiers-note { margin-top: 1rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-watch-treatment-btn { display: none; }

.theme-personalize-field { margin-bottom: 1.75rem; }
.theme-personalize-label { display: block; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.625rem; font-weight: 600; font-style: normal; }
.theme-personalize-input { width: 100%; height: 48px; padding: 0 1rem; background-color: var(--color-linen); border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); border-radius: var(--radius); font-size: 14px; color: var(--color-foreground); }
.theme-personalize-input:focus { outline: none; border-color: var(--color-rose); }
.theme-personalize-helper { margin-top: 0.5rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.theme-qty-block { margin-bottom: 1.5rem; }
.theme-qty-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.625rem; }
.single-product .theme-add-to-cart-area {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.75rem;
	margin-bottom: 1.75rem;
}
@media (min-width: 640px) {
	.single-product .theme-add-to-cart-area { flex-direction: row; }
}
.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); border-radius: 999px; flex-shrink: 0; }
.theme-qty-minus, .theme-qty-plus { padding: 0 1rem; height: 44px; display: inline-flex; align-items: center; transition: color 0.2s; }
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--color-primary); }
.theme-qty-input { width: 3rem; height: 44px; text-align: center; border: none; background: transparent; font-size: 14px; font-weight: 500; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.single-product .single_add_to_cart_button,
.single-product .theme-personalize-add-btn,
.single-product .theme-buy-now-btn { flex: 1 1 auto; min-width: 0; width: 100%; }
.single-product .theme-buy-now-btn {
	display: inline-flex; align-items: center; justify-content: center;
	height: 48px; padding: 0 1.5rem; border-radius: var(--btn-radius);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	background: transparent; color: var(--color-foreground); font-size: 14px; font-weight: 500;
	transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}
.single-product .theme-buy-now-btn:hover { border-color: var(--color-rose); color: var(--color-rose); }

.theme-product-details { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-details-heading { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 1rem; }
.theme-details-list li { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); display: flex; align-items: flex-start; padding: 0.25rem 0; }
.theme-details-list li::before { content: ''; width: 4px; height: 4px; background-color: var(--color-primary); border-radius: 50%; margin: 0.5rem 0.75rem 0 0; flex-shrink: 0; }
.woocommerce-product-details__short-description,
.woocommerce-variation-description,
.single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }

.theme-trust-row { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-trust-item { text-align: center; }
.theme-trust-item svg { margin: 0 auto 0.5rem; color: var(--color-primary); }
.theme-trust-item p { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.theme-related-heading { font-family: var(--font-display); font-weight: 300; font-size: 30px; }
@media (min-width: 768px) { .theme-related-heading { font-size: 36px; } }
.related-products-section { padding: 5rem 0; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-section-head-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.theme-view-all-link { display: none; align-items: center; gap: 0.375rem; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
@media (min-width: 640px) { .theme-view-all-link { display: inline-flex; } }
.theme-view-all-link:hover { color: var(--color-primary); }

/* ---------------------------------------------------------------------- */
/* Archive / shop page                                                      */
/* ---------------------------------------------------------------------- */

.theme-archive-wrap { padding: 3rem 0 5rem; }
.theme-archive-title { font-size: 2.25rem; margin-bottom: 2.5rem; font-weight: 300; }
.theme-empty-message { text-align: center; padding: 4rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* ---------------------------------------------------------------------- */
/* 404                                                                      */
/* ---------------------------------------------------------------------- */

.theme-404-main { min-height: 60vh; display: flex; align-items: center; }
.theme-404-wrap { text-align: center; padding: 6rem 0; }
.theme-404-title { font-size: 4rem; margin-bottom: 1rem; }
.theme-404-text { font-size: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; }

/* ---------------------------------------------------------------------- */
/* Generic pages                                                           */
/* ---------------------------------------------------------------------- */

.theme-page-wrap { padding: 3rem 0 5rem; }
.page-title { font-weight: 300; font-size: 2.5rem; margin-bottom: 2rem; }

/* ---------------------------------------------------------------------- */
/* WooCommerce Checkout Block overrides (Section 13)                       */
/* ---------------------------------------------------------------------- */

body.woocommerce-checkout .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-checkout .entry-content { max-width: 100%; }
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);
		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;
	font-family: var(--font-body);
	color: var(--color-foreground);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	border-radius: var(--radius);
	background-color: var(--color-linen);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-text-input input:focus-visible {
	border-color: var(--color-rose);
}
body.woocommerce-checkout .wc-block-components-text-input input { padding: revert; }
body.woocommerce-checkout .wc-block-components-textarea textarea { font-family: var(--font-body); }
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary);
	border-radius: var(--card-radius);
	padding: var(--section-padding);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-rose) !important;
	color: var(--color-rose-foreground) !important;
	border-radius: var(--btn-radius) !important;
	text-transform: none !important;
	font-family: var(--font-body) !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: var(--radius); grid-column: 1 / -1; }
body.woocommerce-checkout h2, body.woocommerce-checkout h3 { font-family: var(--font-body); font-weight: 600; }
body.woocommerce-checkout .woocommerce-checkout .form-row .input-text,
body.woocommerce-checkout .woocommerce-checkout .form-row select {
	font-family: var(--font-body);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	border-radius: var(--radius);
	background-color: var(--color-linen);
}

body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }

/* ---------------------------------------------------------------------- */
/* Thank you page (Section 22.8)                                           */
/* ---------------------------------------------------------------------- */

body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: var(--header-height); }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-customer-details,
body.theme-thankyou-page .woocommerce-order-details { margin-top: 1.5rem; }
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 2rem;
	padding: 0;
	list-style: none;
}
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 14px; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display);
	font-weight: 300;
	font-size: 1.75rem;
	padding: 0 0 1rem 0;
}
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-top: 1rem; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.75rem; border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); font-size: 14px; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: start;
	}
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; overflow-wrap: break-word; }

/* ---------------------------------------------------------------------- */
/* Responsive safety nets (Section 31.9)                                   */
/* ---------------------------------------------------------------------- */

.theme-card-title-row { display: flex; align-items: center; gap: 0.5rem; min-width: 0; }
.theme-card-title-row .title { min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
