/*
 * True Emotions — theme stylesheet.
 * Theme by The Free Website Guys.
 */

/* =========================================================================
   1. ROOT TOKENS
   ========================================================================= */
:root {
	/* Editable brand tokens are injected inline via wp_add_inline_style
	 * (functions.php). The values below are safe static fallbacks so the
	 * stylesheet degrades gracefully if that inline block is ever missing. */
	--color-background: #f7f6f9;
	--color-foreground: #150d21;
	--color-card: #ffffff;
	--color-primary: #7f1ba7;
	--color-secondary: #efecf4;
	--color-accent: #f61e8a;
	--color-muted: #e5e0eb;
	--color-border: #dad5e2;
	--color-dark-background: #110b19;
	--color-dark-foreground: #f7f6f9;
	--color-volt: #0fcde6;
	--color-violet: #9523e7;
	--logo-height: 56px;

	/* Derived tokens (Section 6.1 item 3) — computed relationships, not
	 * individually exposed in the Customizer. */
	--color-primary-foreground: var(--color-background);
	--color-secondary-foreground: var(--color-foreground);
	--color-accent-foreground: #ffffff;
	--color-muted-foreground: #5f536e;
	--color-card-foreground: var(--color-foreground);
	--color-dark-card: color-mix(in srgb, var(--color-dark-background) 82%, white 18%);
	--color-dark-card-foreground: var(--color-dark-foreground);
	--color-ivory: var(--color-background);
	--color-linen: var(--color-secondary);
	--color-bone: var(--color-muted);
	--color-sand: color-mix(in srgb, var(--color-muted) 80%, var(--color-foreground) 20%);
	--color-button-text: var(--color-accent-foreground);

	--color-hot: #f61e8a;
	--color-sun: #ffc53d;
	--color-flame: #ff7a18;
	--color-leaf: #22c55e;
	--color-mantra-start: #501169;
	--color-mantra-mid: #b0075c;
	--color-footer-background: #130821;

	--radius: 1rem;
	--shadow-soft: 0 8px 26px -14px rgb(21 13 33 / 0.28);
	--shadow-elevated: 0 26px 60px -22px rgb(21 13 33 / 0.38);
	--gradient-stitch: linear-gradient(120deg, var(--color-hot), var(--color-violet) 50%, var(--color-volt));

	--font-display: 'Anton', 'Baloo 2', system-ui, sans-serif;
	--font-body: 'Outfit', system-ui, -apple-system, sans-serif;

	--header-height: 80px;

	--btn-radius: 999px;
	--btn-height: 3rem;
	--btn-padding: 0 1.75rem;
	--btn-font-size: 0.9375rem;
	--btn-font-weight: 500;
	--btn-letter-spacing: normal;
	--btn-text-transform: none;
	--btn-icon-padding: 0.5rem;
}

/* =========================================================================
   2. RESET / BASE
   ========================================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }

a, button, [role="button"] {
	transition: color 300ms cubic-bezier(0.22, 1, 0.36, 1),
		background-color 300ms cubic-bezier(0.22, 1, 0.36, 1),
		border-color 300ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1),
		box-shadow 350ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 300ms ease;
}
a svg, button svg, [role="button"] svg {
	transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), color 300ms ease, opacity 300ms ease;
	will-change: transform;
}
a:hover svg, button:hover svg, [role="button"]:hover svg {
	transform: translateY(-1px) rotate(-7deg) scale(1.12);
}
a:active svg, button:active svg { transform: scale(0.95); }

@media (prefers-reduced-motion: reduce) {
	a, button, [role="button"], a svg, button svg { transition: none !important; transform: none !important; }
}

body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: inherit;
	font-size: inherit;
}
h1, h2, h3, h4, h5, h6, .font-display {
	font-family: var(--font-display);
	letter-spacing: -0.01em;
	font-weight: 700;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; padding: 0; cursor: pointer; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: inherit; }

img:not(.cover-img):not(.hero-bg-video):not(.site-logo-img):not(.theme-product-card-img):not(.theme-product-card__image-wrapper img):not(.theme-cart-item__image img):not(.theme-cart-item__img):not(.theme-product-gallery__main img):not(.theme-product-thumb img) {
	max-width: 100%;
	height: auto;
}

section[id] { scroll-margin-top: 104px; }

::selection { background: color-mix(in srgb, var(--color-accent) 90%, transparent); color: #fff; }

.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.icon-xs { width: 1rem; height: 1rem; }
.icon-sm { width: 1.1rem; height: 1.1rem; }
.icon-xxs { width: 0.75rem; height: 0.75rem; }
.icon-lg { width: 3rem; height: 3rem; }

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

.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline; } }

.eyebrow {
	font-size: 0.875rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--color-accent);
	font-weight: 700;
	margin-bottom: 1rem;
}

.text-stitch-gradient {
	background: var(--gradient-stitch);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.about-section__heading .text-stitch-gradient {
	display: inline-block;
	transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.about-section__left:hover .about-section__heading .text-stitch-gradient {
	transform: translateX(4px);
}

/* Theme scopes */
.theme-dark { background-color: var(--color-dark-background); color: var(--color-dark-foreground); }
.theme-light { background-color: var(--color-background); color: var(--color-foreground); }

/* =========================================================================
   3. SCROLL REVEAL (Section 2.1)
   ========================================================================= */
.reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

body.is-customizer .reveal-item,
.is-customizer .reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

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

/* =========================================================================
   4. SCROLL PROGRESS BAR
   ========================================================================= */
.theme-scroll-progress {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: 2px;
	z-index: 60;
	pointer-events: none;
	background: transparent;
}
.theme-scroll-progress__bar {
	height: 100%;
	background: var(--color-foreground);
	transform-origin: left;
	transform: scaleX(0);
	transition: transform 150ms ease-out;
}

/* =========================================================================
   5. BUTTONS
   ========================================================================= */
.btn-primary, .btn-outline, .btn-hero-primary, .btn-hero-outline, .theme-btn-primary, .theme-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 3rem;
	padding: 0 1.75rem;
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.5;
	white-space: nowrap;
	border: 1px solid transparent;
	transition: transform 150ms ease-out, box-shadow 150ms ease-out, background-color 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out, opacity 150ms ease-out;
	text-transform: none;
}
.btn-primary:hover, .btn-hero-primary:hover, .theme-btn-primary:hover { transform: scale(1.02); box-shadow: var(--shadow-soft); }
.btn-outline:hover, .btn-hero-outline:hover, .theme-btn-outline:hover { transform: scale(1.02); }
.btn-primary:active, .btn-outline:active, .btn-hero-primary:active, .btn-hero-outline:active, .theme-btn-primary:active, .theme-btn-outline:active { transform: scale(0.97); }

.btn-primary, .theme-btn-primary {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}
.btn-primary:hover, .theme-btn-primary:hover { background-color: color-mix(in srgb, var(--color-primary) 90%, black); }

.btn-outline, .theme-btn-outline {
	background-color: transparent;
	color: var(--color-foreground);
	border-color: color-mix(in srgb, var(--color-foreground) 25%, transparent);
}
.btn-outline:hover, .theme-btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }

.btn-hero-primary {
	background-color: var(--color-accent);
	color: var(--color-accent-foreground);
	border-color: var(--color-accent);
	box-shadow: var(--shadow-elevated);
}
.btn-hero-primary:hover { background-color: color-mix(in srgb, var(--color-accent) 90%, black); }

.btn-hero-outline {
	background-color: rgb(255 255 255 / 0.1);
	backdrop-filter: blur(6px);
	color: #fff;
	border-color: rgb(255 255 255 / 0.7);
}
.btn-hero-outline:hover { background-color: #fff; color: var(--color-primary); }

.theme-btn-outline.disabled, .theme-btn-primary.disabled,
.theme-btn-outline:disabled, .theme-btn-primary:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

/* =========================================================================
   6. HEADER
   ========================================================================= */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	width: 100%;
	background: transparent;
	transition: background-color 300ms ease, backdrop-filter 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}
.site-header.is-solid {
	background-color: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-soft);
}

.site-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	height: 4rem;
}
@media (min-width: 1024px) { .site-header__row { height: 5rem; } }

.site-header__left { display: flex; align-items: center; gap: 0.5rem; min-width: 0; }
.site-header__menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem; height: 2.5rem;
	border-radius: 999px;
	color: var(--color-primary);
	transition: background-color 200ms ease, color 200ms ease;
}
.site-header:not(.is-solid) .site-header__menu-toggle { color: #fff; }
.site-header__menu-toggle:hover { background-color: color-mix(in srgb, var(--color-primary) 10%, transparent); }
.site-header:not(.is-solid) .site-header__menu-toggle:hover { background-color: rgb(255 255 255 / 0.15); }
@media (min-width: 1024px) { .site-header__menu-toggle { display: none; } }

.site-header__brand { display: inline-flex; align-items: center; gap: 0.625rem; min-width: 0; }
.site-logo-img { height: var(--logo-height) !important; max-height: var(--logo-height); width: auto !important; object-fit: contain; display: block; transition: transform 500ms ease; user-select: none; }
.site-header__brand:hover .site-logo-img,
.site-footer__brand:hover .site-logo-img { transform: scale(1.05); }
@media (min-width: 1024px) { .site-logo-img { height: calc(var(--logo-height) * 1.2) !important; max-height: calc(var(--logo-height) * 1.2); } }
.site-logo-text { font-family: var(--font-display); font-size: 1.3rem; line-height: var(--logo-height); color: var(--color-foreground); }
.site-header:not(.is-solid) .site-logo-text { color: #fff; }
.site-logo-text--light { color: var(--color-dark-foreground); }
.site-header__brand-text {
	display: none;
	font-family: var(--font-display);
	font-size: 1rem;
	white-space: nowrap;
	color: var(--color-foreground);
}
.site-header:not(.is-solid) .site-header__brand-text { color: #fff; }
@media (min-width: 640px) { .site-header__brand-text { display: inline; } }
@media (min-width: 1024px) { .site-header__brand-text { font-size: 1.15rem; } }

.site-header__nav { display: none; align-items: center; gap: 0.125rem; flex: 1; justify-content: center; min-width: 0; }
@media (min-width: 1024px) { .site-header__nav { display: flex; } }
.theme-nav-list { display: flex; align-items: center; gap: 0.125rem; }
.theme-nav-link {
	position: relative;
	display: inline-block;
	padding: 0.5rem 0.875rem;
	font-size: 0.875rem;
	font-weight: 600;
	border-radius: 999px;
	white-space: nowrap;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	transition: color 300ms ease, transform 300ms ease;
}
.theme-nav-link::after {
	content: '';
	pointer-events: none;
	position: absolute;
	left: 0.625rem;
	right: 0.625rem;
	bottom: 2px;
	height: 3px;
	border-radius: 999px;
	background: var(--color-accent);
	opacity: 0;
	transform: scaleX(0.5);
	transition: opacity 300ms ease, transform 300ms ease;
}
@media (min-width: 1280px) {
	.theme-nav-link::after { left: 0.875rem; right: 0.875rem; }
}
.theme-nav-link.is-active { color: var(--color-primary); }
.theme-nav-link.is-active::after { opacity: 1; transform: scaleX(1); }
.site-header:not(.is-solid) .theme-nav-link { color: rgb(255 255 255 / 0.85); }
.site-header:not(.is-solid) .theme-nav-link.is-active { color: #fff; }
.theme-nav-link:hover { color: var(--color-primary); transform: translateY(-2px); }
.site-header:not(.is-solid) .theme-nav-link:hover { color: #fff; }

.site-header__right { display: flex; align-items: center; gap: 0.5rem; }
.site-header__cta {
	display: none;
	align-items: center;
	height: 2.5rem;
	padding: 0 1rem;
	border-radius: 999px;
	background-color: var(--color-accent);
	color: var(--color-accent-foreground);
	font-size: 0.875rem;
	font-weight: 600;
	transition: transform 200ms ease, box-shadow 200ms ease;
}
.site-header__cta:hover { transform: scale(1.02); box-shadow: var(--shadow-elevated); }
@media (min-width: 1280px) { .site-header__cta { display: inline-flex; } }

.site-header__cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem; height: 2.5rem;
	border-radius: 999px;
	color: var(--color-primary);
	transition: background-color 200ms ease, color 200ms ease;
}
.site-header:not(.is-solid) .site-header__cart { color: #fff; }
.site-header__cart:hover { background-color: color-mix(in srgb, var(--color-primary) 10%, transparent); }
.site-header:not(.is-solid) .site-header__cart:hover { background-color: rgb(255 255 255 / 0.15); }

.theme-cart-count {
	position: absolute;
	top: -2px; right: -2px;
	min-width: 19px; height: 19px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--color-accent);
	color: var(--color-accent-foreground);
	font-size: 0.8125rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.theme-cart-count:empty { display: none; }

.site-header__mobile-panel {
	border-top: 1px solid var(--color-border);
	background-color: var(--color-background);
}
.site-header__mobile-panel-inner { padding: 0.5rem 0; display: flex; flex-direction: column; }
.theme-nav-list--mobile,
.site-header__mobile-panel .theme-nav-list {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: stretch;
}
.theme-nav-list--mobile .theme-nav-link {
	text-align: left;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--color-border);
	border-radius: 0;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
}
.theme-nav-list--mobile li:last-child .theme-nav-link { border-bottom: none; }
@media (min-width: 1024px) { .site-header__mobile-panel { display: none; } }

/* =========================================================================
   7. HERO
   ========================================================================= */
.hero-section {
	position: relative;
	margin-top: -4rem;
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: #0b0713;
}
@media (min-width: 1024px) { .hero-section { margin-top: -5rem; } }
body.theme-no-hero .hero-section { margin-top: 0; }

.hero-section__video, .precontact-section__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
}
.hero-section__scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgb(8 4 16 / 0.55) 0%, rgb(8 4 16 / 0.38) 45%, rgb(8 4 16 / 0.62) 100%);
}
.hero-section__content { position: relative; z-index: 10; text-align: center; color: #fff; padding-top: 6rem; padding-bottom: 6rem; }
@media (min-width: 1024px) { .hero-section__content { padding-top: 7rem; padding-bottom: 7rem; } }

.hero-section__badge-wrap { display: flex; justify-content: center; margin-bottom: 1.75rem; }
.hero-section__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 1rem;
	border-radius: 999px;
	background: rgb(255 255 255 / 0.12);
	border: 1px solid rgb(255 255 255 / 0.3);
	font-size: 0.875rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 700;
	backdrop-filter: blur(4px);
	transition: transform 500ms ease;
}
.hero-section__badge-wrap:hover .hero-section__badge { transform: scale(1.05); }

.hero-section__title {
	font-size: clamp(2.5rem, 8vw, 6rem);
	line-height: 0.95;
	letter-spacing: -0.01em;
	max-width: 64rem;
	margin: 0 auto;
}
.hero-section__title > span:first-child {
	text-shadow: 0 2px 20px rgb(0 0 0 / 0.55);
}
.hero-section__title .text-stitch-gradient {
	text-shadow: none;
}
.hero-section__subtitle {
	margin: 1.75rem auto 0;
	max-width: 42rem;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: rgb(255 255 255 / 0.9);
	text-shadow: 0 1px 10px rgb(0 0 0 / 0.45);
}
@media (min-width: 640px) { .hero-section__subtitle { font-size: 1.1875rem; } }

.hero-section__ctas {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	justify-content: center;
}
@media (min-width: 640px) { .hero-section__ctas { flex-direction: row; gap: 1rem; } }

/* =========================================================================
   8. ABOUT
   ========================================================================= */
.about-section { padding: 6rem 0; }
@media (min-width: 768px) { .about-section { padding: 8rem 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: 5fr 7fr; gap: 4rem; } }

.about-section__left { display: flex; flex-direction: column; min-width: 0; }
.about-section__heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .about-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section__heading { font-size: 3.2rem; } }
.about-section__description { margin-top: 1.25rem; font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; max-width: 24rem; }

.about-section__quote { margin-top: 2.5rem; }
.about-section__quote blockquote {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1.25;
	color: color-mix(in srgb, var(--color-foreground) 90%, transparent);
	transition: color 500ms ease, transform 500ms ease;
}
.about-section__quote:hover blockquote {
	color: var(--color-primary);
	transform: translateX(4px);
}
@media (min-width: 768px) { .about-section__quote blockquote { font-size: 1.8rem; } }
.about-section__quote figcaption {
	margin-top: 1rem;
	font-size: 0.875rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 700;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
	transition: letter-spacing 500ms ease, color 500ms ease;
}
.about-section__quote:hover figcaption {
	letter-spacing: 0.3em;
	color: var(--color-accent);
}

.about-section__badge {
	margin-top: auto;
	padding-top: 2.5rem;
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
	background: var(--color-card);
	box-shadow: var(--shadow-soft);
	padding: 1.25rem;
	transition: transform 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
}
.about-section__badge:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--color-accent) 60%, transparent); box-shadow: var(--shadow-elevated); }
.about-section__badge-title { font-size: 0.875rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); margin-bottom: 0.375rem; }
.about-section__badge-text { font-size: 0.9375rem; font-weight: 600; }

.about-section__right { display: flex; flex-direction: column; min-width: 0; }
@media (min-width: 1024px) { .about-section__right { padding-left: 1.5rem; } }
.about-section__subheading { font-size: 1.875rem; line-height: 1.15; margin-bottom: 1.75rem; transition: transform 500ms ease; }
.about-section__subheading:hover { transform: translateX(4px); }
@media (min-width: 768px) { .about-section__subheading { font-size: 2.25rem; } }
.about-section__body { display: flex; flex-direction: column; gap: 1.25rem; font-size: 1rem; line-height: 1.75; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); flex: 1; }
.about-section__body p { transition: color 300ms ease; }
.about-section__body p:hover { color: var(--color-foreground); }
.about-section__emphasis { font-family: var(--font-display); font-weight: 400; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); font-size: 1.125rem; transition: transform 500ms ease, color 500ms ease; }
.about-section__emphasis:hover { transform: translateX(4px); color: var(--color-accent); }
@media (min-width: 768px) { .about-section__emphasis { font-size: 1.25rem; } }

.about-section__features { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr; gap: 1.25rem; padding-top: 2rem; border-top: 1px solid var(--color-border); }
@media (min-width: 640px) { .about-section__features { grid-template-columns: repeat(3, 1fr); } }
.about-feature { display: flex; flex-direction: column; transition: transform 500ms ease; }
.about-feature:hover { transform: translateY(-6px); }
.about-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem; height: 2.75rem;
	border-radius: 0.5rem;
	margin-bottom: 0.75rem;
	color: #fff;
	transition: transform 500ms ease;
}
.about-feature:hover .about-feature__icon { transform: scale(1.1) rotate(6deg); }
.about-feature__title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; transition: color 400ms ease; }
@media (min-width: 768px) { .about-feature__title { font-size: 1.5rem; } }
.about-feature__text { margin-top: 0.125rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); transition: color 400ms ease; }
.about-feature:hover .about-feature__text { color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.about-feature:hover .about-feature__title { color: var(--color-primary); }
.about-feature__line {
	margin-top: 0.75rem;
	display: block;
	height: 3px;
	width: 1.75rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--color-accent) 40%, transparent);
	transition: width 500ms ease, background-color 500ms ease;
}
.about-feature:hover .about-feature__line { width: 4rem; background: var(--color-accent); }

/* =========================================================================
   9. MANTRA MARQUEE
   ========================================================================= */
.mantra-section {
	position: relative;
	overflow: hidden;
	padding: 1.75rem 0;
	background: linear-gradient(100deg, var(--color-mantra-start), var(--color-mantra-mid) 50%, var(--color-mantra-start));
}
@media (min-width: 768px) { .mantra-section { padding: 2.5rem 0; } }
.mantra-section__fade { position: absolute; inset-block: 0; width: 4rem; z-index: 10; pointer-events: none; }
@media (min-width: 768px) { .mantra-section__fade { width: 8rem; } }
.mantra-section__fade--left { left: 0; background: linear-gradient(to right, var(--color-mantra-start), transparent); }
.mantra-section__fade--right { right: 0; background: linear-gradient(to left, var(--color-mantra-start), transparent); }

@keyframes marquee-scroll {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(-50%, 0, 0); }
}
.marquee-track { width: max-content; animation: marquee-scroll 45s linear infinite; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

.mantra-section__track { display: flex; align-items: center; gap: 2.5rem; white-space: nowrap; will-change: transform; }
@media (min-width: 768px) { .mantra-section__track { gap: 4rem; } }
.mantra-item { display: flex; align-items: center; gap: 2.5rem; flex-shrink: 0; }
@media (min-width: 768px) { .mantra-item { gap: 4rem; } }
.mantra-item__text { font-family: var(--font-display); line-height: 1; color: rgb(255 255 255 / 0.95); font-size: clamp(1.2rem, 3vw, 2.4rem); }
.mantra-item__dot { display: inline-block; border-radius: 999px; flex-shrink: 0; background: var(--color-volt); width: clamp(7px, 0.7vw, 12px); height: clamp(7px, 0.7vw, 12px); }

/* =========================================================================
   10. SERVICES
   ========================================================================= */
.services-section { position: relative; padding: 6rem 0; overflow: hidden; }
@media (min-width: 768px) { .services-section { padding: 8rem 0; } }
.services-section__blob {
	position: absolute;
	left: -8rem; top: 33%;
	width: 24rem; height: 24rem;
	border-radius: 999px;
	opacity: 0.2;
	filter: blur(64px);
	pointer-events: none;
	background: radial-gradient(circle, var(--color-violet), transparent 70%);
}
.services-section__inner { position: relative; }
.services-section__intro { max-width: 48rem; margin-bottom: 3.5rem; }
.services-section__heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .services-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .services-section__heading { font-size: 3.2rem; } }
.services-section__description { margin-top: 1.25rem; font-size: 1rem; line-height: 1.6; color: color-mix(in srgb, var(--color-dark-foreground) 75%, transparent); }

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

.service-card-wrap {
	position: relative;
	height: 100%;
	border-radius: var(--radius);
	cursor: pointer;
}
.service-card-wrap:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.service-card__glow {
	position: absolute;
	inset: -4px;
	border-radius: var(--radius);
	opacity: 0;
	filter: blur(24px);
	pointer-events: none;
	transition: opacity 500ms ease;
	z-index: 0;
}
.service-card-wrap:hover .service-card__glow { opacity: 0.7; }
.service-card {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--color-dark-card);
	border: 1px solid color-mix(in srgb, var(--color-dark-foreground) 15%, transparent);
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	transition: transform 500ms ease, border-color 500ms ease, box-shadow 500ms ease;
}
@media (min-width: 768px) { .service-card { padding: 1.75rem; } }
.service-card-wrap:hover .service-card { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow-elevated); }
.service-card__top-line,
.service-card__icon,
.service-card__title,
.service-card__text,
.service-card__line { position: relative; z-index: 1; }
.service-card__top-line { position: absolute; inset-inline: 0; top: 0; height: 4px; opacity: 0; transition: opacity 500ms ease; }
.service-card-wrap:hover .service-card__top-line { opacity: 1; }
.service-card__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem; height: 3.5rem;
	border-radius: 0.5rem;
	margin-bottom: 1.25rem;
	color: #fff;
	transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card-wrap:hover .service-card__icon { transform: rotate(8deg) scale(1.12); }
.service-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; line-height: 1.35; margin-bottom: 0.5rem; color: var(--color-dark-foreground); transition: color 300ms ease; }
.service-card-wrap:hover .service-card__title { color: var(--color-accent); }
.service-card__text { font-size: 0.9375rem; line-height: 1.6; color: color-mix(in srgb, var(--color-dark-foreground) 70%, transparent); flex: 1; }
.service-card__line { margin-top: 1.5rem; display: block; height: 3px; width: 2rem; border-radius: 999px; transition: width 500ms ease; }
.service-card-wrap:hover .service-card__line { width: 5rem; }

/* =========================================================================
   11. SHOP
   ========================================================================= */
.shop-section { padding: 6rem 0; }
@media (min-width: 768px) { .shop-section { padding: 8rem 0; } }
.shop-section__header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 1024px) { .shop-section__header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.shop-section__intro { max-width: 42rem; }
.shop-heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.2rem; } }
.shop-section__description { margin-top: 1.25rem; font-size: 1rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 36rem; }

.shop-section__search { position: relative; width: 100%; }
@media (min-width: 1024px) { .shop-section__search { width: 20rem; } }
.shop-section__search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.shop-section__search input {
	width: 100%;
	height: 2.75rem;
	padding: 0 1rem 0 2.75rem;
	border-radius: 999px;
	background: var(--color-secondary);
	border: 1px solid var(--color-border);
	font-size: 0.9375rem;
	color: var(--color-foreground);
}
.shop-section__search input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.shop-section__search input:focus { outline: none; border-color: var(--color-primary); }

.shop-section__tabs { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 3rem; }
.shop-tab {
	height: 2.5rem;
	padding: 0 1.25rem;
	border-radius: 999px;
	font-size: 0.9375rem;
	font-weight: 600;
	border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	background: transparent;
	transition: transform 150ms ease, border-color 150ms ease, color 150ms ease, background-color 150ms ease;
}
.shop-tab:hover { border-color: var(--color-accent); color: var(--color-accent); transform: scale(1.02); }
.shop-tab.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); box-shadow: var(--shadow-soft); }

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

.shop-card-slot.is-hidden-extra { display: none; }
.shop-section__empty[hidden] { display: none; }
.shop-section__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.shop-section__no-products { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

.shop-section__more { margin-top: 3.5rem; display: flex; justify-content: center; }
.shop-section__more[hidden] { display: none; }

/* Product card (Section 31.3, Pattern A) */
.theme-product-card-wrap { height: 100%; display: flex; }
.theme-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	border-radius: 0.75rem;
	border: 1px solid var(--color-border);
	background: var(--color-card);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: transform 500ms ease, border-color 500ms ease, box-shadow 500ms ease;
}
.theme-product-card:hover { transform: translateY(-8px); border-color: color-mix(in srgb, var(--color-accent) 60%, transparent); box-shadow: var(--shadow-elevated); }

.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-linen); }
.theme-product-card__image-link {
	display: block;
	position: absolute;
	inset: 0;
	z-index: 1;
}
.theme-product-card__body-link {
	display: block;
	color: inherit;
	text-decoration: none;
}
.theme-product-card__image-wrapper img,
.theme-product-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	max-height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 1400ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 700ms ease;
	opacity: 0;
}
.theme-product-card__image-wrapper img.is-loaded,
.theme-product-card-img.is-loaded { opacity: 1; }
.theme-product-card:hover .theme-product-card__image-wrapper img { transform: scale(1.06); }

.theme-product-card__image-wrapper::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgb(0 0 0 / 0.55), transparent 60%);
	opacity: 0;
	transition: opacity 500ms ease;
	pointer-events: none;
}
.theme-product-card:hover .theme-product-card__image-wrapper::after { opacity: 1; }

.theme-product-card__badge {
	position: absolute;
	top: 0.75rem; left: 0.75rem;
	z-index: 3;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	padding: 0.25rem 0.625rem;
	border-radius: 999px;
}
.theme-product-card__soldout {
	position: absolute;
	top: 0.75rem; right: 0.75rem;
	z-index: 3;
	background: var(--color-hot);
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 700;
	padding: 0.25rem 0.625rem;
	border-radius: 999px;
}

.theme-product-card__actions {
	position: absolute;
	left: 0.75rem; right: 0.75rem; bottom: 0.75rem;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	opacity: 0;
	transition: opacity 500ms ease;
}
.theme-product-card:hover .theme-product-card__actions { opacity: 1; }
.theme-product-card__add-btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 2.5rem;
	border-radius: 999px;
	background: var(--color-accent) !important;
	color: var(--color-accent-foreground) !important;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	border: none;
	text-decoration: none;
	transition: opacity 200ms ease, transform 150ms ease, background-color 200ms ease;
}
.theme-product-card__add-btn:hover { opacity: 0.9; background: color-mix(in srgb, var(--color-accent) 90%, black) !important; }
.theme-product-card__add-btn:active { transform: scale(0.97); }
.theme-product-card__quickview {
	width: 2.5rem; height: 2.5rem;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 999px;
	background: color-mix(in srgb, var(--color-background) 90%, transparent);
	backdrop-filter: blur(4px);
	color: var(--color-foreground);
	border: 1px solid var(--color-border);
	text-decoration: none;
	transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease;
}
.theme-product-card__quickview:hover {
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}

.theme-product-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem; }
.theme-product-card__cat { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--color-accent); font-weight: 700; margin-bottom: 0.375rem; min-height: 1em; }
.theme-product-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; line-height: 1.35; color: var(--color-foreground); transition: color 300ms ease; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.15rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: auto; padding-top: 0.75rem; font-size: 1rem; font-weight: 700; color: var(--color-primary); }
.theme-product-card__price .woocommerce-Price-amount { color: inherit; }
.theme-product-card__price del { opacity: 0.5; font-weight: 400; margin-right: 0.375rem; }

/* Add to cart WooCommerce style override (Section 11.4.1) */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}

/* Card compact button — overrides the global rules above (cascade order). */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: 2.5rem !important;
	height: 2.5rem !important;
	padding: 0 1rem !important;
	border-radius: 999px !important;
	background-color: var(--color-accent) !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart:hover { background-color: var(--color-accent) !important; }

.single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

.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; }

/* Scoped WooCommerce notices (Section 14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info,
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-error {
	background: color-mix(in srgb, var(--color-hot) 12%, var(--color-background));
	border: 1px solid color-mix(in srgb, var(--color-hot) 40%, transparent);
	border-radius: 0.5rem;
	padding: 1rem 1.25rem;
	color: var(--color-foreground);
	font-size: 0.9375rem;
}

/* =========================================================================
   12. SINGLE PRODUCT (Section 11.13)
   ========================================================================= */
.single-product-main { padding-top: 6rem; background-color: var(--color-ivory); }
@media (min-width: 1024px) { .single-product-main { padding-top: 7rem; } }

.theme-back-to-shop {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
	font-size: 0.9375rem;
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
	transition: color 200ms ease;
}
.theme-back-to-shop:hover { color: var(--color-primary); }

.theme-breadcrumb { padding: 1.5rem 0; font-size: 0.9375rem; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-breadcrumb a:hover { color: var(--color-primary); }
.theme-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.theme-breadcrumb__current { color: var(--color-foreground); }

.theme-product-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	padding-bottom: 5rem;
	align-items: flex-start;
	min-width: 0;
}
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; } }

.theme-product-gallery { position: sticky; top: 7rem; align-self: flex-start; min-width: 0; max-width: 100%; }
@media (max-width: 1023px) { .theme-product-gallery { position: static; } }
.theme-product-gallery__main {
	position: relative;
	aspect-ratio: 1 / 1;
	width: 100%;
	background: var(--color-linen);
	border-radius: 0.75rem;
	overflow: hidden;
	margin-bottom: 1rem;
}
.theme-product-gallery__main img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	max-height: 100%;
	object-fit: cover;
}
.theme-product-thumbnails { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.625rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--color-linen);
	border-radius: 0.5rem;
	overflow: hidden;
	border: 2px solid transparent;
	transition: border-color 200ms ease;
}
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb:hover { border-color: color-mix(in srgb, var(--color-foreground) 20%, transparent); }
.theme-product-thumb img { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; }

.theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-info__cat { font-size: 0.9375rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); font-weight: 500; margin-bottom: 0.75rem; }
.product-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.05;
	color: var(--color-foreground);
	margin-bottom: 1rem;
}
@media (min-width: 768px) { .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title { font-size: 2.6rem; } }

.theme-product-info__price { font-size: 1.25rem; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); margin-bottom: 1.75rem; }
.theme-product-info__price-suffix { font-weight: 500; }
.theme-product-info__price del { opacity: 0.5; margin-right: 0.5rem; }
.theme-product-info__stock { margin-bottom: 1.25rem; font-size: 0.9375rem; font-weight: 600; }
.theme-product-info__stock.is-out { color: var(--color-hot); }

.theme-product-info__description { font-size: 0.9375rem; line-height: 1.625; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__description p { margin-bottom: 0.75rem; }

.theme-product-purchase { margin-bottom: 0; }
.theme-product-quantity-label {
	font-size: 0.9375rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
	margin-bottom: 0.625rem;
}
.theme-product-purchase .theme-quantity-wrapper { margin-bottom: 1.5rem; }
.theme-product-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
@media (min-width: 640px) {
	.theme-product-actions { flex-direction: row; }
}
.theme-product-actions .theme-btn-primary,
.theme-product-actions .single_add_to_cart_button,
.theme-product-actions .theme-buy-now {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
}

.theme-add-to-cart-area {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}
.theme-quantity-wrapper {
	display: inline-flex;
	align-items: center;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	border-radius: 999px;
	overflow: hidden;
}
.theme-qty-minus, .theme-qty-plus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem; height: 3rem;
	transition: color 200ms ease;
}
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--color-primary); }
.theme-qty-input {
	width: 2.75rem;
	height: 3rem;
	border: none;
	text-align: center;
	font-size: 0.9375rem;
	font-weight: 500;
	background: transparent;
	-moz-appearance: textfield;
}
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.theme-qty-input:focus { outline: none; }

.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }
.theme-buy-now { flex: 1 1 auto; min-width: 160px; }

.theme-product-details { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-product-details__label { font-size: 0.9375rem; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 1rem; }
.theme-product-details__content { font-size: 0.9375rem; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); overflow-wrap: break-word; word-break: break-word; }
.theme-product-details__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}
.theme-product-details__list li {
	display: flex;
	align-items: flex-start;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
}
.theme-product-details__list li::before {
	content: '';
	width: 4px;
	height: 4px;
	border-radius: 999px;
	background: var(--color-primary);
	margin-top: 0.625rem;
	margin-right: 0.75rem;
	flex-shrink: 0;
}

.theme-product-perks { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-product-perk { text-align: center; }
.theme-product-perk .icon {
	margin: 0 auto 0.5rem;
	color: var(--color-accent);
	transition: transform 300ms ease;
}
.theme-product-perk:hover .icon { transform: scale(1.1) rotate(6deg); }
.theme-product-perk p { font-size: 0.8125rem; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.posted_in, .woocommerce-variation-description { overflow-wrap: break-word; word-break: break-word; }

/* Variable product variation pills (Section 11.5) */
.theme-variations { margin-bottom: 1.5rem; }
.theme-variation-attr { margin-bottom: 1.25rem; }
.theme-variation-attr__label {
	font-size: 0.9375rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 700;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
	margin-bottom: 0.625rem;
}
.theme-variation-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.theme-variation-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.5rem;
	padding: 0.5rem 1.125rem;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	background: transparent;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-foreground);
	transition: border-color 200ms ease, color 200ms ease, background-color 200ms ease, transform 150ms ease;
}
.theme-variation-pill:hover { border-color: var(--color-accent); color: var(--color-accent); transform: scale(1.02); }
.theme-variation-pill.is-active {
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}
.theme-attr-select-hidden,
.single-product .variations select.theme-attr-select-hidden { display: none !important; }

/* Legacy variations table hidden when pills are used */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; font-weight: 600; }
.single-product .variations tbody td.value { padding-top: 0; }

/* Related products */
.related-products-section { padding: 5rem 0; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.related-products-section__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.related-products-section__heading { font-size: 1.875rem; font-weight: 700; }
@media (min-width: 768px) { .related-products-section__heading { font-size: 2.25rem; } }
.related-products-section__viewall { display: none; align-items: center; gap: 0.375rem; font-size: 0.9375rem; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 200ms ease; }
.related-products-section__viewall:hover { color: var(--color-primary); }
@media (min-width: 640px) { .related-products-section__viewall { display: inline-flex; } }
.related-products-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) { .related-products-section__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* =========================================================================
   13. PRE-CONTACT CTA
   ========================================================================= */
.precontact-section { position: relative; overflow: hidden; background-color: #0b0713; display: flex; align-items: center; min-height: 80vh; }
@media (min-width: 768px) { .precontact-section { min-height: 90vh; } }
@media (min-width: 1024px) { .precontact-section { min-height: 100vh; } }
.precontact-section__scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgb(8 4 16 / 0.52) 0%, rgb(8 4 16 / 0.36) 50%, rgb(8 4 16 / 0.58) 100%); }
.precontact-section__content { position: relative; z-index: 10; text-align: center; padding-top: 6rem; padding-bottom: 6rem; color: #fff; text-shadow: 0 2px 10px rgb(0 0 0 / 0.5); }
@media (min-width: 768px) { .precontact-section__content { padding-top: 9rem; padding-bottom: 9rem; } }
.precontact-section__eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 0.875rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.25rem; width: 100%; }
.precontact-section__rule { height: 1px; width: 2rem; background: rgb(255 255 255 / 0.5); }
.precontact-section__heading { font-size: clamp(2rem, 5.4vw, 3.8rem); line-height: 1.05; max-width: 56rem; margin: 0 auto; }
.precontact-section__description { margin-top: 1.5rem; max-width: 36rem; margin-inline: auto; font-size: 1rem; line-height: 1.6; color: rgb(255 255 255 / 0.85); white-space: pre-line; }
.precontact-section__cta { margin-top: 2.25rem; text-shadow: none; }

/* =========================================================================
   14. CONTACT
   ========================================================================= */
.contact-section { padding-top: 6rem; padding-bottom: 4rem; }
@media (min-width: 768px) { .contact-section { padding-top: 8rem; padding-bottom: 5rem; } }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.contact-section__left { display: flex; flex-direction: column; height: 100%; }
.contact-title { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3.2rem; } }
.contact-section__description { margin-top: 1.25rem; font-size: 1rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 28rem; }

.contact-touchpoints { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-touchpoint {
	display: flex;
	align-items: center;
	gap: 1rem;
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
	background: var(--color-card);
	padding: 1rem;
	box-shadow: var(--shadow-soft);
	transition: transform 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
}
.contact-touchpoint:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--color-accent) 60%, transparent); box-shadow: var(--shadow-elevated); }
.contact-touchpoint__icon {
	width: 2.75rem; height: 2.75rem;
	border-radius: 0.5rem;
	display: inline-flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	color: #fff;
	transition: transform 500ms ease;
}
.contact-touchpoint:hover .contact-touchpoint__icon { transform: scale(1.1) rotate(6deg); }
.contact-touchpoint__body { display: flex; flex-direction: column; text-align: left; min-width: 0; }
.contact-touchpoint__label { font-size: 0.875rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.contact-touchpoint__value { font-size: 0.9375rem; font-weight: 600; color: var(--color-foreground); overflow: hidden; text-overflow: ellipsis; transition: color 300ms ease; }
.contact-touchpoint:hover .contact-touchpoint__value { color: var(--color-primary); }

.contact-section__quote-wrap {
	margin-top: auto;
	padding-top: 2.5rem;
}
@media (min-width: 768px) { .contact-section__quote-wrap { padding-top: 3rem; } }
.contact-section__quote {
	position: relative;
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
	background: var(--color-secondary);
	padding: 2.25rem 1.5rem;
	text-align: center;
	overflow: hidden;
}
@media (min-width: 768px) { .contact-section__quote { padding: 2.75rem 2.5rem; } }
.contact-section__quote-rule { display: block; margin: 0 auto 1rem; height: 4px; width: 3rem; border-radius: 999px; background: color-mix(in srgb, var(--color-accent) 70%, transparent); }
.contact-section__quote blockquote { font-family: var(--font-display); font-weight: 400; font-size: 1.125rem; line-height: 1.3; max-width: 28rem; margin: 0 auto; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); }
@media (min-width: 768px) { .contact-section__quote blockquote { font-size: 1.25rem; } }
@media (min-width: 1024px) { .contact-section__quote blockquote { font-size: 1.5rem; } }
.contact-section__quote figcaption { margin-top: 1.25rem; font-size: 0.875rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

.contact-form {
	background: var(--color-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow-soft);
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: box-shadow 500ms ease, border-color 500ms ease;
}
@media (min-width: 768px) { .contact-form { padding: 2rem; } }
.contact-form:hover { box-shadow: var(--shadow-elevated); border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.contact-form__row-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-form__row-2 { grid-template-columns: 1fr 1fr; } }
.contact-form__field { display: flex; flex-direction: column; }
.contact-form__field--grow { flex: 1; }
.contact-form__field label { font-size: 0.875rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.5rem; }
.contact-form input, .contact-form select, .contact-form textarea {
	width: 100%;
	height: 3rem;
	padding: 0 1rem;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 0.5rem;
	font-size: 0.9375rem;
	color: var(--color-foreground);
	transition: border-color 200ms ease;
}
.contact-form textarea { height: auto; min-height: 140px; padding: 0.75rem 1rem; resize: none; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-primary); }
.contact-form__field--grow { display: flex; flex-direction: column; }
.contact-form__field--grow textarea { flex: 1; }
.contact-form__select-wrap { position: relative; }
.contact-form__select-wrap select { appearance: none; padding-right: 2.5rem; }
.contact-form__select-chevron { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-form__submit-wrap { padding-top: 0.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-form__submit { width: 100%; }
.contact-form__footnote { text-align: center; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* =========================================================================
   15. FOOTER
   ========================================================================= */
.site-footer { border-top: 1px solid rgb(255 255 255 / 0.1); background: var(--color-footer-background); }
.site-footer__inner { padding-top: 3.5rem; padding-bottom: 1.5rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-top: 5rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: flex-start; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.site-footer__col { display: flex; flex-direction: column; height: 100%; }
.site-footer__brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.site-footer__description { margin-top: 1rem; font-size: 0.8125rem; color: rgb(255 255 255 / 0.7); line-height: 1.6; max-width: 20rem; }
.site-footer__heading { font-size: 1.125rem; color: #fff; margin-bottom: 1rem; }
.site-footer__list { display: flex; flex-direction: column; gap: 0.625rem; }
.site-footer__link { font-size: 0.8125rem; color: rgb(255 255 255 / 0.7); transition: color 300ms ease, transform 300ms ease; display: inline-block; }
.site-footer__link:hover { color: var(--color-hot); transform: translateX(4px); }
.site-footer__contact-list { gap: 0.75rem; }
.site-footer__contact-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: rgb(255 255 255 / 0.75); transition: color 300ms ease; word-break: break-all; }
.site-footer__contact-link:hover { color: var(--color-hot); }
.site-footer__contact-static { cursor: default; }

.site-footer__bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid rgb(255 255 255 / 0.1); display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; } }
.site-footer__copyright { font-size: 0.8125rem; color: rgb(255 255 255 / 0.6); text-align: center; }
@media (min-width: 640px) { .site-footer__copyright { text-align: left; flex: 1; } }
.site-footer__back-to-top { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: rgb(255 255 255 / 0.7); transition: color 300ms ease; }
.site-footer__back-to-top:hover { color: var(--color-hot); }
.site-footer__back-to-top-circle { width: 2rem; height: 2rem; border-radius: 999px; border: 1px solid rgb(255 255 255 / 0.25); display: inline-flex; align-items: center; justify-content: center; transition: border-color 300ms ease, transform 300ms ease; }
.site-footer__back-to-top:hover .site-footer__back-to-top-circle { border-color: var(--color-hot); transform: translateY(-2px); }
.site-footer__credit { font-size: 0.8125rem; color: rgb(255 255 255 / 0.6); text-align: center; }
@media (min-width: 640px) { .site-footer__credit { text-align: right; flex: 1; } }
.site-footer__credit-link { display: inline-flex; align-items: center; gap: 0.25rem; color: rgb(255 255 255 / 0.8); font-weight: 600; transition: color 300ms ease; }
.site-footer__credit-link:hover { color: var(--color-hot); }

/* =========================================================================
   16. SIDE CART DRAWER
   ========================================================================= */
#theme-cart-overlay {
	position: fixed; inset: 0;
	background: color-mix(in srgb, var(--color-foreground) 30%, transparent);
	z-index: 55;
	opacity: 0;
	visibility: hidden;
	transition: opacity 300ms ease, visibility 300ms ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }

#theme-cart-drawer {
	position: fixed;
	right: 0; top: 0;
	height: 100%;
	width: 100%;
	max-width: 28rem;
	background: var(--color-ivory);
	z-index: 56;
	box-shadow: var(--shadow-elevated);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-cart-drawer__title { font-size: 1.5rem; color: var(--color-foreground); }
.theme-cart-drawer__close { padding: 0.375rem; border-radius: 999px; transition: background-color 200ms ease; }
.theme-cart-drawer__close:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }

.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-drawer__empty .icon { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); margin-bottom: 1rem; }
.theme-cart-drawer__empty p { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; font-size: 0.9375rem; }

.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__image {
	width: 5rem;
	height: 6rem;
	border-radius: 0.375rem;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--color-bone);
	display: block;
	position: relative;
}
.theme-cart-item__image img,
.theme-cart-item__img {
	width: 100% !important;
	height: 100% !important;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	display: block;
	opacity: 1;
}
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 0.9375rem; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 200ms ease; }
.theme-cart-item__name:hover { color: var(--color-primary); }
.theme-cart-item__price { font-size: 0.9375rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.125rem; }
.theme-cart-item__variation { font-size: 0.8125rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.25rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; border-radius: 0.25rem; transition: background-color 200ms ease; }
.theme-cart-item__qty-btn:hover { background: var(--color-bone); }
.theme-cart-item__qty { font-size: 0.9375rem; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 0.9375rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); transition: color 200ms ease; }
.theme-cart-item__remove:hover { color: var(--color-hot); }

.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); display: flex; flex-direction: column; gap: 1rem; background: color-mix(in srgb, var(--color-linen) 40%, transparent); }
.theme-cart-drawer__subtotal-row { display: flex; justify-content: space-between; font-size: 0.9375rem; }
.theme-cart-drawer__subtotal-row span:first-child { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-drawer__subtotal-row span:last-child { font-weight: 500; }
.theme-cart-drawer__note { font-size: 0.9375rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__checkout { display: flex; width: 100%; }
.theme-cart-drawer__empty-btn { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.5rem 0; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); border-radius: 999px; transition: color 200ms ease, background-color 200ms ease; }
.theme-cart-drawer__empty-btn:hover { color: var(--color-hot); background: color-mix(in srgb, var(--color-foreground) 4%, transparent); }

/* =========================================================================
   17. WOOCOMMERCE CHECKOUT BLOCK OVERRIDES (Section 13)
   ========================================================================= */
body.woocommerce-checkout .site-main { padding-top: var(--header-height, 80px); padding-bottom: 4rem; }
body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title { margin-bottom: 2rem; font-size: 2rem; }

body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
body.woocommerce-checkout .wc-block-checkout {
	display: block;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap, 2rem);
		align-items: start;
	}
}

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

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-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-select select,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-textarea textarea,
body.woocommerce-checkout .woocommerce-checkout .form-row .input-text,
body.woocommerce-checkout .woocommerce-checkout .form-row select,
body.woocommerce-checkout select,
body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="tel"] {
	width: 100% !important;
	max-width: none !important;
	min-height: 3rem !important;
	height: 3rem !important;
	font-family: var(--font-body) !important;
	font-size: 0.9375rem !important;
	font-weight: 400 !important;
	font-style: normal !important;
	line-height: 1.5 !important;
	color: var(--color-foreground) !important;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent) !important;
	border-radius: 0.375rem !important;
	background-color: var(--color-background) !important;
	box-shadow: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
}
body.woocommerce-checkout .wc-block-components-textarea textarea {
	min-height: 6rem !important;
	height: auto !important;
	padding-top: 0.75rem !important;
	padding-bottom: 0.75rem !important;
	resize: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus,
body.woocommerce-checkout .woocommerce-checkout .form-row .input-text:focus,
body.woocommerce-checkout .woocommerce-checkout .form-row select:focus {
	outline: none !important;
	border-color: var(--color-primary) !important;
	box-shadow: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-components-textarea textarea::placeholder {
	color: color-mix(in srgb, var(--color-foreground) 45%, transparent) !important;
	opacity: 1 !important;
}

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

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

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary, #f8f8f8);
	border-radius: var(--radius);
	padding: 2rem;
}

/* =========================================================================
   18. THANK-YOU PAGE (Section 22.8)
   ========================================================================= */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: 6rem; padding-bottom: 4rem; }
body.theme-thankyou-page .theme-thankyou { max-width: 56rem; margin: 0 auto; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-size: 1.5rem;
	padding: 0 0 1rem 0;
	display: block;
}
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 2rem;
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
}
body.theme-thankyou-page .woocommerce-order-overview li { border: none; padding: 0; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.75rem; border-bottom: 1px solid var(--color-border); text-align: left; }
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;
}
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; overflow-wrap: break-word; }

/* =========================================================================
   19. 404
   ========================================================================= */
.theme-404 {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-muted);
	padding-top: 0;
}
.theme-404__inner { text-align: center; max-width: 32rem; margin: 0 auto; padding: 4rem 0; }
.theme-404__heading { font-size: 3rem; margin-bottom: 1rem; }
.theme-404__text { font-size: 1.125rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; }
.theme-404__link { color: var(--color-primary); text-decoration: underline; }
.theme-404__link:hover { color: color-mix(in srgb, var(--color-primary) 90%, black); }

/* =========================================================================
   20. WOOCOMMERCE ARCHIVE (Section 19)
   ========================================================================= */
.archive-product-main { padding: 7rem 0 5rem; }
.archive-product-header { margin-bottom: 2.5rem; }
.archive-product-empty { text-align: center; padding: 4rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.archive-product-grid { margin-bottom: 2.5rem; }
