/* =========================================================================
   AG Active theme stylesheet — The Free Website Guys
   ========================================================================= */

/* ---------- 1. Tokens (fallbacks; live values injected via wp_add_inline_style) ---------- */
:root {
	--color-background: #0d0d0d;
	--color-foreground: #efece6;
	--color-primary: #efece6;
	--color-primary-foreground: #0d0d0d;
	--color-accent: #b69d7c;
	--color-destructive: #cf3030;
	--color-border: #2e2e2e;
	--color-linen: #171717;
	--color-light: #ffffff;
	--logo-height: 60px;

	--font-body: 'Inter', system-ui, -apple-system, sans-serif;
	--font-display: 'Playfair Display', Georgia, serif;
	--font-brand: 'Bebas Neue', 'Anton', 'Inter', sans-serif;

	--radius: 0.375rem;
	--header-height: 80px;

	--btn-radius: 0;
	--btn-height: 3rem;
	--btn-padding: 0 1.75rem;
	--btn-font-size: 14px;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0.14em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0;

	--checkout-gap: 2rem;
	--card-radius: 0.5rem;
	--section-padding: 2rem;
	--color-surface: var(--color-linen);
}

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

body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	letter-spacing: 0.005em;
	-webkit-font-smoothing: antialiased;
}

/* Match Lovable: hand cursor on every interactive control */
a,
button,
[role="button"],
[type="button"],
[type="submit"],
[type="reset"],
label[for],
select,
summary,
.theme-cat-filter,
.theme-product-card__nav,
.theme-product-card__add-btn,
.theme-product-card__quickview,
.theme-product-card__info,
.theme-product-card__image-link,
.theme-nav-anchor,
.site-header__cart,
.site-header__menu-toggle,
.site-header__menu-close,
.faq-item__question {
	cursor: pointer;
}

img, video { max-width: 100%; display: block; }
/* Completeness rule (Section 15.1): every cover/full-bleed image class used
   anywhere in the theme MUST be listed here and in the ruleset below. */
img:not(.cover-img):not(.hero-section__video):not(.theme-product-card__image):not(.site-logo-img) {
	height: auto;
}
.cover-img,
.theme-product-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	text-wrap: balance;
	margin: 0;
}
h1 { font-weight: 400; }
h2, h3, h4, h5, h6 { font-weight: 400; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font-family: var(--font-body); }

/* Lovable .container-wide: max-w-7xl (80rem) + px-5 / sm:px-6 / lg:px-10 */
.container-wide { width: 100%; max-width: 80rem; margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }
@media (min-width: 640px) { .container-wide { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container-wide { padding-left: 2.5rem; padding-right: 2.5rem; } }

/* Section 31.7 — logo height must win over the global img:not(...) exclusion
   rule below, which has higher selector specificity than a plain class. */
.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; }
.site-logo-text { line-height: var(--logo-height); display: block; }

.text-accent { color: var(--color-accent); }
.eyebrow { font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 1.25rem; font-weight: 500; }

::selection { background: color-mix(in srgb, var(--color-accent) 35%, transparent); color: var(--color-foreground); }

/* ---------- 3. Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
	border-radius: var(--btn-radius);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	min-height: var(--btn-height);
	padding: var(--btn-padding);
	border: 1px solid transparent;
	cursor: pointer;
	transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:disabled { pointer-events: none; opacity: 0.6; }
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.btn-primary,
.btn-hero-primary {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}
.btn-primary:hover, .btn-hero-primary:hover { opacity: 0.9; }

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

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

.btn-dark {
	background-color: var(--color-background);
	color: #fff;
	border-color: var(--color-background);
}
.btn-dark:hover { opacity: 0.9; }

.btn-ghost { background: transparent; border-color: transparent; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.btn-ghost:hover { background-color: color-mix(in srgb, var(--color-foreground) 5%, transparent); }

/* ---------- 4. 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-revealed { opacity: 1; transform: translateY(0); }
.reveal-item.scale-in-item {
	transform: scale(0.94);
	transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-item.scale-in-item.is-revealed { transform: scale(1); }

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

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

@keyframes slow-zoom { from { transform: scale(1); } to { transform: scale(1.12); } }
.animate-slow-zoom { animation: slow-zoom 22s ease-in-out infinite alternate; }

section[id] { scroll-margin-top: 5.5rem; }
body.admin-bar section[id] { scroll-margin-top: calc(5.5rem + 32px); }
@media screen and (max-width: 782px) {
	body.admin-bar section[id] { scroll-margin-top: calc(5.5rem + 46px); }
}

/* ---------- 5. Header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; }

/* Keep fixed header clear of the WP admin bar */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}

.site-header__announcement {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	text-align: center;
	padding: 0.5rem 1rem;
	overflow: hidden;
	max-height: 5rem;
	opacity: 1;
	transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}
.site-header.is-solid .site-header__announcement,
.site-header.menu-is-open .site-header__announcement { max-height: 0; opacity: 0; padding: 0 1rem; }

.site-header__bar { position: relative; z-index: 50; transition: background-color 0.5s ease, border-color 0.5s ease; background-color: transparent; border-bottom: 1px solid transparent; }
.site-header.is-solid .site-header__bar,
.site-header.menu-is-open .site-header__bar {
	background-color: color-mix(in srgb, var(--color-light) 95%, transparent);
	backdrop-filter: blur(16px);
	border-bottom-color: color-mix(in srgb, var(--color-background) 10%, transparent);
}

.site-header__row { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 1024px) {
	.site-header__row { height: 5rem; display: grid; grid-template-columns: 1fr auto 1fr; }
}

.site-header__menu-toggle, .site-header__menu-close {
	display: inline-flex; align-items: center; justify-content: center;
	width: 2.75rem; height: 2.75rem;
	background: transparent; border: none; cursor: pointer;
	color: var(--color-foreground);
	order: 1;
}
.site-header.is-solid .site-header__menu-toggle,
.site-header.is-solid .site-header__menu-close { color: var(--color-background); }
.site-header__menu-close { display: none; order: 3; }
.site-header.menu-is-open .site-header__menu-close { display: inline-flex; }
.site-header.menu-is-open .site-header__menu-toggle { display: none; }
@media (min-width: 1024px) {
	.site-header__menu-toggle, .site-header__menu-close { display: none !important; }
}

.site-header__logo-link { display: inline-flex; align-items: center; order: 2; }
@media (min-width: 1024px) { .site-header__logo-link { order: 1; justify-self: start; } }
.site-header__logo { height: 3rem; width: auto; transition: opacity 0.3s ease; }
@media (min-width: 1024px) { .site-header__logo { height: 4rem; } }
.site-header__logo--dark { display: none; }
.site-header.is-solid .site-header__logo--light { display: none; }
.site-header.is-solid .site-header__logo--dark { display: block; }

.site-header__nav { display: none; order: 2; }
@media (min-width: 1024px) {
	.site-header__nav { display: flex; align-items: center; gap: 2rem; justify-self: center; }
}
.site-header__nav .theme-nav-list { display: flex; gap: 2rem; }
.site-header__nav .theme-nav-anchor {
	position: relative;
	font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 90%, transparent);
	transition: color 0.3s ease;
	padding-bottom: 0.4rem;
}
.site-header.is-solid .site-header__nav .theme-nav-anchor { color: color-mix(in srgb, var(--color-background) 80%, transparent); }
.site-header__nav .theme-nav-anchor:hover,
.site-header__nav .theme-nav-anchor.is-active { color: var(--color-accent); }
.site-header__nav .theme-nav-anchor::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--color-accent);
	opacity: 0; transform: scaleX(0); transition: all 0.3s ease;
}
.site-header__nav .theme-nav-anchor.is-active::after,
.site-header__nav .theme-nav-anchor:hover::after { opacity: 1; transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: 0.25rem; order: 3; justify-self: end; }
.site-header__cart {
	position: relative; display: inline-flex; align-items: center; justify-content: center;
	width: 2.75rem; height: 2.75rem; background: transparent; border: none; cursor: pointer;
	color: var(--color-foreground); transition: color 0.3s ease;
}
.site-header.is-solid .site-header__cart { color: var(--color-background); }
.site-header__cart:hover { color: var(--color-accent); }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px;
	background-color: var(--color-accent); color: var(--color-background);
	font-size: 11px; font-weight: 600; min-width: 18px; height: 18px; padding: 0 4px;
	border-radius: 999px; display: flex; align-items: center; justify-content: center;
}
.theme-cart-count:empty { display: none; }

.site-header__mobile {
	position: fixed; inset: 4rem 0 0 0; z-index: 40; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
body.admin-bar .site-header__mobile { top: calc(4rem + 32px); }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header__mobile { top: calc(4rem + 46px); }
}
.site-header.menu-is-open .site-header__mobile { opacity: 1; pointer-events: auto; }
@media (min-width: 1024px) { .site-header__mobile { display: none; } }
.site-header__mobile-overlay {
	position: absolute; inset: 0; width: 100%; height: 100%; border: none;
	background-color: color-mix(in srgb, var(--color-background) 40%, transparent);
	backdrop-filter: blur(4px); cursor: default;
}
.site-header__mobile-panel {
	position: absolute; left: 0; right: 0; top: 0;
	background-color: var(--color-light);
	border-bottom: 1px solid color-mix(in srgb, var(--color-background) 10%, transparent);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	padding: 1rem 0; /* Lovable: py-4 */
	transform: translateY(-1rem);
	transition: transform 0.3s ease;
}
.site-header.menu-is-open .site-header__mobile-panel { transform: translateY(0); }
/* Match Lovable: container-wide flex flex-col + stacked link buttons */
.site-header__mobile-panel .container-wide {
	display: flex;
	flex-direction: column;
}
.site-header__mobile-panel .theme-nav-list,
.theme-nav-list--mobile {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 0;
	margin: 0;
	padding: 0;
}
.site-header__mobile-panel .theme-nav-list > li,
.theme-nav-list--mobile > li {
	display: block;
	width: 100%;
}
.site-header__mobile-panel .theme-nav-anchor,
.theme-nav-list--mobile .theme-nav-anchor {
	display: block;
	width: 100%;
	box-sizing: border-box;
	text-align: left;
	padding: 1rem 0; /* Lovable: py-4 */
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-background) 80%, transparent); /* text-background/80 */
	border: none;
	border-bottom: 1px solid color-mix(in srgb, var(--color-background) 10%, transparent);
	background: transparent;
	transition: color 0.2s ease;
	touch-action: manipulation;
	cursor: pointer;
}
.site-header__mobile-panel .theme-nav-list > li:last-child .theme-nav-anchor,
.theme-nav-list--mobile > li:last-child .theme-nav-anchor {
	border-bottom: none;
}
.site-header__mobile-panel .theme-nav-anchor:hover,
.site-header__mobile-panel .theme-nav-anchor.is-active,
.theme-nav-list--mobile .theme-nav-anchor:hover,
.theme-nav-list--mobile .theme-nav-anchor.is-active {
	color: var(--color-accent);
}

/* ---------- 6. Hero ---------- */
.hero-section {
	position: relative; height: 100vh; width: 100%;
	display: flex; align-items: flex-end; overflow: hidden;
	background-color: var(--color-background);
}
body.theme-no-hero .hero-section { display: none; }
.hero-section__video { position: absolute; inset: 0; object-position: top; }
.hero-section__scrim { position: absolute; inset: 0; }
.hero-section__scrim--1 { background-color: color-mix(in srgb, var(--color-background) 30%, transparent); }
.hero-section__scrim--2 { background: linear-gradient(to right, color-mix(in srgb, var(--color-background) 85%, transparent), color-mix(in srgb, var(--color-background) 40%, transparent), transparent); }
.hero-section__scrim--3 { background: linear-gradient(to top, color-mix(in srgb, var(--color-background) 80%, transparent), transparent, color-mix(in srgb, var(--color-background) 20%, transparent)); }
.hero-section__content {
	position: relative; z-index: 10;
	padding-bottom: 2.5rem; padding-top: 6rem;
	display: grid; gap: 2rem;
}
@media (min-width: 1024px) {
	.hero-section__content { grid-template-columns: repeat(12, minmax(0, 1fr)); align-items: end; padding-bottom: 3rem; }
}
.hero-section__title {
	color: var(--color-primary);
	line-height: 0.9; letter-spacing: -0.01em;
	font-size: clamp(3.2rem, 10vw, 8rem);
	grid-column: 1 / span 7; grid-row: 1;
}
.hero-section__ctas { display: flex; flex-direction: column; gap: 0.75rem; grid-column: 1 / span 7; grid-row: 2; }
@media (min-width: 640px) { .hero-section__ctas { flex-direction: row; gap: 1rem; } }
.hero-section__stats {
	display: flex; flex-direction: column; gap: 1rem;
	padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent);
	grid-column: 1 / -1; grid-row: 3; width: 100%;
}
/* Tablet+: horizontal layout matching desktop */
@media (min-width: 768px) {
	.hero-section__stats {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
		gap: 1.25rem;
		padding-top: 2rem;
	}
}
@media (min-width: 1024px) { .hero-section__stats { gap: 1.5rem; } }
.hero-section__stat {
	display: flex; align-items: baseline; gap: 1rem;
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent);
	padding-bottom: 0.75rem;
}
.hero-section__stats .hero-section__stat:last-child { border-bottom: none; padding-bottom: 0; }
@media (min-width: 768px) { .hero-section__stat { border-bottom: none; padding-bottom: 0; align-items: flex-end; } }
.hero-section__stat-index { font-family: var(--font-body); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-accent) 80%, transparent); }
.hero-section__stat-label { font-size: 1.25rem; color: var(--color-primary); line-height: 1; letter-spacing: -0.01em; }
@media (min-width: 768px) { .hero-section__stat-label { font-size: 1.5rem; } }
@media (min-width: 1024px) { .hero-section__stat-label { font-size: 1.875rem; } }

/* ---------- 7. Section heading scales (Section 2.2.5 — per-section, not global) ---------- */
.shop-heading, .services-section__heading, .about-section__heading, .faq-section__heading, .contact-section__heading {
	font-size: 3rem; line-height: 0.95; color: var(--color-foreground);
}
@media (min-width: 768px) { .shop-heading, .services-section__heading, .about-section__heading, .faq-section__heading, .contact-section__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 4.5rem; } }
/* Light sections: dark text for Your / answered. (accent span stays sand) */
.shop-heading,
.faq-section__heading,
.contact-section__heading {
	color: var(--color-background);
}

/* ---------- 8. Shop section ---------- */
.shop-section { background-color: var(--color-light); padding: 6rem 0; border-top: 1px solid var(--color-border); color: var(--color-background); }
@media (min-width: 768px) { .shop-section { padding: 8rem 0; } }
.shop-section__head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .shop-section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.shop-section__intro { max-width: 42rem; }
.shop-section__desc { margin-top: 1.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-background) 70%, transparent); line-height: 1.7; max-width: 36rem; }
@media (min-width: 768px) { .shop-section__desc { font-size: 15px; } }
.shop-section__filters-panel { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
@media (min-width: 1024px) { .shop-section__filters-panel { width: 20rem; } }
.shop-section__search { position: relative; }
.shop-section__search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-background) 50%, transparent); }
.shop-section__search input {
	width: 100%; height: 2.75rem; padding: 0 1rem 0 2.75rem;
	background-color: var(--color-light); border: 1px solid color-mix(in srgb, var(--color-background) 10%, transparent);
	font-size: 14px; color: var(--color-background);
}
.shop-section__search input::placeholder { color: color-mix(in srgb, var(--color-background) 45%, transparent); }
.shop-section__search input:focus { outline: none; border-color: var(--color-accent); }
.shop-section__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.shop-section__chip {
	display: inline-flex; align-items: center; padding: 0.25rem 0.75rem;
	background-color: var(--color-light); color: color-mix(in srgb, var(--color-background) 70%, transparent);
	font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
	border: 1px solid color-mix(in srgb, var(--color-background) 10%, transparent);
}
.shop-section__categories { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2.5rem; }
.theme-cat-filter {
	padding: 0 1.25rem; height: 2.5rem; font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
	border: 1px solid color-mix(in srgb, var(--color-background) 10%, transparent);
	background-color: var(--color-light); color: color-mix(in srgb, var(--color-background) 70%, transparent);
	cursor: pointer; transition: all 0.2s ease;
}
.theme-cat-filter:hover { border-color: var(--color-accent); color: var(--color-accent); }
.theme-cat-filter.is-active { background-color: var(--color-background); color: var(--color-primary); border-color: var(--color-background); }
.shop-section__more { margin-top: 3rem; display: flex; justify-content: center; }
.shop-section__more .btn-outline {
	background-color: var(--color-light);
	color: var(--color-background);
	border-color: color-mix(in srgb, var(--color-background) 30%, transparent);
}
.shop-section__more .btn-outline:hover {
	background-color: var(--color-background);
	color: var(--color-primary);
	border-color: var(--color-background);
}
.shop-section__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-background) 60%, transparent); }

/* ---------- 9. Product grid & card (matches ProductCard.tsx) ---------- */
.theme-product-grid {
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 1.5rem; /* gap-x-6 */
	row-gap: 2.5rem;    /* gap-y-10 */
	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)); } }

.theme-product-card-wrap { height: 100%; }
.theme-product-card-wrap.theme-card-extra { display: none; }
.theme-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background-color: var(--color-background);
	border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	padding: 0.75rem;
	border-radius: 0;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.theme-product-card:hover {
	transform: translateY(-4px);
	border-color: color-mix(in srgb, var(--color-primary) 50%, transparent);
	box-shadow: 0 32px 60px -20px rgba(0,0,0,0.8);
}

.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background-color: var(--color-linen); margin-bottom: 1rem; }
.theme-product-card__image-link { position: absolute; inset: 0; z-index: 1; }
.theme-product-card__image {
	pointer-events: none;
	will-change: transform;
	transition: transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.theme-product-card:hover .theme-product-card__image { transform: scale(1.04); }
.theme-product-card__scrim {
	position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 35%, transparent), transparent 60%);
	opacity: 0; transition: opacity 0.5s ease;
}
.theme-product-card:hover .theme-product-card__scrim { opacity: 1; }

.theme-product-card__badge {
	position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3;
	font-size: 11px; font-weight: 500; padding: 0.25rem 0.625rem;
	background-color: var(--color-foreground); color: var(--color-background);
	border-radius: 0;
}
.theme-product-card__badge--feature {
	display: inline-flex; align-items: center; gap: 0.25rem;
	background-color: var(--color-primary); color: var(--color-primary-foreground);
	font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.theme-product-card__nav {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
	width: 2rem; height: 2rem; display: inline-flex; align-items: center; justify-content: center;
	background-color: color-mix(in srgb, var(--color-background) 85%, transparent); color: var(--color-foreground);
	border: none; border-radius: 0; cursor: pointer; opacity: 0; transition: all 0.3s ease;
	backdrop-filter: blur(4px);
}
.theme-product-card:hover .theme-product-card__nav { opacity: 1; }
.theme-product-card__nav:hover { background-color: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-card__nav--prev { left: 0.5rem; }
.theme-product-card__nav--next { right: 0.5rem; }
.theme-product-card__dots { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 3; display: flex; gap: 0.25rem; pointer-events: none; }
.theme-product-card__dot { height: 4px; width: 4px; border-radius: 0; background-color: color-mix(in srgb, var(--color-background) 60%, transparent); transition: all 0.2s ease; }
.theme-product-card__dot.is-active { width: 1rem; background-color: var(--color-background); }

.theme-product-card__quick-actions {
	position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; z-index: 4;
	display: flex; align-items: center; gap: 0.5rem;
	opacity: 0; transition: opacity 0.5s ease;
}
.theme-product-card:hover .theme-product-card__quick-actions { opacity: 1; }
.theme-product-card__add-btn.add_to_cart_button.ajax_add_to_cart {
	flex: 1 1 auto; min-height: 2.5rem; height: 2.5rem; padding: 0 0.75rem;
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	background-color: var(--color-primary) !important; color: var(--color-primary-foreground) !important;
	font-size: 13px; font-weight: 500; letter-spacing: 0.02em; text-transform: none !important;
	border-radius: 0 !important; border: none !important; box-shadow: 0 1px 2px rgba(0,0,0,0.15);
	cursor: pointer;
}
.theme-product-card__add-btn.add_to_cart_button.ajax_add_to_cart:hover {
	background-color: color-mix(in srgb, var(--color-primary) 90%, transparent) !important;
}
.theme-product-card__quickview {
	width: 2.5rem; height: 2.5rem; flex-shrink: 0;
	display: inline-flex; align-items: center; justify-content: center;
	background-color: color-mix(in srgb, var(--color-background) 95%, transparent); color: var(--color-foreground);
	border: 1px solid var(--color-border); border-radius: 0; box-shadow: 0 1px 2px rgba(0,0,0,0.15);
	transition: all 0.3s ease; cursor: pointer; backdrop-filter: blur(4px);
}
.theme-product-card__quickview:hover { background-color: var(--color-primary); color: var(--color-primary-foreground); }

.theme-product-card__info { display: block; flex: 1; padding: 0 0.125rem; cursor: pointer; }
.theme-product-card__category { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-primary) 90%, transparent); margin-bottom: 0.375rem; font-weight: 500; }
.theme-product-card__title { font-size: 1.15rem; line-height: 1.35; color: var(--color-foreground); transition: color 0.3s ease; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.3rem; } }
@media (min-width: 1024px) { .theme-product-card__title { font-size: 1.4rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.375rem; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); font-family: var(--font-body); text-transform: none; }
.theme-product-card__price del { opacity: 0.6; margin-right: 0.375rem; }

/* ---------- 10. Marquee ---------- */
.marquee-section { background-color: var(--color-primary); padding: 1.25rem 0; overflow: hidden; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.marquee-section__track { display: flex; white-space: nowrap; animation: marquee 22s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.3333%); } }
.marquee-section__item { display: flex; align-items: center; flex-shrink: 0; color: var(--color-primary-foreground); font-size: 1.5rem; letter-spacing: 0.14em; }
@media (min-width: 768px) { .marquee-section__item { font-size: 1.875rem; } }
.marquee-section__text { margin: 0 1.5rem; }
@media (min-width: 768px) { .marquee-section__text { margin: 0 2.5rem; } }
.marquee-section__dot { color: color-mix(in srgb, var(--color-primary-foreground) 50%, transparent); font-size: 0.875rem; }

/* ---------- 11. Services / Founder ---------- */
.services-section { background-color: var(--color-linen); padding: 6rem 0; border-top: 1px solid var(--color-border); }
@media (min-width: 768px) { .services-section { padding: 8rem 0; } }
.services-section__intro { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; margin-bottom: 4rem; }
@media (min-width: 1024px) { .services-section__intro { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.services-section__subheading { margin-top: 1.5rem; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 50%, transparent); }
.services-section__copy { display: flex; flex-direction: column; gap: 1.25rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-primary) 75%, transparent); }
.services-section__quote { font-family: var(--font-body); font-style: italic; font-weight: 300; font-size: 1.5rem; line-height: 1.3; color: var(--color-primary); text-transform: none; border-left: 2px solid var(--color-accent); padding-left: 1.5rem; }
@media (min-width: 768px) { .services-section__quote { font-size: 1.875rem; } }
.services-section__gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .services-section__gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; } }
.services-section__photo { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background-color: var(--color-background); }
.services-section__photo--tall { aspect-ratio: 3 / 4; }
@media (min-width: 768px) { .services-section__photo--tall { grid-row: span 2; aspect-ratio: auto; } }
.services-section__photo img { transition: transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1); }
.services-section__photo:hover img { transform: scale(1.05); }
.services-section__values { display: grid; grid-template-columns: 1fr; gap: 1px; background-color: var(--color-border); border: 1px solid var(--color-border); margin-bottom: 3.5rem; }
@media (min-width: 768px) { .services-section__values { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.services-section__value { background-color: var(--color-background); padding: 2rem; }
@media (min-width: 768px) { .services-section__value { padding: 2.5rem; } }
.services-section__value-num { font-size: 1.875rem; color: var(--color-accent); margin-bottom: 1rem; }
.services-section__value-title { font-size: 1.5rem; color: var(--color-primary); margin-bottom: 0.75rem; }
.services-section__value-body { font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-primary) 70%, transparent); text-transform: none; font-family: var(--font-body); }
.services-section__cta { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
@media (min-width: 640px) { .services-section__cta { flex-direction: row; align-items: center; justify-content: space-between; } }
.services-section__cta-heading { font-size: 1.875rem; color: var(--color-primary); line-height: 1.2; }
@media (min-width: 768px) { .services-section__cta-heading { font-size: 2.25rem; } }
.services-section__cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; }
@media (min-width: 640px) { .services-section__cta-buttons { flex-direction: row; width: auto; } }

/* ---------- 12. About / Brand ---------- */
.about-section { background-color: var(--color-background); padding: 6rem 0; border-top: 1px solid var(--color-border); }
@media (min-width: 768px) { .about-section { padding: 8rem 0; } }
.about-section__head { max-width: 56rem; margin-bottom: 3.5rem; }
.about-section__split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: stretch; }
@media (min-width: 1024px) { .about-section__split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-section__media { display: flex; flex-direction: column; height: 100%; max-height: 30rem; }
.about-section__media-inner { position: relative; overflow: hidden; background-color: var(--color-linen); flex: 1; height: 100%; min-height: 17.5rem; }
.about-section__media-scrim { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-background) 60%, transparent), transparent); }
.about-section__media-caption { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; }
.about-section__media-caption p { font-size: 1.875rem; color: var(--color-primary); line-height: 1; }
@media (min-width: 768px) { .about-section__media-caption p { font-size: 2.25rem; } }
.about-section__copy { display: flex; flex-direction: column; justify-content: center; gap: 1.25rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-primary) 75%, transparent); max-width: 65ch; }
@media (min-width: 1024px) { .about-section__copy { max-height: 30rem; } }
.about-section__pillars { margin-top: 4rem; display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .about-section__pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.about-section__pillar {
	position: relative; overflow: hidden; background-color: #111111; border: 1px solid var(--color-border);
	padding: 2rem; transition: border-color 0.5s ease;
}
@media (min-width: 768px) { .about-section__pillar { padding: 2.5rem; } }
.about-section__pillar:hover { border-color: color-mix(in srgb, var(--color-accent) 40%, transparent); }
.about-section__pillar-topline {
	position: absolute; top: 0; left: 0; width: 100%; height: 2px;
	background: linear-gradient(to right, color-mix(in srgb, var(--color-accent) 60%, transparent), color-mix(in srgb, var(--color-accent) 20%, transparent), transparent);
	opacity: 0; transition: opacity 0.5s ease;
}
.about-section__pillar:hover .about-section__pillar-topline { opacity: 1; }
.about-section__pillar-dots {
	position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
	background-image: radial-gradient(circle, var(--color-primary) 1px, transparent 1px);
	background-size: 24px 24px;
}
.about-section__pillar-body { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; justify-content: space-between; gap: 2.5rem; }
.about-section__pillar-eyebrow { display: block; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 40%, transparent); margin-bottom: 1rem; }
.about-section__pillar-title { font-size: 2.25rem; color: var(--color-primary); line-height: 1; }
@media (min-width: 768px) { .about-section__pillar-title { font-size: 3rem; } }
.about-section__pillar-footer { display: flex; flex-direction: column; gap: 1rem; }
.about-section__pillar-footer p { font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-primary) 70%, transparent); text-transform: none; font-family: var(--font-body); }
.about-section__pillar-line { height: 1px; width: 0; background-color: color-mix(in srgb, var(--color-accent) 30%, transparent); transition: width 0.7s cubic-bezier(0.22, 0.61, 0.36, 1); }
.about-section__pillar:hover .about-section__pillar-line { width: 100%; }

/* ---------- 13. Brand film ---------- */
.brandfilm-section { position: relative; width: 100%; height: 70vh; overflow: hidden; background-color: var(--color-background); }
@media (min-width: 768px) { .brandfilm-section { height: 85vh; } }
.brandfilm-section__video { object-position: top; }
.brandfilm-section__scrim { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-background) 70%, transparent), color-mix(in srgb, var(--color-background) 10%, transparent), color-mix(in srgb, var(--color-background) 40%, transparent)); }
.brandfilm-section__content { position: relative; z-index: 10; height: 100%; display: flex; align-items: flex-end; padding-bottom: 4rem; }
@media (min-width: 768px) { .brandfilm-section__content { padding-bottom: 6rem; } }
.brandfilm-section__heading { color: var(--color-primary); line-height: 0.95; font-size: clamp(2.5rem, 6vw, 5rem); max-width: 48rem; }

/* ---------- 14. FAQ ---------- */
.faq-section { background-color: var(--color-light); border-top: 1px solid var(--color-border); padding: 6rem 0; color: var(--color-background); }
@media (min-width: 768px) { .faq-section { padding: 8rem 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: repeat(12, minmax(0, 1fr)); } }
.faq-section__intro { grid-column: span 4; }
.faq-section__list { grid-column: span 8; }
.faq-section__desc { margin-top: 1.5rem; font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-background) 70%, transparent); max-width: 24rem; }
@media (min-width: 768px) { .faq-section__desc { font-size: 15px; } }
.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-background) 10%, transparent); }
.faq-item__question {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
	padding: 1.5rem 0; background: none; border: none; cursor: pointer; text-align: left;
}
.faq-item__question span.faq-item__question-text,
.faq-item__question span:first-child { font-size: 1.25rem; color: var(--color-background); line-height: 1.35; text-transform: uppercase; font-family: var(--font-display); }
@media (min-width: 768px) {
	.faq-item__question span.faq-item__question-text,
	.faq-item__question span:first-child { font-size: 1.5rem; }
}
.faq-item__icon { flex-shrink: 0; color: var(--color-accent); }
.faq-item__icon-minus { display: none; }
.faq-item.is-open .faq-item__icon-plus { display: none; }
.faq-item.is-open .faq-item__icon-minus { display: block; }
.faq-item__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-out; }
.faq-item.is-open .faq-item__panel { grid-template-rows: 1fr; }
.faq-item__panel-inner { overflow: hidden; }
.faq-item__panel p { padding: 0 2rem 1.5rem 0; font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-background) 70%, transparent); max-width: 42rem; }
@media (min-width: 768px) { .faq-item__panel p { font-size: 15px; } }

/* ---------- 15. Pre-contact CTA ---------- */
.precontact-section { position: relative; overflow: hidden; background-color: var(--color-background); border-top: 1px solid var(--color-border); }
.precontact-section__bg { object-position: right; }
/* Use top/bottom only so .container-wide horizontal padding is preserved */
.precontact-section__content {
	position: relative;
	z-index: 10;
	padding-top: 7rem;
	padding-bottom: 7rem;
	text-align: left;
}
@media (max-width: 1023px) {
	.precontact-section__content {
		padding-left: 1.75rem;
		padding-right: 1.75rem;
	}
}
@media (max-width: 639px) {
	.precontact-section__content {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
@media (min-width: 768px) {
	.precontact-section__content {
		padding-top: 10rem;
		padding-bottom: 10rem;
	}
}
.precontact-section__heading { color: var(--color-primary); line-height: 0.9; max-width: 60rem; font-size: clamp(2.6rem, 7vw, 6rem); }
.precontact-section__paragraph { margin-top: 2rem; max-width: 36rem; font-size: 15px; color: color-mix(in srgb, var(--color-primary) 75%, transparent); line-height: 1.7; }
.precontact-section__ctas { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: flex-start; }
@media (min-width: 640px) { .precontact-section__ctas { flex-direction: row; gap: 1rem; } }

/* ---------- 16. Contact ---------- */
.contact-section { background-color: var(--color-light); border-top: 1px solid color-mix(in srgb, var(--color-background) 10%, transparent); padding: 6rem 0 4rem; color: var(--color-background); }
@media (min-width: 768px) { .contact-section { padding: 8rem 0 4rem; } }
.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__info { display: flex; flex-direction: column; height: 100%; }
.contact-section__paragraph { margin-top: 1.5rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-background) 70%, transparent); max-width: 28rem; }
.contact-section__links { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-section__link { display: inline-flex; align-items: center; gap: 1rem; color: var(--color-background); transition: color 0.2s ease; }
.contact-section__link:hover { color: var(--color-accent); }
.contact-section__link-icon {
	width: 2.75rem; height: 2.75rem; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid color-mix(in srgb, var(--color-background) 20%, transparent); transition: border-color 0.2s ease;
}
.contact-section__link:hover .contact-section__link-icon { border-color: var(--color-accent); }
.contact-section__link-text { display: flex; flex-direction: column; text-align: left; }
.contact-section__link-label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-background) 50%, transparent); }
.contact-section__link-value { font-size: 14px; font-weight: 500; overflow-wrap: break-word; word-break: break-word; }
.contact-section__quote-wrap { margin-top: auto; padding-top: 2.5rem; }
.contact-section__quote { position: relative; border: 1px solid color-mix(in srgb, var(--color-background) 20%, transparent); background-color: #f5f4f2; padding: 1.5rem; }
@media (min-width: 768px) { .contact-section__quote { padding: 1.75rem; } }
.contact-section__quote-badge {
	position: absolute; top: -0.75rem; left: 1.5rem; display: inline-flex; align-items: center; gap: 0.375rem;
	padding: 0.25rem 0.75rem; background-color: var(--color-accent); color: var(--color-background);
	font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
}
.contact-section__quote-text { color: color-mix(in srgb, var(--color-background) 90%, transparent); font-family: var(--font-body); font-weight: 300; font-style: italic; text-transform: none; font-size: 1.125rem; line-height: 1.4; border-left: 2px solid var(--color-accent); padding-left: 1.25rem; }
@media (min-width: 768px) { .contact-section__quote-text { font-size: 1.25rem; } }
.contact-section__quote-author { margin-top: 0.75rem; padding-left: 1.25rem; font-size: 12px; color: color-mix(in srgb, var(--color-background) 55%, transparent); letter-spacing: 0.16em; text-transform: uppercase; }

.contact-section__form { background-color: #f5f4f2; border: 1px solid color-mix(in srgb, var(--color-background) 20%, transparent); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; height: 100%; }
@media (min-width: 768px) { .contact-section__form { padding: 2rem; } }
.contact-section__form-fields { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.form-field label { display: block; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-background) 55%, transparent); margin-bottom: 0.5rem; }
.form-field-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-field-row { grid-template-columns: 1fr 1fr; } }
.form-field input, .form-field select, .form-field textarea {
	width: 100%; height: 3rem; padding: 0 1rem; background-color: #fff; border: 1px solid color-mix(in srgb, var(--color-background) 20%, transparent);
	font-size: 14px; color: var(--color-background); font-family: var(--font-body); border-radius: 0;
}
.form-field textarea { height: auto; padding: 0.75rem 1rem; resize: none; }
.form-field select { appearance: none; padding-right: 2.5rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230d0d0d' stroke-width='1.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-field input::placeholder, .form-field textarea::placeholder { color: color-mix(in srgb, var(--color-background) 40%, transparent); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--color-accent); }
.contact-section__form-submit { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.5rem; }
.contact-section__submit-btn { width: 100%; }
.contact-section__note { font-size: 12px; color: color-mix(in srgb, var(--color-background) 55%, transparent); text-align: center; }

/* ---------- 17. Footer ---------- */
.site-footer { background-color: var(--color-background); border-top: 1px solid color-mix(in srgb, var(--color-foreground) 6%, transparent); }
/* Use top/bottom only so .container-wide horizontal padding is preserved */
.site-footer__inner {
	padding-top: 4rem;
	padding-bottom: 2rem;
}
@media (max-width: 1023px) {
	.site-footer__inner {
		padding-left: 1.75rem;
		padding-right: 1.75rem;
	}
}
@media (max-width: 639px) {
	.site-footer__inner {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
@media (min-width: 1024px) {
	.site-footer__inner {
		padding-top: 6rem;
		padding-bottom: 2rem;
	}
}

/* Mobile: one column. Tablet: 2×2. Desktop: brand + links + wider contact. */
.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: start;
}
@media (min-width: 640px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2.5rem 2rem;
	}
	/* Contact spans full row so the long email never wraps or clips */
	.site-footer__col--contact {
		grid-column: 1 / -1;
	}
}
@media (min-width: 1024px) {
	.site-footer__grid {
		/* Brand + Explore + Collection + Contact (extra room for email) */
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.75fr) minmax(0, 0.75fr) minmax(0, 1.55fr);
		gap: 2rem 1.75rem;
	}
	.site-footer__col--contact {
		grid-column: auto;
		min-width: 0;
	}
}

.site-footer__logo-link { display: inline-flex; align-items: center; gap: 0.75rem; }
.site-footer__logo { height: 3.5rem !important; width: auto !important; display: block; }
.site-footer__brand-name { font-family: var(--font-brand); color: var(--color-primary); font-size: 1.5rem; letter-spacing: 0.16em; }
.site-footer__desc { margin-top: 1.25rem; font-size: 13px; color: color-mix(in srgb, var(--color-primary) 60%, transparent); line-height: 1.7; max-width: 20rem; text-transform: none; font-family: var(--font-body); }
.site-footer__tagline { margin-top: 1.25rem; font-size: 1.125rem; color: var(--color-accent); letter-spacing: 0.18em; }
.site-footer__col { min-width: 0; }
.site-footer__col-heading { font-size: 14px; color: var(--color-primary); margin-bottom: 1.25rem; letter-spacing: 0.28em; }
.site-footer__list { display: flex; flex-direction: column; gap: 0.625rem; font-size: 13px; }
.site-footer__list a, .site-footer__list button { color: color-mix(in srgb, var(--color-primary) 65%, transparent); letter-spacing: 0.02em; transition: color 0.2s ease; background: none; border: none; cursor: pointer; padding: 0; font-size: 13px; text-align: left; }
.site-footer__list a:hover, .site-footer__list button:hover { color: var(--color-accent); }
.site-footer__list--contact { gap: 0.75rem; }

.site-footer__contact-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: color-mix(in srgb, var(--color-primary) 65%, transparent);
	max-width: 100%;
}
.site-footer__contact-link svg { flex-shrink: 0; }
.site-footer__contact-link:hover { color: var(--color-accent); }

/* Email must stay on one line at every breakpoint */
.site-footer__contact-link--email {
	white-space: nowrap;
	word-break: normal;
	overflow-wrap: normal;
	font-size: clamp(0.6875rem, 0.55rem + 0.45vw, 0.8125rem); /* ~11–13px */
	letter-spacing: 0;
}
.site-footer__contact-link--email span {
	white-space: nowrap;
}

.site-footer__bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 6%, transparent); display: flex; flex-direction: column; gap: 0.75rem; align-items: center; justify-content: space-between; font-size: 11px; color: color-mix(in srgb, var(--color-primary) 50%, transparent); text-transform: none; font-family: var(--font-body); }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; } }
.site-footer__credit { text-align: right; }
.site-footer__credit a { color: color-mix(in srgb, var(--color-primary) 80%, transparent); font-weight: 500; }
.site-footer__credit a:hover { color: var(--color-accent); text-decoration: underline; }

/* ---------- 18. Cart drawer + overlay (Section 12) ---------- */
#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 90; background-color: color-mix(in srgb, var(--color-foreground) 30%, transparent);
	opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }
#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem; z-index: 91;
	background-color: var(--color-linen); box-shadow: -32px 0 60px -20px rgba(0,0,0,0.8);
	display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	color: var(--color-foreground);
}
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; background: none; border: none; cursor: pointer; color: var(--color-foreground); }
.theme-cart-drawer__close:hover { background-color: 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; gap: 0.5rem; }
.theme-cart-drawer__empty-icon { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); margin-bottom: 0.5rem; }
.theme-cart-drawer__empty-text { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); font-size: 14px; margin-bottom: 1rem; text-transform: none; font-family: var(--font-body); }
.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 { position: relative; width: 5rem; height: 6rem; flex-shrink: 0; overflow: hidden; background-color: var(--color-primary); }
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__name { display: block; font-size: 14px; font-weight: 500; text-transform: none; font-family: var(--font-body); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color 0.2s ease; }
.theme-cart-item__name:hover { color: var(--color-primary); }
.theme-cart-item__price { margin-top: 0.125rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); text-transform: none; font-family: var(--font-body); }
.theme-cart-item__variation { margin-top: 0.25rem; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; background: none; border: none; cursor: pointer; color: var(--color-foreground); display: inline-flex; }
.theme-cart-item__qty-btn:hover { background-color: var(--color-primary); color: var(--color-primary-foreground); }
.theme-cart-item__qty { font-size: 13px; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); background: none; border: none; cursor: pointer; text-transform: none; font-family: var(--font-body); }
.theme-cart-item__remove:hover { color: var(--color-destructive); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); display: flex; flex-direction: column; gap: 1rem; background-color: color-mix(in srgb, var(--color-linen) 40%, transparent); }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 14px; }
.theme-cart-drawer__subtotal span:first-child { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-drawer__subtotal span:last-child { font-weight: 500; }
.theme-cart-drawer__shipping-note { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); text-transform: none; font-family: var(--font-body); }
.theme-cart-drawer__checkout-btn { width: 100%; }
.theme-cart-drawer__empty-btn { width: 100%; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

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

/* WooCommerce notices — scoped visibility (Section 14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info,
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-error { font-size: 14px; padding: 1rem 1.25rem; border-radius: var(--card-radius); background-color: color-mix(in srgb, var(--color-destructive) 10%, transparent); color: var(--color-destructive); border: 1px solid color-mix(in srgb, var(--color-destructive) 30%, transparent); list-style: none; }

/* ---------- 19. Add-to-cart button 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-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 {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Card compact button — overrides global rules (Section 11.4.1) */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: 2.5rem !important;
	height: 2.5rem !important;
	padding: 0 0.75rem !important;
	border-radius: 0 !important;
}

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

/* ---------- 20. Single product page (Section 11.13) ---------- */
.single-product-main { padding-top: 8rem; padding-bottom: 2rem; background-color: var(--color-linen); min-height: 100vh; }
@media (min-width: 1024px) { .single-product-main { padding-top: 9rem; } }
.breadcrumb { padding: 1.5rem 0; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.breadcrumb a { transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.breadcrumb__current { color: var(--color-foreground); }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 5rem; align-items: start; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-gallery { position: sticky; top: 7rem; } }
.theme-product-gallery__main { position: relative; aspect-ratio: 1 / 1; width: 100%; background-color: var(--color-background); overflow: hidden; margin-bottom: 1rem; }
.theme-product-thumbnails { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.625rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb { position: relative; aspect-ratio: 1 / 1; background-color: var(--color-background); overflow: hidden; border: 2px solid transparent; padding: 0; cursor: pointer; transition: border-color 0.2s 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-info__category { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem; font-weight: 500; }
.product-title.theme-product-info__title { font-size: 1.875rem; line-height: 1.05; color: var(--color-foreground); margin-bottom: 1rem; }
@media (min-width: 768px) { .product-title.theme-product-info__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title.theme-product-info__title { font-size: 2.6rem; } }
.theme-product-info__price { font-size: 20px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); margin-bottom: 1rem; font-family: var(--font-body); text-transform: none; }
.theme-product-info__price del { opacity: 0.6; margin-right: 0.5rem; }
.theme-product-info__stock--out { display: inline-block; margin-bottom: 1rem; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-destructive); }
.theme-product-info__description { font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-bottom: 2rem; white-space: pre-line; overflow-wrap: break-word; word-break: break-word; text-transform: none; font-family: var(--font-body); }
.theme-product-info__description p { margin-bottom: 1em; }

.theme-quantity-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.625rem; }
.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); }
.theme-qty-minus, .theme-qty-plus { padding: 0.625rem 1rem; background: none; border: none; cursor: pointer; color: var(--color-foreground); transition: color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--color-primary); }
.theme-qty-input { width: 2.75rem; text-align: center; border: none; background: none; padding: 0.625rem 0; font-size: 14px; font-weight: 500; color: var(--color-foreground); -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-add-to-cart-area {
	display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0;
}
.theme-add-to-cart-area .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }
.theme-buynow-button { flex: 1 1 auto; min-width: 160px; }

.theme-product-info__details { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-product-info__details-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 1rem; }
.theme-product-info__details-list { display: flex; flex-direction: column; gap: 0.625rem; }
.theme-product-info__details-list li { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); display: flex; align-items: flex-start; text-transform: none; font-family: var(--font-body); }
.theme-product-info__details-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background-color: var(--color-primary); margin: 0.5rem 0.75rem 0 0; flex-shrink: 0; }

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

/* Variations table layout (Section 11.5.1) */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; font-weight: 500; }
.single-product .variations tbody td.value { padding-top: 0; margin-bottom: 1rem; }
.single-product .variations tbody td.label label {
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
}
.single-product .variations select {
	width: 100%;
	height: 3rem;
	padding: 0 2.5rem 0 1rem;
	background-color: var(--color-background);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	color: var(--color-foreground);
	-webkit-appearance: none;
	appearance: none;
	color-scheme: dark;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23efece6' stroke-width='1.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
}
.single-product .variations select option,
.single-product .variations select optgroup {
	background-color: var(--color-background);
	color: var(--color-foreground);
}
.single-product .variations select:focus {
	outline: none;
	border-color: var(--color-accent);
}
.single-product .single_variation_wrap .woocommerce-variation-price {
	display: none;
}

.related-products-section { padding: 5rem 0; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.related-products-section__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.related-products-section__heading { font-size: 1.875rem; color: var(--color-foreground); }
@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: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); text-transform: none; font-family: var(--font-body); transition: color 0.2s ease; }
@media (min-width: 640px) { .related-products-section__viewall { display: inline-flex; } }
.related-products-section__viewall:hover { color: var(--color-primary); }
.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)); } }

/* ---------- 21. Shop archive (Section 19) ---------- */
.shop-archive { padding-top: 8rem; padding-bottom: 5rem; background-color: var(--color-light); color: var(--color-background); min-height: 60vh; }
.shop-archive .page-title { font-size: 2.5rem; margin-bottom: 2rem; }
.shop-archive__empty { text-align: center; padding: 5rem 0; }
.woocommerce-pagination { margin-top: 3rem; text-align: center; }
.woocommerce-pagination ul { display: inline-flex; gap: 0.5rem; }
.woocommerce-pagination a, .woocommerce-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 2.5rem; height: 2.5rem; padding: 0 0.5rem; border: 1px solid color-mix(in srgb, var(--color-background) 15%, transparent); font-size: 13px; }
.woocommerce-pagination .current { background-color: var(--color-background); color: var(--color-light); }

/* ---------- 22. Generic pages ---------- */
.site-main { padding-top: 8rem; padding-bottom: 5rem; min-height: 50vh; }
.page-title { font-size: 2.5rem; margin-bottom: 2rem; }
.entry-content { font-size: 15px; line-height: 1.75; }
.entry-content p { margin-bottom: 1.25rem; }

/* ---------- 23. 404 ---------- */
.theme-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; background-color: var(--color-linen); padding-top: 5rem; }
.theme-404__inner { text-align: center; }
.theme-404__code { font-size: 4rem; margin-bottom: 1rem; color: var(--color-foreground); }
.theme-404__sub { font-size: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); margin-bottom: 1rem; text-transform: none; font-family: var(--font-body); }
.theme-404__link { color: var(--color-primary); text-decoration: underline; }
.theme-404__link:hover { opacity: 0.85; }

/* ---------- 24. WooCommerce Checkout Block (Section 13) ---------- */
body.woocommerce-checkout .entry-content { max-width: 100%; }
/* Clear the fixed solid header + breathing room (header bar ≈ 4–5rem) */
body.woocommerce-checkout .site-main {
	padding-top: calc(var(--header-height, 5rem) + 2.5rem);
	padding-bottom: 4rem;
}
@media (min-width: 1024px) {
	body.woocommerce-checkout .site-main {
		padding-top: calc(var(--header-height, 5rem) + 3.5rem);
	}
}
body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title { margin-bottom: 2rem; }

body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
	display: block;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	body.woocommerce-checkout .wc-block-checkout:not(.wc-block-components-sidebar-layout) {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	color: var(--color-background);
	border: 1px solid color-mix(in srgb, var(--color-background) 20%, transparent);
	background-color: #fff;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus { border-color: var(--color-accent); }
body.woocommerce-checkout .wc-block-components-text-input input { padding: revert; }
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-background) !important;
	color: #fff !important;
	border-radius: 0 !important;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 14px;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-surface, #f8f8f8);
	border-radius: var(--card-radius);
	padding: var(--section-padding, 2rem);
}
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; border-radius: var(--card-radius); }
body.woocommerce-checkout .wc-block-cart-items { font-family: var(--font-body); }

/* Order summary qty badge — contrast against image corner */
body.woocommerce-checkout .wc-block-components-order-summary-item__quantity {
	background-color: var(--color-background) !important;
	color: var(--color-primary) !important;
	border: 2px solid var(--color-primary) !important;
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-background) 40%, transparent);
}
body.woocommerce-checkout .wc-block-components-order-summary-item__quantity span[aria-hidden="true"] {
	color: var(--color-primary) !important;
}

body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content { max-width: 100%; }

/* ---------- 25. Thank-you page (Section 22.8) ---------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem 0; font-size: 1.75rem; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1rem 2rem; list-style: none; padding: 0 0 2rem; margin: 0; }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 14px; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
	}
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; }

/* ---------- 26. Misc ---------- */
.theme-fallback-main { padding-top: 8rem; }
