/*
 * Pyfrom Financial theme stylesheet.
 * Color tokens are re-emitted as CSS variables by inc/enqueue.php based on
 * Customizer values; the values below are load-time fallbacks only.
 */

:root {
	--color-background: #ffffff;
	--color-foreground: #121212;
	--color-primary: #dc0e79;
	--color-primary-foreground: #ffffff;
	--color-secondary: #fbf5f8;
	--color-secondary-foreground: #121212;
	--color-muted: #f2f2f2;
	--color-muted-foreground: #616161;
	--color-accent: #121212;
	--color-accent-foreground: #ffffff;
	--color-highlight: #fdc7e6;
	--color-border: #e5e5e5;
	--logo-height: 60px;

	--font-display: 'Playfair Display', 'Cormorant Garamond', serif;
	--font-body: 'Jost', 'Inter', 'Helvetica Neue', sans-serif;

	--radius: 0.25rem;
	--header-height: 67px;
	--container-max: 80rem;
	--transition-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);
	--shadow-soft: 0 6px 24px -8px rgb(18 18 18 / 0.14);
	--shadow-elevated: 0 14px 40px -12px rgb(18 18 18 / 0.26);

	--btn-radius: 0px;
	--btn-height: 3rem;
	--btn-padding: 0 2.25rem;
	--btn-font-size: 11px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.28em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.6rem;
	--card-radius: 0.5rem;
	--section-padding: 2rem;
	--checkout-gap: 3rem;
	--checkout-gap-lg: 4rem;
}

/* -------------------------------------------------------------------
 * Reset & base
 * ----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; }
body {
	margin: 0;
	overflow-x: clip;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
img:not(.cover-img):not(.hero-section__image):not(.promise-banner__image):not(.theme-product-main-image):not(.theme-product-card__image):not(.site-logo-img):not(.theme-cart-item__image img):not(.theme-cart-drawer__pair-image img):not(.theme-product-thumb img) {
	height: auto;
}
.cover-img, .hero-section__image, .theme-product-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
}
.promise-banner__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.theme-product-main-image {
	width: 100%;
	height: 100% !important;
	max-height: 88vh;
	object-fit: contain;
	object-position: center;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: inherit;
	margin: 0;
	letter-spacing: -0.01em;
}
p { margin: 0; }

#theme-noise-overlay {
	position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.02;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-repeat: repeat; background-size: 128px 128px;
}

#theme-scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 70; pointer-events: none; }
#theme-scroll-progress-bar {
	display: block; height: 100%; width: 100%; background: var(--color-primary);
	transform: scaleX(0); transform-origin: 0 50%;
	transition: transform 0.1s linear, background-color 0.3s;
}
body.is-cart-open-nav #theme-scroll-progress-bar,
.site-header.is-solid ~ * #theme-scroll-progress-bar { background: var(--color-primary); }

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

.scroll-mt { scroll-margin-top: 8rem; }
.label-eyebrow, .theme-eyebrow {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-family: var(--font-body); font-weight: 600;
	font-size: 0.625rem; letter-spacing: 0.32em; text-transform: uppercase;
	color: var(--color-muted-foreground);
}
.theme-eyebrow--on-dark { color: var(--color-primary); }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }

.section-heading {
	font-family: var(--font-display); font-style: italic; font-weight: 500;
	color: var(--color-foreground); line-height: 1.2;
}

.theme-divider { height: 1px; background: var(--color-border); }

/* Buttons */
.theme-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	height: var(--btn-height); padding: var(--btn-padding);
	font-family: var(--font-body); font-size: var(--btn-font-size); font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing); text-transform: var(--btn-text-transform);
	border-radius: var(--btn-radius); border: 1px solid transparent; cursor: pointer;
	transition: background-color 0.3s, color 0.3s, border-color 0.3s;
	white-space: nowrap;
}
.theme-btn-hero-primary { background: var(--color-background); color: var(--color-foreground); }
.theme-btn-hero-primary:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-btn-hero-outline { border-color: var(--color-accent-foreground); color: var(--color-accent-foreground); background: transparent; }
.theme-btn-hero-outline:hover { background: var(--color-accent-foreground); color: var(--color-accent); }
.theme-btn-primary { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.theme-btn-primary:hover { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.theme-btn-dark { background: var(--color-foreground); color: var(--color-background); }
.theme-btn-dark:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-btn-outline-dark { border-color: var(--color-foreground); color: var(--color-foreground); background: transparent; }
.theme-btn-outline-dark:hover { background: var(--color-foreground); color: var(--color-background); }
.theme-btn-light { background: var(--color-background); color: var(--color-foreground); }
.theme-btn-light:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-btn-outline-light { border-color: var(--color-accent-foreground); color: var(--color-accent-foreground); background: transparent; }
.theme-btn-outline-light:hover { background: var(--color-accent-foreground); color: var(--color-accent); }
.theme-btn-outline { border-color: var(--color-border); color: var(--color-foreground); background: transparent; }
.theme-btn.is-loading { opacity: 0.7; pointer-events: none; }

.theme-icon-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 2.75rem; height: 2.75rem; color: var(--color-foreground);
	transition: color 0.2s;
}
.theme-icon-btn:hover { color: var(--color-primary); }

/* -------------------------------------------------------------------
 * Animations
 * ----------------------------------------------------------------- */
@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slide-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes theme-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.theme-animate-fade-in { animation: theme-fade-in 0.8s var(--transition-smooth) forwards; }
.theme-animate-slide-up { animation: theme-slide-up 0.8s var(--transition-smooth) forwards; }

.reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
body.is-customizer .reveal-item,
body.is-customizer .scale-in-item { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
	.reveal-item, .scale-in-item { transition: none !important; opacity: 1 !important; transform: none !important; }
	.theme-animate-fade-in, .theme-animate-slide-up { animation: none !important; }
}

/* -------------------------------------------------------------------
 * Header
 * ----------------------------------------------------------------- */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 50;
	background: color-mix(in srgb, var(--color-background) 85%, transparent);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
}
.site-header__inner { max-width: var(--container-max); margin: 0 auto; position: relative; display: flex; align-items: center; justify-content: space-between; height: 4.2rem; padding: 0 1rem; }
@media (min-width: 768px) { .site-header__inner { padding: 0 2rem; } }
.site-header__left { display: flex; align-items: center; gap: 1.5rem; }
.site-header__right { display: flex; align-items: center; gap: 1.25rem; }
@media (min-width: 1280px) { .site-header__right { gap: 1.75rem; } }
.theme-mobile-menu-btn { display: inline-flex; padding: 0.5rem; margin-left: -0.5rem; }
@media (min-width: 1024px) { .theme-mobile-menu-btn { display: none; } }
.site-header__nav { display: none; }
@media (min-width: 1024px) { .site-header__nav { display: flex; align-items: center; gap: 1.25rem; } }
.theme-nav-list { display: flex; align-items: center; gap: 1.25rem; }
.theme-nav-list a {
	font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
	font-family: var(--font-body); font-weight: 500; color: var(--color-foreground);
	transition: color 0.2s;
}
.theme-nav-list a:hover { color: var(--color-primary); }
@media (min-width: 1280px) {
	.theme-nav-list a { font-size: 13px; letter-spacing: 0.24em; }
}
.site-header__logo { position: absolute; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; height: var(--logo-height); }
.site-logo { display: inline-flex; align-items: center; height: var(--logo-height); max-width: 100%; }
.site-logo-img { height: 100% !important; width: auto !important; max-height: 100%; object-fit: contain; }
.site-header__logo .site-logo-text { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1; }
.site-header__icons { display: flex; align-items: center; }
.theme-search-open { display: none; }
@media (min-width: 640px) { .theme-search-open { display: inline-flex; } }
.theme-cart-btn { position: relative; }
.theme-cart-count {
	position: absolute; top: -0.1rem; right: -0.1rem; min-width: 1.15rem; height: 1.15rem;
	display: flex; align-items: center; justify-content: center; padding: 0 0.2rem;
	font-size: 11px; font-weight: 500; border-radius: 999px;
	background: var(--color-primary); color: var(--color-primary-foreground);
}
.theme-cart-count:empty { display: none; }

.site-header.is-solid { background: color-mix(in srgb, var(--color-background) 85%, transparent); }

/* Mobile menu */
.theme-mobile-menu-overlay {
	position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 30%, transparent);
	z-index: 59; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.theme-mobile-menu { position: fixed; inset: 0; z-index: 60; pointer-events: none; }
.theme-mobile-menu__panel {
	position: absolute; top: 0; left: 0; bottom: 0; width: 88vw; max-width: 24rem;
	background: var(--color-background); border-right: 1px solid var(--color-border);
	display: flex; flex-direction: column; transform: translateX(-100%);
	transition: transform 0.35s var(--transition-smooth);
}
body.mobile-menu-open .theme-mobile-menu-overlay { opacity: 1; pointer-events: auto; }
body.mobile-menu-open .theme-mobile-menu { pointer-events: auto; }
body.mobile-menu-open .theme-mobile-menu__panel { transform: translateX(0); }
.theme-mobile-menu__head { position: relative; display: flex; align-items: center; justify-content: center; height: 4.8rem; border-bottom: 1px solid var(--color-border); flex-shrink: 0; padding: 0 1.25rem; }
.theme-mobile-menu__head .site-logo { height: var(--logo-height); }
.theme-mobile-menu__head .theme-mobile-menu__close { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); padding: 0.25rem; }
.theme-mobile-menu__nav { flex: 1; overflow-y: auto; padding: 0.75rem 0.5rem; }
.theme-mobile-nav-list li { border-bottom: 1px solid color-mix(in srgb, var(--color-border) 40%, transparent); }
.theme-mobile-nav-list a {
	display: block; padding: 1rem 0.75rem; font-size: 1rem; letter-spacing: 0.28em; text-transform: uppercase;
	font-family: var(--font-body); color: var(--color-foreground);
}
.theme-mobile-nav-list a:hover { color: var(--color-primary); }
.theme-mobile-menu__footer { border-top: 1px solid var(--color-border); padding: 1rem 0.75rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; flex-shrink: 0; }
.theme-mobile-menu__action {
	display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem;
	border: 1px solid var(--color-border); font-size: 0.875rem; letter-spacing: 0.24em; text-transform: uppercase;
}
.theme-mobile-menu__action:hover { background: var(--color-foreground); color: var(--color-background); }
.theme-mobile-menu__action--filled { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.theme-mobile-menu__action--filled:hover { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-primary-foreground); }

/* Search dialog */
.theme-search-dialog { position: fixed; inset: 0; z-index: 80; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
body.search-open .theme-search-dialog { opacity: 1; pointer-events: auto; }
.theme-search-dialog__backdrop { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 40%, transparent); backdrop-filter: blur(4px); border: none; }
.theme-search-dialog__panel {
	position: relative; background: var(--color-background); width: 100%; max-height: 92vh; overflow-y: auto;
	border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-elevated);
	transform: translateY(-16px); opacity: 0; transition: transform 0.3s, opacity 0.3s;
}
body.search-open .theme-search-dialog__panel { transform: translateY(0); opacity: 1; }
.theme-search-dialog__close { position: absolute; top: 1.25rem; right: 1.25rem; z-index: 10; opacity: 0.7; transition: opacity 0.2s; }
.theme-search-dialog__close:hover { opacity: 1; }
@media (min-width: 1024px) { .theme-search-dialog__close { top: 1.75rem; right: 2rem; } }
.theme-search-dialog__inner { padding-top: 2.5rem; padding-bottom: 2.5rem; }
@media (min-width: 1024px) { .theme-search-dialog__inner { padding-top: 3.5rem; padding-bottom: 3.5rem; } }
.theme-search-dialog__panel .container-wide { padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 1024px) { .theme-search-dialog__panel .container-wide { padding-left: 2.5rem; padding-right: 2.5rem; } }
.theme-search-dialog__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .theme-search-dialog__grid { grid-template-columns: 260px 1fr; gap: 4rem; } }
.theme-search-dialog__results { min-width: 0; }
@media (min-width: 1024px) { .theme-search-dialog__results { padding-right: 4rem; } }
.theme-search-dialog__categories h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-dialog__categories ul { display: flex; flex-direction: column; gap: 0.875rem; }
.theme-search-dialog__categories a, .theme-search-dialog__categories button {
	font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
}
.theme-search-dialog__categories a:hover, .theme-search-dialog__categories button:hover { color: var(--color-primary); }
.theme-search-dialog__field { display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 30%, transparent); padding-bottom: 0.75rem; }
.theme-search-dialog__field input { flex: 1; background: transparent; border: none; outline: none; font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); }
.theme-search-dialog__field input::placeholder { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-search-dialog__results-inner { margin-top: 2.5rem; }
.theme-search-dialog__results-inner h4 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-dialog__results-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
@media (min-width: 768px) { .theme-search-dialog__results-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .theme-search-dialog__results-grid { grid-template-columns: repeat(4,1fr); gap: 2rem; } }
.theme-search-hit { display: block; text-align: left; }
.theme-search-hit__image { aspect-ratio: 1/1; overflow: hidden; background: var(--color-secondary); position: relative; }
.theme-search-hit__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.theme-search-hit:hover .theme-search-hit__image img { transform: scale(1.05); }
.theme-search-hit__label {
	margin-top: 0.75rem; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
	line-height: 1.375; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
}
.theme-search-hit__price { margin-top: 0.25rem; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }

/* Contact modal */
.theme-modal { position: fixed; inset: 0; z-index: 90; opacity: 0; pointer-events: none; transition: opacity 0.25s; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
body.contact-modal-open .theme-modal { opacity: 1; pointer-events: auto; }
.theme-modal__backdrop { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 40%, transparent); border: none; }
.theme-modal__panel {
	position: relative; background: var(--color-background); width: 100%; max-width: 32rem; max-height: 90vh; overflow-y: auto;
	border: 1px solid var(--color-border); border-radius: var(--card-radius); padding: 2rem;
	transform: scale(0.96); opacity: 0; transition: transform 0.25s, opacity 0.25s;
}
body.contact-modal-open .theme-modal__panel { transform: scale(1); opacity: 1; }
.theme-modal__close { position: absolute; top: 0.75rem; right: 0.75rem; }
.theme-modal__title { font-family: var(--font-display); font-size: 1.5rem; margin-top: 0.5rem; }
.theme-modal__description { font-size: 0.9375rem; line-height: 1.6; margin-top: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.theme-modal__contact-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); border-top: 1px solid var(--color-border); padding-top: 1rem; margin-top: 0.5rem; }
.theme-modal__contact-row a:hover { color: var(--color-foreground); }
.theme-contact-form { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.theme-form-row-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .theme-form-row-2 { grid-template-columns: 1fr 1fr; } }
.theme-contact-form input, .theme-contact-form textarea,
.consult-card__form input, .consult-card__form select, .consult-card__form textarea,
.insights-section__form input {
	width: 100%; padding: 0.625rem 0.75rem; background: var(--color-background);
	border: 1px solid var(--color-border); font-size: 0.875rem; font-family: var(--font-body);
	transition: border-color 0.2s;
}
.theme-contact-form textarea { resize: none; }
.theme-contact-form input:focus, .theme-contact-form textarea:focus,
.consult-card__form input:focus, .consult-card__form select:focus, .consult-card__form textarea:focus,
.insights-section__form input:focus { outline: none; border-color: var(--color-primary); }
.theme-form-actions { display: flex; justify-content: flex-end; }
.theme-form-actions .theme-btn { height: 2.75rem; padding: 0 1.5rem; font-size: 12px; }
.theme-modal__success { display: none; text-align: center; padding: 2rem 0; }
.theme-modal__success.is-active { display: block; }
.theme-modal__success-icon {
	width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--color-primary); color: var(--color-primary-foreground);
	display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.theme-modal__success h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }

/* -------------------------------------------------------------------
 * Hero
 * ----------------------------------------------------------------- */
.hero-section { position: relative; width: 100%; }
.hero-section__media { position: relative; width: 100%; height: 100vh; min-height: 600px; overflow: hidden; background: var(--color-secondary); }
.hero-section__gradient {
	position: absolute; inset: 0;
	background-image: linear-gradient(to right, color-mix(in srgb, var(--color-accent) 94%, transparent), color-mix(in srgb, var(--color-accent) 76%, transparent) 55%, color-mix(in srgb, var(--color-accent) 30%, transparent));
}
.hero-section__content { position: absolute; inset: 0; display: flex; align-items: center; }
.hero-section__inner { max-width: 42rem; }
.hero-section__eyebrow { display: block; font-family: var(--font-body); font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 1rem; }
.hero-section__title { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--color-accent-foreground); font-size: 2.25rem; line-height: 1.05; margin-bottom: 1.5rem; max-width: 36rem; }
@media (min-width: 768px) { .hero-section__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-section__title { font-size: 4.5rem; } }
.hero-section__description { font-family: var(--font-body); font-size: 0.875rem; color: color-mix(in srgb, var(--color-accent-foreground) 85%, transparent); max-width: 28rem; margin-bottom: 2rem; line-height: 1.7; }
@media (min-width: 768px) { .hero-section__description { font-size: 1rem; } }
.hero-section__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-section__badges { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; font-family: var(--font-body); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-accent-foreground) 75%, transparent); }
.hero-section__badges li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-section__badges svg { color: var(--color-primary); }
body.theme-no-hero .hero-section, body:not(.theme-no-hero) main.theme-home > .hero-section { }
body.theme-no-hero .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }

/* -------------------------------------------------------------------
 * Credentials
 * ----------------------------------------------------------------- */
.credentials-section { background: var(--color-accent); color: var(--color-accent-foreground); padding: 5rem 0; }
@media (min-width: 1024px) { .credentials-section { padding: 7rem 0; } }
.credentials-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .credentials-section__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.credentials-section__copy { display: flex; flex-direction: column; justify-content: center; }
.credentials-section__heading { font-size: 2.25rem; margin-top: 1rem; margin-bottom: 0.75rem; color: var(--color-accent-foreground); }
@media (min-width: 768px) { .credentials-section__heading { font-size: 3rem; } }
.credentials-section__subtitle { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; color: var(--color-primary); margin-bottom: 1.5rem; }
.credentials-section__body { display: flex; flex-direction: column; gap: 1rem; color: color-mix(in srgb, var(--color-accent-foreground) 80%, transparent); line-height: 1.7; }
.credentials-section__items { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr; gap: 1px; background: color-mix(in srgb, var(--color-accent-foreground) 15%, transparent); border: 1px solid color-mix(in srgb, var(--color-accent-foreground) 15%, transparent); }
@media (min-width: 640px) { .credentials-section__items { grid-template-columns: repeat(3,1fr); } }
.credentials-section__items li { background: var(--color-accent); padding: 1.5rem; display: flex; flex-direction: column; }
.credentials-section__items svg { color: var(--color-primary); }
.credentials-section__items h3 { font-size: 0.875rem; font-weight: 600; margin-top: 1rem; }
.credentials-section__items p { font-size: 0.8125rem; color: color-mix(in srgb, var(--color-accent-foreground) 70%, transparent); margin-top: 0.5rem; line-height: 1.6; }
.credentials-section__media { position: relative; width: 100%; aspect-ratio: 4/5; min-height: 28rem; overflow: hidden; }
@media (min-width: 1024px) { .credentials-section__media { aspect-ratio: auto; height: 100%; } }

/* -------------------------------------------------------------------
 * Services carousel
 * ----------------------------------------------------------------- */
.services-section { background: color-mix(in srgb, var(--color-secondary) 60%, transparent); padding: 5rem 0; }
@media (min-width: 1024px) { .services-section { padding: 7rem 0; } }
.services-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.5rem; }
.services-section__heading { font-size: 2.25rem; margin-top: 0.75rem; }
@media (min-width: 768px) { .services-section__heading { font-size: 3rem; } }
.theme-carousel-nav { display: flex; align-items: center; gap: 0.25rem; flex-shrink: 0; }
.theme-carousel-btn { width: 2.25rem; height: 2.25rem; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--color-border); transition: background-color 0.2s, color 0.2s; }
.theme-carousel-btn:hover { background: var(--color-foreground); color: var(--color-background); }
.services-section__scroller { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-top: 1.5rem; padding-bottom: 4rem; margin-top: -1.5rem; scrollbar-width: none; }
.services-section__scroller::-webkit-scrollbar { display: none; }
.services-section__card {
	flex-shrink: 0; width: 82vw; scroll-snap-align: start; background: var(--color-background); border: 1px solid var(--color-border);
	padding: 2rem; display: flex; flex-direction: column;
	transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth), border-color 0.5s var(--transition-smooth);
}
@media (min-width: 640px) { .services-section__card { width: calc((100% - 1.25rem) / 2); } }
@media (min-width: 1024px) { .services-section__card { width: calc((100% - 3rem) / 3); padding: 2.5rem; } }
.services-section__card:hover { transform: translateY(-0.5rem); box-shadow: 0 28px 60px -24px color-mix(in srgb, var(--color-foreground) 28%, transparent); border-color: var(--color-primary); }
.services-section__card h3 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.3; margin-bottom: 1rem; transition: color 0.5s; }
@media (min-width: 768px) { .services-section__card h3 { font-size: 1.875rem; } }
.services-section__card:hover h3 { color: var(--color-primary); }
.services-section__card ul { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.services-section__card li { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.6; }
.services-section__goal { margin-top: auto; font-size: 0.875rem; border-top: 1px solid var(--color-border); padding-top: 1rem; }
.services-section__goal span { color: var(--color-primary); font-weight: 600; }
.services-section__disclaimer { font-size: 0.75rem; color: var(--color-muted-foreground); max-width: 48rem; margin-top: -2rem; }

/* -------------------------------------------------------------------
 * Who we serve
 * ----------------------------------------------------------------- */
.serve-section { background: var(--color-background); padding: 5rem 0 1rem; }
@media (min-width: 1024px) { .serve-section { padding: 6rem 0 1rem; } }
.serve-section__intro { max-width: 42rem; margin-bottom: 2rem; }
.serve-section__heading { font-size: 2.25rem; margin-top: 0.75rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .serve-section__heading { font-size: 3rem; } }
.serve-section__intro p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; }
.serve-section__tiles { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
@media (min-width: 640px) { .serve-section__tiles { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .serve-section__tiles { grid-template-columns: repeat(4,1fr); } }
.serve-section__tile { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--color-secondary); }
@media (min-width: 640px) { .serve-section__tile { aspect-ratio: 4/5; } }
.serve-section__tile img { transition: transform 0.7s; }
.serve-section__tile:hover img { transform: scale(1.05); }
.serve-section__tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-accent) 90%, transparent), color-mix(in srgb, var(--color-accent) 40%, transparent), color-mix(in srgb, var(--color-accent) 10%, transparent)); transition: background 0.2s; }
.serve-section__tile-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem 1.25rem; }
.serve-section__tile-content h3 { font-family: var(--font-body); font-weight: 600; color: var(--color-accent-foreground); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; }
@media (min-width: 768px) { .serve-section__tile-content h3 { font-size: 0.875rem; letter-spacing: 0.32em; } }
.serve-section__tile-content p { font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--color-accent-foreground) 90%, transparent); font-size: 1rem; line-height: 1.35; margin-top: 0.375rem; }
@media (min-width: 1024px) { .serve-section__tile-content p { font-size: 1.125rem; } }
.serve-section__list { display: grid; grid-template-columns: 1fr; gap: 1.5rem 2.5rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .serve-section__list { grid-template-columns: 1fr 1fr; } }
.serve-section__list h3 { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); }
.serve-section__list p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-top: 0.5rem; line-height: 1.6; }

/* -------------------------------------------------------------------
 * Product cards (shared everywhere — Section 31.13)
 * ----------------------------------------------------------------- */
.theme-product-grid { display: flex; flex-wrap: wrap; gap: 2.5rem 1.25rem; align-items: stretch; }
.theme-product-grid > .theme-product-card-wrap,
.theme-product-grid > .product-row-section__item { width: calc(50% - 0.625rem); }
@media (min-width: 768px) {
	.theme-product-grid { display: grid; grid-template-columns: repeat(3,1fr); }
	.theme-product-grid > .theme-product-card-wrap,
	.theme-product-grid > .product-row-section__item { width: auto; }
}
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(4,1fr); } }
.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card { display: flex; flex-direction: column; height: 100%; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1/1; overflow: hidden; background: color-mix(in srgb, var(--color-muted) 60%, transparent); }
.theme-product-card__badge {
	position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
	font-weight: 600; background: color-mix(in srgb, var(--color-background) 90%, transparent); backdrop-filter: blur(4px);
	color: var(--color-foreground); padding: 0.375rem 0.75rem;
}
.theme-product-card__image { transition: opacity 0.5s; }
.theme-product-card-wrap:hover .theme-product-card__image { opacity: 0.9; }
.theme-product-card-wrap.is-sold-out .theme-product-card__image { opacity: 0.6; }
.theme-product-card__info { padding-top: 1rem; text-align: center; flex: 1; }
.theme-product-card__title { font-family: var(--font-body); font-size: 13px; color: var(--color-foreground); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; transition: color 0.2s; }
.theme-product-card-wrap:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__edition { font-family: var(--font-body); font-style: italic; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); margin-top: 0.125rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.theme-product-card__category { font-size: 11px; color: var(--color-muted-foreground); margin-top: 0.25rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.theme-product-card__price { font-size: 12px; color: var(--color-foreground); margin-top: 0.25rem; }
.theme-product-card__price .woocommerce-Price-amount { font-family: var(--font-body); }

/* Product row (featured carousel) */
.product-row-section { background: var(--color-background); padding: 3.5rem 0 5rem; }
@media (min-width: 1024px) { .product-row-section { padding: 3.5rem 0 5rem; } }
.product-row-section__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; }
.product-row-section__title { font-family: var(--font-body); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; }
@media (min-width: 640px) { .product-row-section__title { font-size: 0.875rem; } }
.product-row-section__scroller { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; scrollbar-width: none; }
.product-row-section__scroller::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) { .product-row-section__scroller { gap: 1.5rem; } }
.product-row-section__item { flex-shrink: 0; width: 68vw; scroll-snap-align: start; }
@media (min-width: 640px) { .product-row-section__item { width: calc((100% - 1.25rem) / 2); } }
@media (min-width: 768px) { .product-row-section__item { width: calc((100% - 2.5rem) / 3); } }
@media (min-width: 1024px) { .product-row-section__item { width: calc((100% - 4.5rem) / 4); } }

/* Shop section */
.shop-section { background: var(--color-background); padding: 3.5rem 0 5rem; }
@media (min-width: 1024px) { .shop-section { padding: 3.5rem 0 5rem; } }
.shop-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.shop-heading { font-family: var(--font-body); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; }
@media (min-width: 640px) { .shop-heading { font-size: 0.875rem; } }
.shop-section__count { font-size: 0.75rem; color: var(--color-muted-foreground); }
.shop-section__description { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 42rem; margin-bottom: 2rem; }
.shop-section__controls { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; align-items: end; }
@media (min-width: 1024px) { .shop-section__controls { grid-template-columns: 1fr auto; gap: 2.5rem; } }
.shop-section__search { position: relative; max-width: 28rem; width: 100%; }
.shop-section__search svg { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); }
.shop-section__search input { width: 100%; height: 2.75rem; padding: 0 0.75rem 0 2.5rem; border: 1px solid var(--color-border); background: var(--color-background); font-size: 0.875rem; }
.shop-section__search input:focus { outline: none; border-color: var(--color-foreground); }
.shop-section__price-filter { width: 100%; }
@media (min-width: 1024px) { .shop-section__price-filter { width: 18rem; } }
.shop-section__price-head { display: flex; justify-content: space-between; margin-bottom: 0.75rem; }
.shop-section__price-head span:first-child { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-foreground); }
.shop-section__price-head span:last-child { font-size: 0.75rem; }
.shop-section__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.shop-chip { padding: 0 1rem; height: 2.25rem; display: inline-flex; align-items: center; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; border: 1px solid var(--color-border); background: var(--color-background); color: var(--color-foreground); transition: border-color 0.2s, background-color 0.2s, color 0.2s; }
.shop-chip:hover { border-color: var(--color-foreground); }
.shop-chip.is-active { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.shop-section__empty { padding: 4rem 0; text-align: center; font-size: 0.875rem; color: var(--color-muted-foreground); }

/* Dual range slider (Section 31.4) */
.price-range-wrapper { position: relative; height: 1.5rem; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); pointer-events: none; border-radius: 999px; }
.range-track-bg { left: 0; right: 0; background: var(--color-border); }
.range-track-fill { background: var(--color-primary); }
.range-input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; margin: 0; -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none; }
.range-input::-webkit-slider-thumb { -webkit-appearance: none; pointer-events: auto; width: 1.1rem; height: 1.1rem; border-radius: 50%; background: var(--color-background); border: 2px solid var(--color-primary); cursor: pointer; }
.range-input::-moz-range-thumb { pointer-events: auto; width: 1.1rem; height: 1.1rem; border-radius: 50%; background: var(--color-background); border: 2px solid var(--color-primary); cursor: pointer; }
.range-input::-moz-range-track { background: transparent; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

/* -------------------------------------------------------------------
 * Pricing
 * ----------------------------------------------------------------- */
.pricing-section { background: var(--color-background); padding: 5rem 0; border-top: 1px solid var(--color-border); }
@media (min-width: 1024px) { .pricing-section { padding: 7rem 0; } }
.pricing-section__intro { max-width: 42rem; }
.pricing-section__heading { font-size: 2.25rem; margin-top: 0.75rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .pricing-section__heading { font-size: 3rem; } }
.pricing-section__intro p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; }
.pricing-section__tiers { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--color-border); border: 1px solid var(--color-border); margin-top: 3rem; }
@media (min-width: 768px) { .pricing-section__tiers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-section__tiers { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } }
.pricing-tier { background: var(--color-background); padding: 1.75rem; display: flex; flex-direction: column; }
@media (min-width: 1024px) { .pricing-tier { padding: 2.25rem; } }
.pricing-tier__tagline { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-primary); }
.pricing-tier__title { font-family: var(--font-display); font-style: italic; font-size: 1.875rem; margin-top: 0.75rem; }
@media (min-width: 768px) { .pricing-tier__title { font-size: 2.25rem; } }
.pricing-tier__range { font-size: 0.875rem; font-weight: 600; margin-top: 0.5rem; }
.pricing-tier__description { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-top: 1rem; line-height: 1.6; }
.pricing-tier__includes { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-tier__includes li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.pricing-tier__includes svg { margin-top: 0.15rem; flex-shrink: 0; color: var(--color-primary); }
.pricing-tier__best { margin-top: auto; padding-top: 1.5rem; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-muted-foreground); }
.pricing-section__packages { margin-top: 3.5rem; }
.pricing-section__packages-title { font-family: var(--font-display); font-style: italic; font-size: 1.875rem; }
.pricing-section__packages-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--color-border); border: 1px solid var(--color-border); margin-top: 1.5rem; }
@media (min-width: 768px) { .pricing-section__packages-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .pricing-section__packages-grid { grid-template-columns: repeat(3,1fr); } }
.pricing-section__packages-grid li { background: var(--color-background); padding: 1.5rem 1.75rem; }
.pricing-package__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.pricing-package__head h4 { font-size: 0.875rem; font-weight: 600; line-height: 1.4; }
.pricing-package__head span { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--color-primary); flex-shrink: 0; }
.pricing-section__packages-grid p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-top: 0.75rem; line-height: 1.6; }
.pricing-section__packages-note { font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 1.25rem; }

.consult-card { margin-top: 3rem; border: 1px solid var(--color-border); background: color-mix(in srgb, var(--color-secondary) 60%, transparent); padding: 1.75rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .consult-card { padding: 2.5rem; } }
@media (min-width: 1024px) { .consult-card { grid-template-columns: minmax(0, 20rem) 1fr; gap: 2.5rem; padding: 3rem; } }
.consult-card__intro h3 { font-family: var(--font-display); font-style: italic; font-size: 1.875rem; margin-top: 0.75rem; line-height: 1.2; }
.consult-card__intro p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-top: 1rem; line-height: 1.6; }
.consult-card__form { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .consult-card__form { grid-template-columns: 1fr 1fr; } }
.consult-card__form label.label-eyebrow { display: block; margin-bottom: 0.375rem; }
.consult-card__form-field--split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.consult-card__form-field--full { grid-column: 1 / -1; }
.consult-card__form-submit { display: flex; justify-content: flex-end; }
.consult-card__form textarea { resize: none; }
.consult-card__form .theme-btn { height: 3rem; padding: 0 2.5rem; }

/* -------------------------------------------------------------------
 * About
 * ----------------------------------------------------------------- */
.about-section { background: color-mix(in srgb, var(--color-secondary) 60%, transparent); padding: 5rem 0; border-top: 1px solid var(--color-border); }
@media (min-width: 1024px) { .about-section { padding: 7rem 0; } }
.about-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-section__media { position: relative; width: 100%; aspect-ratio: 1/1; min-height: 28rem; overflow: hidden; }
@media (min-width: 1024px) { .about-section__media { aspect-ratio: auto; height: 100%; } }
.about-section__heading { font-size: 2.25rem; margin-top: 1rem; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .about-section__heading { font-size: 3rem; } }
.about-section__title { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 1.5rem; }
.about-section__body { display: flex; flex-direction: column; gap: 1rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.7; margin-bottom: 2rem; }
.about-section__quote { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; color: var(--color-foreground); }
.about-section__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.about-section__ctas .theme-btn { height: 2.75rem; padding: 0 2rem; font-size: 11px; letter-spacing: 0.28em; }

/* -------------------------------------------------------------------
 * Testimonials
 * ----------------------------------------------------------------- */
.testimonials-section { background: var(--color-background); padding: 5rem 0; border-top: 1px solid var(--color-border); }
@media (min-width: 1024px) { .testimonials-section { padding: 7rem 0; } }
.testimonials-section__intro { max-width: 42rem; }
.testimonials-section__heading { font-size: 2.25rem; margin-top: 0.75rem; }
@media (min-width: 768px) { .testimonials-section__heading { font-size: 3rem; } }
.testimonials-section__grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--color-border); border: 1px solid var(--color-border); margin-top: 3rem; }
@media (min-width: 768px) { .testimonials-section__grid { grid-template-columns: repeat(3,1fr); } }
.testimonials-section__grid li { background: var(--color-background); padding: 1.75rem; display: flex; flex-direction: column; }
@media (min-width: 1024px) { .testimonials-section__grid li { padding: 2.25rem; } }
.testimonials-section__grid svg { color: var(--color-primary); }
.testimonials-section__grid blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.4; margin: 1.25rem 0 0; }
@media (min-width: 768px) { .testimonials-section__grid blockquote { font-size: 1.5rem; } }
.testimonials-section__attribution { margin-top: auto; padding-top: 1.5rem; }
.testimonials-section__attribution .name { font-size: 0.875rem; font-weight: 600; }
.testimonials-section__attribution .role { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-muted-foreground); margin-top: 0.25rem; }

/* -------------------------------------------------------------------
 * Process
 * ----------------------------------------------------------------- */
.process-section { background: color-mix(in srgb, var(--color-secondary) 60%, transparent); padding: 5rem 0; border-top: 1px solid var(--color-border); }
@media (min-width: 1024px) { .process-section { padding: 7rem 0; } }
.process-section__head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .process-section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; } }
.process-section__heading { font-size: 2.25rem; margin-top: 0.75rem; }
@media (min-width: 768px) { .process-section__heading { font-size: 3rem; } }
.process-section__head p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-top: 1.25rem; max-width: 36rem; line-height: 1.7; }
.process-section__head .theme-btn { align-self: flex-start; height: 2.75rem; padding: 0 2rem; font-size: 11px; }
.process-section__grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--color-border); border: 1px solid var(--color-border); }
@media (min-width: 768px) { .process-section__grid { grid-template-columns: repeat(2,1fr); } }
.process-section__grid li { background: var(--color-background); padding: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; transition: background-color 0.2s; }
@media (min-width: 1024px) { .process-section__grid li { padding: 2.25rem; } }
.process-section__grid li:hover { background: color-mix(in srgb, var(--color-secondary) 60%, transparent); }
.process-step__meta { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); }
.process-section__grid h3 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.3; }
@media (min-width: 768px) { .process-section__grid h3 { font-size: 1.875rem; } }
.process-section__grid p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.6; }
.process-step__note { color: var(--color-muted-foreground); margin-top: 0.25rem; }

/* -------------------------------------------------------------------
 * Insights
 * ----------------------------------------------------------------- */
.insights-section { background: color-mix(in srgb, var(--color-secondary) 60%, transparent); padding: 5rem 0; border-top: 1px solid var(--color-border); }
@media (min-width: 1024px) { .insights-section { padding: 7rem 0; } }
.insights-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .insights-section__grid { grid-template-columns: minmax(0,26rem) 1fr; gap: 5rem; } }
.insights-section__heading { font-size: 2.25rem; margin-top: 0.75rem; }
@media (min-width: 768px) { .insights-section__heading { font-size: 3rem; } }
.insights-section__intro p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-top: 1.25rem; line-height: 1.7; }
.insights-section__disclaimer { display: flex; align-items: flex-start; gap: 0.5rem; border-left: 2px solid var(--color-primary); padding: 0.25rem 0 0.25rem 1rem; margin-top: 1.5rem; }
.insights-section__disclaimer svg { margin-top: 0.15rem; flex-shrink: 0; color: var(--color-primary); }
.insights-section__disclaimer p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; margin-top: 0; }
.insights-section__form { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.5rem; max-width: 28rem; }
.insights-section__embed { margin-top: 2rem; max-width: 28rem; }
@media (min-width: 480px) { .insights-section__form { flex-direction: row; } }
.insights-section__form input { flex: 1; min-width: 0; height: 2.75rem; }
.insights-section__form .theme-btn { height: 2.75rem; padding: 0 2rem; flex-shrink: 0; }
.insights-section__perks { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--color-border); border: 1px solid var(--color-border); }
@media (min-width: 640px) { .insights-section__perks { grid-template-columns: repeat(2,1fr); } }
.insights-section__perks li { background: var(--color-background); padding: 1.75rem; }
@media (min-width: 1024px) { .insights-section__perks li { padding: 2.25rem; } }
.insights-section__perks li.span-full { grid-column: span 1; }
@media (min-width: 640px) { .insights-section__perks li.span-full { grid-column: span 2; } }
.insights-section__perks svg { color: var(--color-primary); }
.insights-section__perks h3 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; margin-top: 1rem; line-height: 1.3; }
.insights-section__perks p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-top: 0.75rem; line-height: 1.6; }

/* -------------------------------------------------------------------
 * Resources
 * ----------------------------------------------------------------- */
.resources-section { background: var(--color-background); padding: 5rem 0; border-top: 1px solid var(--color-border); }
@media (min-width: 1024px) { .resources-section { padding: 7rem 0; } }
.resources-section__intro { max-width: 42rem; }
.resources-section__heading { font-size: 2.25rem; margin-top: 0.75rem; }
@media (min-width: 768px) { .resources-section__heading { font-size: 3rem; } }
.resources-section__intro p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-top: 1.25rem; line-height: 1.7; }
.resources-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 3rem; }
@media (min-width: 768px) { .resources-section__grid { grid-template-columns: repeat(3,1fr); gap: 1.5rem; } }
.resources-section__grid li { border: 1px solid var(--color-border); background: var(--color-background); }
.resources-section__media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--color-secondary); }
.resources-section__media img { transition: transform 0.7s; }
.resources-section__grid li:hover .resources-section__media img { transform: scale(1.05); }
.resources-section__badge { position: absolute; bottom: 0.75rem; left: 0.75rem; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; background: color-mix(in srgb, var(--color-background) 90%, transparent); padding: 0.375rem 0.75rem; z-index: 2; }
.resources-section__body { padding: 1.5rem; }
.resources-section__body h3 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.3; }
.resources-section__body p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-top: 0.5rem; line-height: 1.6; }
.resources-section__connect { margin-top: 3rem; border: 1px solid var(--color-border); background: color-mix(in srgb, var(--color-secondary) 60%, transparent); padding: 1.75rem; display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) { .resources-section__connect { flex-direction: row; align-items: center; justify-content: space-between; padding: 2.5rem; } }
.resources-section__connect h3 { font-family: var(--font-display); font-style: italic; font-size: 1.875rem; margin-top: 0.75rem; }
.resources-section__connect p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-top: 0.75rem; max-width: 28rem; line-height: 1.6; }
.resources-section__connect-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.resources-section__connect-list a, .resources-section__connect-list span {
	display: inline-flex; align-items: center; gap: 0.5rem; height: 2.75rem; padding: 0 1.25rem;
	border: 1px solid var(--color-foreground); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
	transition: background-color 0.2s, color 0.2s;
}
.resources-section__connect-list a:hover { background: var(--color-foreground); color: var(--color-background); }
.resources-section__connect-list span[aria-disabled] { border-style: dashed; color: var(--color-muted-foreground); cursor: default; }
.resources-section__connect-list a.is-filled { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.resources-section__connect-list a.is-filled:hover { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-primary-foreground); }

/* -------------------------------------------------------------------
 * Promise banner
 * ----------------------------------------------------------------- */
.promise-banner { position: relative; width: 100%; height: 70vh; overflow: hidden; }
@media (min-width: 768px) { .promise-banner { height: 80vh; } }
@media (min-width: 1024px) { .promise-banner { height: 85vh; } }
.promise-banner__image { will-change: transform; }
.promise-banner__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-accent) 75%, transparent); }
.promise-banner__content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 0 1.5rem; }
.promise-banner__content figure { max-width: 48rem; text-align: center; }
.promise-banner__content blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.875rem; color: var(--color-accent-foreground); line-height: 1.15; }
@media (min-width: 768px) { .promise-banner__content blockquote { font-size: 3rem; } }
@media (min-width: 1024px) { .promise-banner__content blockquote { font-size: 3.75rem; } }
.promise-banner__content figcaption { margin-top: 2rem; font-size: 10px; letter-spacing: 0.42em; text-transform: uppercase; color: color-mix(in srgb, var(--color-accent-foreground) 80%, transparent); }
@media (min-width: 768px) { .promise-banner__content figcaption { font-size: 11px; } }
.promise-banner__ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

/* -------------------------------------------------------------------
 * FAQ
 * ----------------------------------------------------------------- */
.faq-section { background: var(--color-background); padding: 5rem 0; border-top: 1px solid var(--color-border); }
@media (min-width: 1024px) { .faq-section { padding: 7rem 0; } }
.faq-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.faq-section__intro { position: static; }
@media (min-width: 1024px) { .faq-section__intro { position: sticky; top: 8rem; } }
.faq-section__heading { font-size: 2.25rem; margin-top: 0.75rem; }
@media (min-width: 768px) { .faq-section__heading { font-size: 3rem; } }
.faq-section__intro p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-top: 1.5rem; max-width: 28rem; line-height: 1.7; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; text-align: left; padding: 1.25rem 0; }
.faq-item__question span:first-child { font-size: 0.9375rem; color: var(--color-foreground); transition: color 0.2s; }
@media (min-width: 768px) { .faq-item__question span:first-child { font-size: 1rem; } }
.faq-item__question:hover span:first-child { color: var(--color-primary); }
.faq-item__icon { flex-shrink: 0; display: inline-flex; }
.faq-item__icon .icon-minus { display: none; }
.faq-item.is-open .faq-item__icon .icon-plus { display: none; }
.faq-item.is-open .faq-item__icon .icon-minus { display: inline-flex; }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--transition-smooth); }
.faq-item__answer p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; padding-bottom: 1.5rem; padding-right: 2.5rem; }
.faq-item.is-open .faq-item__answer { max-height: 480px; }

/* -------------------------------------------------------------------
 * Marquee
 * ----------------------------------------------------------------- */
.marquee-section { position: relative; background: var(--color-accent); color: var(--color-accent-foreground); border-top: 1px solid color-mix(in srgb, var(--color-accent-foreground) 20%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--color-accent-foreground) 20%, transparent); padding: 1.5rem 0; overflow: hidden; isolation: isolate; contain: paint; }
@media (min-width: 1024px) { .marquee-section { padding: 2rem 0; } }
.marquee-section__viewport { display: flex; overflow: hidden; width: 100%; }
.marquee-section__track { display: flex; flex-shrink: 0; white-space: nowrap; align-items: center; gap: 2.5rem; animation: theme-marquee 38s linear infinite; width: max-content; }
@media (min-width: 1024px) { .marquee-section__track { gap: 3.5rem; } }
.marquee-section:hover .marquee-section__track { animation-play-state: paused; }
.marquee-section__word { font-family: var(--font-display); font-style: italic; font-size: 1.875rem; color: var(--color-accent-foreground); }
@media (min-width: 768px) { .marquee-section__word { font-size: 2.25rem; } }
@media (min-width: 1024px) { .marquee-section__word { font-size: 3rem; } }
.marquee-section__dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--color-primary); flex-shrink: 0; }

/* -------------------------------------------------------------------
 * Contact
 * ----------------------------------------------------------------- */
.contact-section { background: var(--color-background); padding: 5rem 0; border-top: 1px solid var(--color-border); }
@media (min-width: 1024px) { .contact-section { padding: 7rem 0; } }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-section__copy { display: flex; flex-direction: column; justify-content: center; }
.contact-section__heading { font-size: 2.25rem; margin-top: 0.75rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .contact-section__heading { font-size: 3rem; } }
.contact-section__copy p { color: color-mix(in srgb, var(--color-foreground) 80%, transparent); margin-bottom: 2rem; max-width: 28rem; line-height: 1.7; }
.contact-section__links { display: flex; flex-direction: column; gap: 1rem; }
.contact-section__links a { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; transition: color 0.2s; overflow-wrap: anywhere; }
.contact-section__links a:hover { color: var(--color-primary); }
.contact-section__card { position: relative; overflow: hidden; padding: 2rem; display: flex; flex-direction: column; justify-content: center; min-height: 22rem; height: 100%; }
@media (min-width: 1024px) { .contact-section__card { padding: 3rem; } }
.contact-section__card-scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-accent) 80%, transparent); }
.contact-section__card-content { position: relative; }
.contact-section__card-content h3 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--color-accent-foreground); margin-top: 0.75rem; margin-bottom: 1.5rem; line-height: 1.3; }
@media (min-width: 768px) { .contact-section__card-content h3 { font-size: 1.875rem; } }
.contact-section__card-content p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-accent-foreground) 85%, transparent); margin-bottom: 2rem; max-width: 28rem; line-height: 1.6; }

/* -------------------------------------------------------------------
 * Footer
 * ----------------------------------------------------------------- */
.site-footer { background: var(--color-foreground); color: var(--color-background); overflow: hidden; position: relative; }
.site-footer__top { padding-top: 4rem; padding-bottom: 0.75rem; }
@media (min-width: 1024px) { .site-footer__top { padding-top: 5rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(4,1fr); gap: 2.5rem 3rem; } }
.site-footer__brand .site-logo { height: 7rem; }
@media (min-width: 1024px) { .site-footer__brand .site-logo { height: 8rem; } }
.site-footer__brand .site-logo-img { height: 100% !important; width: auto !important; object-fit: contain; }
.site-footer__brand p { margin-top: 1.25rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-background) 70%, transparent); max-width: 20rem; line-height: 1.7; }
.site-footer__col h4 { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: var(--color-primary); margin-bottom: 1.25rem; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__col a, .site-footer__col button { font-size: 0.875rem; color: color-mix(in srgb, var(--color-background) 70%, transparent); transition: color 0.2s; }
.site-footer__col a:hover, .site-footer__col button:hover { color: var(--color-primary); }
.site-footer__connect li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-background) 70%, transparent); }
.site-footer__connect a { overflow-wrap: anywhere; }
.site-footer__note { color: color-mix(in srgb, var(--color-background) 50%, transparent); }
.site-footer__bottom { margin-top: 1.5rem; padding-top: 0.75rem; border-top: 1px solid color-mix(in srgb, var(--color-background) 15%, transparent); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; } }
.site-footer__bottom p { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-background) 60%, transparent); text-align: center; max-width: 100%; }

/* -------------------------------------------------------------------
 * 404
 * ----------------------------------------------------------------- */
.theme-404 {
	display: flex;
	min-height: 100dvh;
	align-items: center;
	justify-content: center;
	background: var(--color-muted);
	padding: 2rem 1.5rem;
}
.theme-404__inner { text-align: center; }
.theme-404 h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.theme-404 p { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-404__link { color: var(--color-primary); text-decoration: underline; transition: color 0.2s; }
.theme-404__link:hover { color: color-mix(in srgb, var(--color-primary) 90%, transparent); }

/* -------------------------------------------------------------------
 * Cart drawer & overlay
 * ----------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); z-index: 64; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
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: 32rem; background: var(--color-background); z-index: 65;
	box-shadow: var(--shadow-elevated); display: flex; flex-direction: column; transform: translateX(100%);
	transition: transform 0.35s var(--transition-smooth); pointer-events: none;
}
body.cart-open #theme-cart-drawer { transform: translateX(0); pointer-events: auto; }
#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: 2rem 2rem 1.25rem; border-bottom: 1px solid var(--color-border); flex-shrink: 0; }
.theme-cart-drawer__header h2 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; }
.theme-cart-drawer__empty svg { color: var(--color-muted-foreground); margin-bottom: 1.25rem; }
.theme-cart-drawer__empty p { color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 2rem; }
.theme-cart-item { display: flex; gap: 1.25rem; }
.theme-cart-item__image { width: 6rem; height: 8rem; background: var(--color-secondary); overflow: hidden; flex-shrink: 0; display: block; }
.theme-cart-item__image img { width: 100%; height: 100% !important; object-fit: cover; }
.theme-cart-item__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-item__name { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-foreground); }
.theme-cart-item__name:hover { opacity: 0.7; }
.theme-cart-item__variation { font-size: 12px; color: var(--color-muted-foreground); margin-top: 0.375rem; font-style: italic; }
.theme-cart-item__price { font-size: 0.875rem; margin-top: 0.375rem; }
.theme-cart-item__row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; }
.theme-cart-item__qty { display: flex; align-items: center; border: 1px solid var(--color-border); }
.theme-cart-item__qty button { padding: 0.375rem 0.625rem; }
.theme-cart-item__qty button:hover { background: var(--color-secondary); }
.theme-cart-item__qty span { padding: 0 0.75rem; font-size: 0.875rem; min-width: 28px; text-align: center; }
.theme-cart-item__remove { font-size: 0.75rem; color: var(--color-muted-foreground); text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--color-muted-foreground) 50%, transparent); text-underline-offset: 4px; }
.theme-cart-item__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__pair { padding-top: 1rem; border-top: 1px solid var(--color-border); }
.theme-cart-drawer__pair-title { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; margin-bottom: 1rem; }
.theme-cart-drawer__pair-scroller { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; overflow: hidden; max-width: 100%; }
.theme-cart-drawer__pair-item:nth-child(n+3) { display: none !important; }
@media (min-width: 1024px) {
	.theme-cart-drawer__pair-scroller { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.theme-cart-drawer__pair-item:nth-child(n+3) { display: block !important; }
}
.theme-cart-drawer__pair-item { width: 100%; min-width: 0; text-align: left; }
.theme-cart-drawer__pair-image { display: block; aspect-ratio: 3/4; background: var(--color-secondary); overflow: hidden; margin-bottom: 0.5rem; }
.theme-cart-drawer__pair-image img { width: 100%; height: 100% !important; object-fit: cover; transition: transform 0.7s; }
.theme-cart-drawer__pair-item:hover .theme-cart-drawer__pair-image img { transform: scale(1.05); }
.theme-cart-drawer__pair-name { display: block; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.theme-cart-drawer__pair-price { display: block; font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.125rem; }
.theme-cart-drawer__footer { padding: 1.5rem 2rem; border-top: 1px solid var(--color-border); flex-shrink: 0; display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--font-display); font-size: 1.25rem; }
.theme-cart-drawer__note { font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout { width: 100%; }

/* Hide "View cart" injected by WooCommerce after AJAX add-to-cart */
.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 — Section 14.1)
 * ----------------------------------------------------------------- */
.single-product .woocommerce-message,
.single-product .woocommerce-info,
#theme-cart-drawer .woocommerce-message {
	display: none;
}
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	list-style: none; margin: 0 0 1.5rem; padding: 1rem 1.25rem; border-radius: var(--card-radius);
	background: var(--color-secondary); color: var(--color-foreground); font-size: 0.875rem;
	border-left: 3px solid var(--color-primary);
}
.woocommerce-error { border-left-color: var(--color-primary); background: color-mix(in srgb, var(--color-primary) 8%, var(--color-background)); }

/* -------------------------------------------------------------------
 * WooCommerce: Add to cart button overrides (Section 11.4.1)
 * ----------------------------------------------------------------- */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-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: 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 {
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
	border-color: var(--color-foreground) !important;
	opacity: 1 !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;
}
.single-product .single_add_to_cart_button,
.add_to_cart_button.ajax_add_to_cart { text-transform: none; }
.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-cart-drawer__pair-item.add_to_cart_button {
	min-height: unset !important; padding: 0 !important; border-radius: 0 !important;
	background: transparent !important; color: var(--color-foreground) !important;
	display: block !important; text-transform: none !important; font-weight: 400 !important;
	letter-spacing: normal !important;
}
.theme-cart-drawer__pair-item.add_to_cart_button:hover { opacity: 1 !important; background: transparent !important; color: var(--color-primary) !important; }

/* -------------------------------------------------------------------
 * WooCommerce: single product responsive layout (Section 11.13)
 * ----------------------------------------------------------------- */
.single-product-page { padding-top: var(--header-height); }
.theme-product-breadcrumb {
	display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem;
	font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
	font-family: var(--font-body); color: var(--color-muted-foreground); margin-bottom: 1.5rem;
}
.theme-product-breadcrumb a { transition: color 0.2s; }
.theme-product-breadcrumb a:hover { color: var(--color-foreground); }
.theme-product-grid-layout { display: grid; grid-template-columns: 1fr; gap: 0; padding-top: 1rem; }
@media (min-width: 1024px) { .theme-product-grid-layout { grid-template-columns: 1fr 440px; align-items: start; } }
@media (min-width: 1280px) { .theme-product-grid-layout { grid-template-columns: 1fr 500px; } }
.theme-product-layout, .theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery { position: relative; }
.theme-product-gallery__inner { position: relative; display: flex; }
@media (min-width: 1024px) { .theme-product-gallery { position: sticky; top: 8rem; align-self: flex-start; } }
.theme-product-thumbnails { display: none; flex-direction: column; gap: 0.75rem; padding: 1rem; flex-wrap: wrap; max-width: 100%; background: color-mix(in srgb, var(--color-background) 40%, transparent); }
@media (min-width: 768px) { .theme-product-thumbnails { display: flex; } }
.theme-product-thumbnails-mobile { display: flex; gap: 0.5rem; padding: 1rem; overflow-x: auto; }
@media (min-width: 768px) { .theme-product-thumbnails-mobile { display: none; } }
.theme-product-thumbnails-mobile .theme-product-thumb { width: 4rem; height: 4rem; flex-shrink: 0; }
.theme-product-thumb { width: 4rem; height: 4rem; overflow: hidden; border: 1px solid transparent; border-radius: 0.375rem; opacity: 0.6; transition: opacity 0.2s, border-color 0.2s; }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-product-thumb.is-active, .theme-product-thumb:hover { opacity: 1; border-color: var(--color-foreground); }
.theme-product-main-image-wrap { position: relative; flex: 1; min-height: 60vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
@media (min-width: 768px) { .theme-product-main-image-wrap { min-height: 78vh; } }
@media (min-width: 1024px) { .theme-product-main-image-wrap { min-height: 88vh; } }
.theme-product-info { padding: 2.5rem 1.5rem; }
@media (min-width: 768px) { .theme-product-info { padding: 2.5rem 2.5rem; } }
@media (min-width: 1024px) { .theme-product-info { padding: 4rem 3rem; } }
.theme-product-cats { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-muted-foreground); overflow-wrap: break-word; word-break: break-word; }
.product-title { font-family: var(--font-body); font-weight: 400; font-size: 15px; letter-spacing: 0.22em; text-transform: uppercase; line-height: 1.5; color: var(--color-foreground); margin-top: 0.5rem; }
@media (min-width: 768px) { .product-title { font-size: 1rem; } }
.theme-product-edition { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); margin-top: 0.5rem; }
.theme-product-ref { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-foreground); margin-top: 0.75rem; }
.theme-divider { margin: 1.75rem 0; }
.theme-product-price { font-size: 1.125rem; }
.theme-stock-status--out { margin-top: 0.5rem; font-size: 0.875rem; color: var(--color-primary); font-weight: 600; }
.theme-product-note { margin-top: 1.75rem; background: color-mix(in srgb, var(--color-secondary) 70%, transparent); padding: 1rem 1.25rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); line-height: 1.6; border-radius: var(--card-radius); overflow-wrap: break-word; }

.theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.theme-add-to-cart-area--single { flex-direction: column; gap: 0; }
.theme-add-to-cart-area--single .single_add_to_cart_button {
	width: 100%;
	min-height: 3.5rem;
	flex: none;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-size: 12px;
}
.single-product .theme-quantity-wrapper { display: none !important; }
.theme-add-to-cart-area .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }
.woocommerce-variation-add-to-cart-disabled .single_add_to_cart_button { pointer-events: none !important; }
.woocommerce-variation-add-to-cart-enabled .single_add_to_cart_button { pointer-events: auto !important; }
.theme-quantity-wrapper { display: flex; align-items: center; border: 1px solid var(--color-border); }
.theme-qty-minus, .theme-qty-plus { padding: 0 1rem; height: var(--btn-height); font-size: 1rem; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input { width: 3.5rem; text-align: center; border: none; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border); height: var(--btn-height); -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-product-description { margin-top: 3rem; font-family: var(--font-display); font-size: 1.1875rem; line-height: 1.55; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); overflow-wrap: break-word; word-break: break-word; }
.theme-product-details { margin-top: 3rem; }
.theme-product-details__heading,
.theme-product-details h2 { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-foreground); margin: 0 0 1.25rem; }
.theme-product-details__description { font-family: var(--font-display); font-size: 1.1875rem; line-height: 1.55; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); white-space: pre-line; }
.theme-product-details__description p:first-child { margin-top: 0; }
.theme-product-details__list { margin: 1.5rem 0 0; padding-left: 1.25rem; list-style: disc; display: flex; flex-direction: column; gap: 0.625rem; font-family: var(--font-body); font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.theme-product-details__list li::marker { color: var(--color-primary); }
.theme-product-details__list li { line-height: 1.6; }
.theme-product-details__content { font-family: var(--font-body); font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.7; overflow-wrap: break-word; word-break: break-word; order: 2; }
.theme-product-details__content p:first-child { margin-top: 0; }
.single_variation_wrap .woocommerce-variation-description { display: none !important; }

.single-product .variations {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.single-product .variations select {
	display: block !important;
	visibility: visible !important;
}
.theme-attr-pills-wrap { margin-top: 1.75rem; }
.theme-attr-pills-wrap:empty { display: none; }
.theme-variation-group + .theme-variation-group { margin-top: 1.75rem; }
.theme-variation-label {
	font-size: 12px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--color-muted-foreground);
	margin: 0 0 0.75rem;
}
.theme-attr-pill-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-attr-pill {
	display: inline-flex; min-width: 3.5rem; padding: 0.625rem 1rem; margin: 0;
	text-align: center; font-size: 12px; font-family: var(--font-body); letter-spacing: 0.05em;
	border: 1px solid var(--color-border); border-radius: 0.375rem; transition: all 0.2s;
}
.theme-attr-pill.is-selected { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.theme-attr-pill:hover { border-color: var(--color-foreground); }

.related-products-section { margin-top: 3rem; padding: 6rem 0; border-top: 1px solid var(--color-border); }
.related-products-section__head { margin-bottom: 3rem; }
.related-products-section__head h2 { font-family: var(--font-display); font-size: 1.875rem; line-height: 1.2; }
@media (min-width: 768px) { .related-products-section__head h2 { font-size: 2.25rem; } }
.related-products-section__accent { font-style: italic; color: var(--color-primary); }
.related-products-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem 2rem; }
@media (min-width: 640px) { .related-products-section__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .related-products-section__grid { grid-template-columns: repeat(3, 1fr); } }

/* -------------------------------------------------------------------
 * Shop archive
 * ----------------------------------------------------------------- */
.shop-archive-page { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; }
.shop-archive-page .page-title { font-family: var(--font-display); font-style: italic; font-size: 2.25rem; margin-bottom: 2rem; }
.shop-archive-page__pagination { margin-top: 2.5rem; text-align: center; }
.theme-shop-empty { padding: 4rem 0; text-align: center; color: var(--color-muted-foreground); }

/* -------------------------------------------------------------------
 * Checkout (WooCommerce Blocks) — Section 13
 * ----------------------------------------------------------------- */
body.woocommerce-checkout .site-main { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; }
body.woocommerce-checkout .page-title { font-family: var(--font-display); font-style: italic; font-size: 2.25rem; margin-bottom: 2rem; }

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-main,
body.woocommerce-checkout .wc-block-components-sidebar {
	min-width: 0 !important;
	width: 100% !important;
	max-width: none !important;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-text-input input[type="text"],
body.woocommerce-checkout .wc-block-components-text-input input[type="email"],
body.woocommerce-checkout .wc-block-components-text-input input[type="tel"],
body.woocommerce-checkout .wc-block-components-text-input input[type="number"],
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-country-input select,
body.woocommerce-checkout .wc-block-components-state-input select {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body) !important;
	font-size: 0.875rem !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	color: var(--color-foreground) !important;
	background: var(--color-background) !important;
	border: 1px solid var(--color-border) !important;
	border-radius: var(--card-radius) !important;
	box-shadow: none !important;
	appearance: auto !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-country-input select:focus,
body.woocommerce-checkout .wc-block-components-state-input select:focus {
	outline: none !important;
	border-color: var(--color-primary) !important;
	box-shadow: 0 0 0 1px var(--color-primary) !important;
}

body.woocommerce-checkout .wc-block-checkout {
	display: block !important;
	max-width: var(--container-max) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-medium,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
		gap: var(--checkout-gap) !important;
		align-items: start !important;
		width: 100% !important;
	}
	body.woocommerce-checkout .wc-block-components-notice-banner,
	body.woocommerce-checkout .wc-block-checkout__terms { grid-column: 1 / -1 !important; }
	body.woocommerce-checkout .wc-block-checkout__main,
	body.woocommerce-checkout .wc-block-components-main,
	body.woocommerce-checkout .wp-block-woocommerce-checkout-fields-block {
		grid-column: 1 !important;
		grid-row: 1 !important;
		display: block !important;
		min-width: 0 !important;
		width: 100% !important;
		max-width: none !important;
		flex: none !important;
	}
	body.woocommerce-checkout .wc-block-checkout__sidebar,
	body.woocommerce-checkout .wc-block-components-sidebar,
	body.woocommerce-checkout .wp-block-woocommerce-checkout-totals-block {
		grid-column: 2 !important;
		grid-row: 1 !important;
		display: block !important;
		min-width: 0 !important;
		width: 100% !important;
		max-width: none !important;
		flex: none !important;
		position: sticky !important;
		top: calc(var(--header-height) + 1rem) !important;
		align-self: start !important;
	}
	body.woocommerce-checkout .wc-block-checkout__actions .checkout-order-summary-block-fill-wrapper,
	body.woocommerce-checkout .wc-block-checkout__actions .wp-block-woocommerce-checkout-order-summary-block {
		display: none !important;
	}
	body.woocommerce-checkout .wc-block-components-checkout-order-summary__title {
		pointer-events: none !important;
	}
	body.woocommerce-checkout .wc-block-components-checkout-order-summary__title-icon {
		display: none !important;
	}
	body.woocommerce-checkout .wc-block-components-checkout-order-summary__content {
		display: block !important;
		height: auto !important;
		visibility: visible !important;
	}
	body.woocommerce-checkout .wc-block-checkout__main .wc-block-components-form,
	body.woocommerce-checkout .wc-block-checkout__main .wc-block-checkout__form {
		display: flex !important;
		flex-direction: column !important;
		gap: 1.5rem !important;
		width: 100% !important;
	}
	body.woocommerce-checkout .wc-block-checkout__billing-fields,
	body.woocommerce-checkout .wc-block-checkout__shipping-fields,
	body.woocommerce-checkout .wc-block-checkout__payment-method,
	body.woocommerce-checkout .wc-block-checkout__contact-fields,
	body.woocommerce-checkout .wc-block-components-address-form {
		display: block !important;
		width: 100% !important;
		max-width: none !important;
	}
}
@media (min-width: 1024px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		gap: var(--checkout-gap-lg) !important;
	}
}
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-sidebar {
	background-color: color-mix(in srgb, var(--color-secondary) 70%, transparent) !important;
	border-radius: var(--card-radius) !important;
	padding: var(--section-padding) !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important;
	text-transform: var(--btn-text-transform) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	font-size: var(--btn-font-size) !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
	background: var(--color-foreground) !important;
	color: var(--color-background) !important;
}
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: var(--card-radius); }

/* -------------------------------------------------------------------
 * Thank-you page — Section 22.8
 * ----------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { font-family: var(--font-display); font-style: italic; font-size: 1.75rem; padding: 0 0 1rem 0; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; margin: 1.5rem 0; }
body.theme-thankyou-page .woocommerce-order-overview li { border-right: none; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin: 1.5rem 0; }
body.theme-thankyou-page .woocommerce-order-details th, body.theme-thankyou-page .woocommerce-order-details td { padding: 0.75rem; border-bottom: 1px solid var(--color-border); }
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); padding: 1.25rem; border-radius: var(--card-radius); }

/* -------------------------------------------------------------------
 * Cart / Account pages width parity — Section 13.7
 * ----------------------------------------------------------------- */
body.woocommerce-cart .site-main, body.woocommerce-account .site-main { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; }
body.woocommerce-cart .page-title, body.woocommerce-account .page-title { font-family: var(--font-display); font-style: italic; font-size: 2.25rem; margin-bottom: 2rem; }

/* -------------------------------------------------------------------
 * Responsive helpers
 * ----------------------------------------------------------------- */
@media (max-width: 1023px) {
	.site-header__nav { display: none !important; }
}
