/* =============================================================
   Unique Visuals Laser Engraving — theme stylesheet
   Theme by The Free Website Guys.
============================================================= */

/* ---------- Design tokens (color vars injected inline via wp_add_inline_style) ---------- */
:root {
	--color-primary: #de2e21;
	--color-primary-foreground: #f8fafb;
	--color-background: #0e1015;
	--color-foreground: #f2f4f7;
	--color-accent: #8cc7e2;
	--color-ice: #a2d4eb;
	--color-noir: #090b0f;
	--color-noir-soft: #1b1f26;
	--color-border: #2c3039;
	--color-surface: #171a21;
	--color-surface-soft: #1c1f26;
	--color-surface-soft-2: #1e2229;
	--color-button-text: var(--color-primary-foreground);

	--font-display: 'Playfair Display', Georgia, serif;
	--font-body: 'Manrope', system-ui, sans-serif;

	--ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-gentle: cubic-bezier(0.33, 0.05, 0.2, 1);

	--container-max: 1280px;
	--container-pad: 1.25rem;

	--radius: 2px;
	--card-radius: 2px;

	--btn-radius: 2px;
	--btn-height: 3.5rem;
	--btn-padding: 0 2.25rem;
	--btn-font-size: 0.75rem;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.18em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.6rem;

	--header-height: 80px;
	--logo-height: 56px;

	--section-padding: 5rem;
}

@media (min-width: 640px) {
	:root { --container-pad: 1.5rem; }
}
@media (min-width: 768px) {
	:root { --section-padding: 7rem; }
}
@media (min-width: 1024px) {
	:root { --container-pad: 2.5rem; }
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; display: block; }
img:not(.cover-img):not(.hero-bg-img):not(.product-card-img):not(.theme-product-gallery__img):not(.theme-thumb img):not(.site-logo-img):not(.theme-cart-item__thumb img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-bg-img, .product-card-img, .theme-product-gallery__img, .theme-thumb img, .theme-cart-item__thumb img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
h1, h2, h3, h4, h5, h6 { font-weight: inherit; font-size: inherit; margin: 0; }
h1, h2, h3, h4, h5, h6, .font-display {
	font-family: var(--font-display);
	font-weight: 500;
	letter-spacing: -0.01em;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a, button, [role="button"], input, textarea, select {
	transition-property: color, background-color, border-color, box-shadow, opacity, transform;
	transition-duration: 400ms;
	transition-timing-function: var(--ease-soft);
}

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

.container-wide {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding-left: var(--container-pad);
	padding-right: var(--container-pad);
}

.scroll-mt-24 { scroll-margin-top: 96px; }

.surface-noir { background: var(--color-noir); color: var(--color-foreground); }
.surface-noir-soft { background: var(--color-surface-soft); color: var(--color-foreground); }
.surface-walnut { background: var(--color-surface); color: var(--color-foreground); }

.eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-weight: 600;
	display: block;
}
.text-primary { color: var(--color-primary); }
.text-ice { color: var(--color-ice); }

.link-underline { position: relative; display: inline-block; }
.link-underline::after {
	content: '';
	position: absolute; bottom: -4px; left: 0;
	width: 100%; height: 1px;
	background: currentColor;
	transform: scaleX(0); transform-origin: left;
	transition: transform 0.5s var(--ease-soft);
}
.link-underline:hover::after { transform: scaleX(1); }

.glass-panel {
	background: linear-gradient(160deg, color-mix(in srgb, var(--color-foreground) 6%, transparent), color-mix(in srgb, var(--color-foreground) 1.5%, transparent));
	border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
}

/* ---------- 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);
	text-transform: var(--btn-text-transform);
	letter-spacing: var(--btn-letter-spacing);
	font-weight: var(--btn-font-weight);
	padding: 0 1rem; height: 2.5rem;
	transition: all 0.3s ease-out;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
	background: var(--color-primary); color: var(--color-primary-foreground);
	box-shadow: 0 2px 0 0 color-mix(in srgb, var(--color-primary) 35%, transparent);
}
.btn-primary:hover {
	background: color-mix(in srgb, var(--color-primary) 90%, transparent);
	box-shadow: 0 10px 28px -10px color-mix(in srgb, var(--color-primary) 70%, transparent);
	transform: translateY(-2px);
	opacity: 1;
}
.btn-outline {
	border: 1px solid color-mix(in srgb, var(--color-foreground) 40%, transparent);
	background: transparent; color: var(--color-foreground);
}
.btn-outline:hover {
	background: color-mix(in srgb, var(--color-foreground) 10%, transparent);
	border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent);
	box-shadow: 0 8px 22px -12px color-mix(in srgb, var(--color-foreground) 35%, transparent);
	transform: translateY(-2px);
}
.btn-ghost { background: transparent; }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-accent) 15%, transparent); color: var(--color-foreground); }
.btn-lg { height: var(--btn-height); padding: var(--btn-padding); }
.btn-sm { height: 2.25rem; padding: 0 1rem; font-size: 0.7rem; }
.btn-hero-primary, .btn-hero-outline, .single-product .single_add_to_cart_button { text-transform: none; }

/* ---------- Header ---------- */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 50;
	transition: background-color 0.5s var(--ease-soft), border-color 0.5s var(--ease-soft);
	background: transparent;
}
.site-header.is-solid, .site-header.is-scrolled {
	background: color-mix(in srgb, var(--color-noir) 95%, transparent);
	border-bottom: 1px solid var(--color-border);
}
.site-header__fade {
	position: absolute; inset-inline: 0; top: 0; height: 7rem;
	background: linear-gradient(to bottom, color-mix(in srgb, var(--color-noir) 90%, transparent), color-mix(in srgb, var(--color-noir) 40%, transparent), transparent);
	pointer-events: none;
}
.site-header__inner { position: relative; z-index: 1; }
.site-header__nav { display: flex; align-items: center; justify-content: space-between; height: 4rem; gap: 0.75rem; }
@media (min-width: 1024px) { .site-header__nav { height: 5rem; } }
.site-header__brand, .site-logo-wrap { display: flex; align-items: center; flex-shrink: 0; height: var(--logo-height); }
.site-logo-img { height: 100% !important; width: auto !important; max-height: 100%; object-fit: contain; display: block; }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); line-height: 1; display: block; }
.site-header__links { display: none; align-items: center; gap: 1.75rem; margin-left: auto; margin-right: 1.5rem; }
@media (min-width: 1024px) { .site-header__links { display: flex; } }
.theme-nav-list { display: flex; gap: 1.75rem; }
.theme-footer-nav-list { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-mobile-nav-list { display: flex; flex-direction: column; gap: 0; width: 100%; }
.theme-mobile-nav-list li { width: 100%; }
.theme-nav-link {
	font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
}
.theme-nav-link:hover { color: var(--color-foreground); }
.site-header__actions { display: flex; align-items: center; gap: 0.25rem; }
.theme-cart-btn { position: relative; padding: 0.6rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-cart-btn:hover { color: var(--color-foreground); }
.theme-cart-count {
	position: absolute; top: -0.125rem; right: -0.125rem; min-width: 18px; height: 18px; padding: 0 4px;
	background: var(--color-primary); color: var(--color-primary-foreground);
	font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.theme-cart-count:empty { display: none; }
.theme-mobile-toggle { display: flex; align-items: center; justify-content: center; padding: 0.6rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
@media (min-width: 1024px) { .theme-mobile-toggle { display: none; } }
.theme-mobile-toggle .icon-menu { display: inline-flex; align-items: center; justify-content: center; }
.theme-mobile-toggle .icon-close { display: none; align-items: center; justify-content: center; }
.theme-mobile-toggle.is-open .icon-menu { display: none; }
.theme-mobile-toggle.is-open .icon-close { display: inline-flex; }
.theme-mobile-menu {
	background: var(--color-noir); border-top: 1px solid var(--color-border);
	animation: slideDown 0.7s var(--ease-soft);
}
.theme-mobile-menu[hidden] { display: none; }
@media (min-width: 1024px) { .theme-mobile-menu { display: none !important; } }
.theme-mobile-menu__inner { padding-block: 1.25rem; }
.theme-mobile-nav-list li a, .theme-mobile-nav-list li button {
	display: block; padding: 0.9rem 0; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	width: 100%; text-align: left;
}
.theme-mobile-nav-list li:last-child a { border-bottom: 0; }
.theme-mobile-nav-list li a:hover { color: var(--color-primary); }

/* ---------- Hero ---------- */
.hero-section {
	position: relative; width: 100%; overflow: hidden;
	min-height: 100svh; display: flex; align-items: flex-end;
	background: var(--color-noir);
}
body:not(.theme-no-hero) .site-main { padding-top: 0; }
body.theme-no-hero .site-main { padding-top: var(--header-height); }
.hero-section__media { position: absolute; inset: 0; }
.hero-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero-section__scrim { position: absolute; inset: 0; pointer-events: none; }
.hero-section__scrim--v { background: linear-gradient(to top, color-mix(in srgb, var(--color-noir) 100%, transparent), color-mix(in srgb, var(--color-noir) 70%, transparent) 55%, color-mix(in srgb, var(--color-noir) 40%, transparent)); }
.hero-section__scrim--h { background: linear-gradient(to right, color-mix(in srgb, var(--color-noir) 85%, transparent), color-mix(in srgb, var(--color-noir) 30%, transparent) 55%, transparent); }
.hero-section__content { position: relative; z-index: 10; width: 100%; padding-bottom: 4rem; padding-top: 8rem; }
@media (min-width: 768px) { .hero-section__content { padding-bottom: 6rem; } }
.hero-section__title {
	font-size: 2.25rem; line-height: 1.03; margin-top: 1rem; max-width: 44rem; color: var(--color-foreground);
}
@media (min-width: 640px) { .hero-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-section__title { font-size: 4.5rem; } }
.hero-section__subtitle {
	margin-top: 1.5rem; font-weight: 300; font-size: 1rem; line-height: 1.6; max-width: 36rem;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
}
@media (min-width: 640px) { .hero-section__subtitle { font-size: 1.125rem; } }
.hero-section__ctas { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .hero-section__ctas { flex-direction: row; } }
.btn-hero-outline { background: transparent; border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); color: var(--color-foreground); }
.btn-hero-outline:hover { background: color-mix(in srgb, var(--color-foreground) 10%, transparent); color: var(--color-foreground); }
.hero-section__features { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; }
.hero-section__features li {
	display: flex; align-items: center; gap: 0.625rem; font-size: 0.75rem; font-weight: 300;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
}
@media (min-width: 640px) { .hero-section__features li { font-size: 0.875rem; } }
.hero-section__features svg { color: var(--color-ice); flex-shrink: 0; }
.hero-section__scroll-cue {
	position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); z-index: 10;
	color: color-mix(in srgb, var(--color-foreground) 50%, transparent);
}
.hero-section__scroll-cue:hover { color: var(--color-foreground); }
.hero-section__scroll-cue svg { animation: softFloat 2.8s var(--ease-gentle) infinite; }

/* ---------- Section heading scales (per-section, Section 2.2.5) ---------- */
.shop-heading { font-size: 2.25rem; line-height: 1.05; margin-top: 0.75rem; color: var(--color-foreground); }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.75rem; } }

.process-section__title, .why-section__title, .faq-section__title, .contact-section__title, .owner-section__title {
	font-size: 2.25rem; line-height: 1.05; margin-top: 0.75rem; color: var(--color-foreground);
}
.cta-band__title { font-size: 1.875rem; line-height: 1.05; margin-top: 1rem; max-width: 48rem; color: var(--color-foreground); }
@media (min-width: 640px) { .cta-band__title { font-size: 2.25rem; } }
@media (min-width: 768px) { .process-section__title, .faq-section__title { font-size: 2.5rem; } .why-section__title, .contact-section__title, .owner-section__title { font-size: 3rem; } .cta-band__title { font-size: 3rem; } }
@media (min-width: 1024px) { .why-section__title, .contact-section__title, .owner-section__title { font-size: 3.75rem; } .cta-band__title { font-size: 3.75rem; } }

/* ---------- Shop ---------- */
.shop-section { background: var(--color-background); padding: var(--section-padding) 0; }
.shop-section__head { display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; }
@media (min-width: 1024px) { .shop-section__head { flex-direction: row; align-items: flex-end; } }
.shop-section__subtitle { margin-top: 1.25rem; max-width: 36rem; font-weight: 300; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.shop-section__filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-cat-filter {
	padding: 0.625rem 1rem; font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
	border: 1px solid var(--color-border); color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
}
.theme-cat-filter:hover { border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-cat-filter.is-active { border-color: var(--color-primary); color: var(--color-foreground); background: color-mix(in srgb, var(--color-primary) 15%, transparent); }
.shop-section__grid, .theme-product-grid {
	margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 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)); } }
.theme-product-card-wrap { display: flex; }
.theme-product-card {
	position: relative; display: flex; flex-direction: column; width: 100%; height: 100%;
	background: linear-gradient(160deg, color-mix(in srgb, var(--color-foreground) 6%, transparent), color-mix(in srgb, var(--color-foreground) 1.5%, transparent));
	border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	transition: transform 0.6s var(--ease-soft), box-shadow 0.6s var(--ease-soft);
}
.theme-product-card:hover { transform: translateY(-4px); box-shadow: 0 30px 70px -24px color-mix(in srgb, var(--color-background) 85%, transparent), 0 0 48px -18px color-mix(in srgb, var(--color-ice) 45%, transparent); }
.theme-product-card__image-wrapper { position: relative; overflow: hidden; aspect-ratio: 1 / 1; background: var(--color-background); }
.theme-product-card__image-link { display: block; position: absolute; inset: 0; }
.theme-product-card__img { transition: transform 1.1s var(--ease-soft); width: 100%; height: 100%; object-fit: cover; }
.theme-product-card:hover .theme-product-card__img { transform: scale(1.06); }
.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: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
	padding: 0.375rem 0.75rem;
}
.theme-product-card__badge--stock { left: auto; right: 0.75rem; background: var(--color-surface-soft-2); color: var(--color-foreground); }
.theme-product-card__info { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
@media (min-width: 640px) { .theme-product-card__info { padding: 1.5rem; } }
.theme-product-card__eyebrow { margin-bottom: 0.5rem; }
.theme-product-card__title { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-foreground); }
@media (min-width: 640px) { .theme-product-card__title { font-size: 1.5rem; } }
.theme-product-card__title-link { color: inherit; transition: color 0.5s var(--ease-soft); }
.theme-product-card__title-link:hover { color: var(--color-primary); }
.theme-product-card__footer { margin-top: auto; padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; min-width: 0; }
.theme-product-card__price { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); white-space: nowrap; min-width: 0; display: inline-flex; align-items: baseline; gap: 0.25rem; }
.theme-product-card__amount-wrap { position: relative; display: inline-block; font-family: var(--font-display); font-size: 1.5rem; line-height: 1; }
.theme-product-card__amount-spacer { visibility: hidden; display: inline-block; font-variant-numeric: tabular-nums; }
.theme-product-card__amount-wrap .theme-product-card__amount {
	position: absolute; inset: 0; display: flex; align-items: baseline; justify-content: flex-end;
	font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); font-variant-numeric: tabular-nums;
}
.theme-product-card__price .price, .theme-product-info__price .price { font-family: var(--font-display); font-size: inherit; }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.4em; font-size: 0.8em; }
.theme-product-card__from { font-size: 0.875rem; font-family: var(--font-body); color: color-mix(in srgb, var(--color-foreground) 50%, transparent); margin-right: 0.25rem; }
.theme-product-card__actions { display: flex; align-items: center; gap: 0.5rem; position: relative; z-index: 2; }

/* ---------- Process ---------- */
.process-section { padding: var(--section-padding) 0; }
.process-section__grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .process-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .process-section__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2.5rem; } }
.process-step { border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); padding-top: 1.5rem; }
.process-step__head { display: flex; align-items: center; justify-content: space-between; }
.process-step__num { font-family: var(--font-display); font-size: 1.875rem; color: var(--color-primary); }
.process-step__head svg { color: var(--color-ice); }
.process-step__title { font-size: 1.25rem; margin-top: 1.25rem; color: var(--color-foreground); }
.process-step__body { margin-top: 0.75rem; font-size: 0.875rem; font-weight: 300; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* ---------- Why choose ---------- */
.why-section { padding: var(--section-padding) 0; }
.why-section__layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .why-section__layout { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.why-section__body { margin-top: 1.5rem; max-width: 36rem; font-weight: 300; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.why-section__pillars { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .why-section__pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 2rem; } }
.why-pillar__icon { width: 2.75rem; height: 2.75rem; border: 1px solid var(--color-noir-soft); display: flex; align-items: center; justify-content: center; color: var(--color-ice); }
.why-pillar__title { font-size: 1.125rem; margin-top: 1rem; color: var(--color-foreground); }
.why-pillar__body { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 300; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.why-section__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }

/* ---------- Owner ---------- */
.owner-section { padding: var(--section-padding) 0; background: var(--color-background); }
.owner-section__layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .owner-section__layout { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.owner-section__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.owner-section__frame {
	position: absolute; bottom: -1rem; right: -1rem; width: 7rem; height: 7rem;
	border: 1px solid color-mix(in srgb, var(--color-primary) 60%, transparent);
	pointer-events: none;
}
.owner-section__body { margin-top: 1.5rem; max-width: 42rem; font-weight: 300; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.owner-section__stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 640px) { .owner-section__stats { grid-template-columns: repeat(3, 1fr); } }
.owner-stat__num { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); }
.owner-stat__label { margin-top: 0.375rem; font-size: 0.75rem; font-weight: 300; line-height: 1.5; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* ---------- Coming soon ---------- */
.soon-section { padding: 4rem 0; }
@media (min-width: 768px) { .soon-section { padding: 5rem 0; } }
.soon-section__title { font-size: 1.875rem; margin-top: 0.75rem; max-width: 40rem; color: var(--color-foreground); }
@media (min-width: 768px) { .soon-section__title { font-size: 2.25rem; } }
.soon-section__grid { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .soon-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .soon-section__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.soon-card { padding: 1.5rem; }
.soon-card__title { font-size: 1.125rem; color: var(--color-foreground); }
.soon-card__note { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 300; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.soon-section__footer { margin-top: 2rem; font-size: 0.875rem; font-weight: 300; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.soon-section__footer button { display: inline; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--color-background); padding: var(--section-padding) 0; }
.faq-section__layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .faq-section__layout { grid-template-columns: 1fr 2fr; gap: 4rem; } }
.faq-section__subtitle { margin-top: 1.25rem; font-weight: 300; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.faq-list { border-top: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__trigger { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.faq-item__q { font-size: 1.125rem; color: var(--color-foreground); transition: color 0.5s var(--ease-soft); }
@media (min-width: 768px) { .faq-item__q { font-size: 1.25rem; } }
.faq-item__trigger:hover .faq-item__q { color: var(--color-ice); }
.faq-item__icon { margin-top: 0.375rem; flex-shrink: 0; color: var(--color-primary); transition: transform 0.5s var(--ease-soft); }
.faq-item__trigger[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { overflow: hidden; margin-left: 0; transition: height 0.6s var(--ease-soft), opacity 0.6s var(--ease-soft); }
.faq-item__answer p { padding-bottom: 1.5rem; padding-right: 2rem; font-size: 0.875rem; font-weight: 300; line-height: 1.6; max-width: 42rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.faq-item__answer[hidden] { display: block; height: 0; opacity: 0; padding: 0; margin: 0; overflow: hidden; pointer-events: none; }
.faq-item__answer:not([hidden]) { height: auto; opacity: 1; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; width: 100%; overflow: hidden; }
.cta-band__media { position: relative; min-height: 70vh; display: flex; align-items: flex-end; width: 100%; }
.cta-band__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% center; opacity: 0.7; }
.cta-band__scrim { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-noir) 100%, transparent), color-mix(in srgb, var(--color-noir) 70%, transparent) 55%, color-mix(in srgb, var(--color-noir) 30%, transparent)); pointer-events: none; }
.cta-band__content { position: relative; z-index: 10; width: 100%; padding-block: 4rem; display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: end; }
@media (min-width: 768px) { .cta-band__content { grid-template-columns: repeat(12, 1fr); padding-block: 5rem; } }
.cta-band__copy { grid-column: 1 / -1; }
@media (min-width: 768px) { .cta-band__copy { grid-column: 1 / span 8; } }
.cta-band__body { margin-top: 1.25rem; max-width: 32rem; font-weight: 300; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.cta-band__ctas { display: flex; flex-direction: column; gap: 0.75rem; grid-column: 1 / -1; }
.cta-band__ctas .btn-outline { background: transparent; border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); color: var(--color-foreground); }
.cta-band__ctas .btn-outline:hover { background: color-mix(in srgb, var(--color-foreground) 10%, transparent); color: var(--color-foreground); }
@media (min-width: 640px) { .cta-band__ctas { flex-direction: row; } }
@media (min-width: 768px) { .cta-band__ctas { grid-column: span 4 / -1; flex-direction: column; align-items: flex-end; } }

/* ---------- Contact ---------- */
.contact-section { padding: var(--section-padding) 0; }
.contact-section__layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-section__layout { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.contact-section__body { margin-top: 1.25rem; max-width: 28rem; font-weight: 300; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.contact-section__methods { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-method { display: flex; align-items: center; gap: 1rem; }
.contact-method__icon { width: 2.75rem; height: 2.75rem; border: 1px solid var(--color-noir-soft); display: flex; align-items: center; justify-content: center; color: var(--color-ice); flex-shrink: 0; transition: border-color 0.5s var(--ease-soft); }
.contact-method:hover .contact-method__icon { border-color: var(--color-ice); }
.contact-method span:last-child { font-size: 0.875rem; font-weight: 300; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); word-break: break-all; }
.contact-form { padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .contact-form__row { grid-template-columns: 1fr 1fr; } }
.contact-form__field label { margin-bottom: 0.75rem; }
.contact-form input, .contact-form textarea {
	width: 100%; padding: 0.875rem 1rem; background: transparent; border: 1px solid var(--color-border);
	color: var(--color-foreground); font-size: 0.875rem; font-weight: 300;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-primary); }
.contact-form textarea { resize: none; }
.contact-form__note { font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 45%, transparent); line-height: 1.6; }
.contact-success { padding: 2.5rem; text-align: center; }
@media (min-width: 768px) { .contact-success { padding: 3.5rem; } }
.contact-success__icon { width: 3.5rem; height: 3.5rem; background: var(--color-primary); color: var(--color-primary-foreground); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.contact-success__title { font-size: 1.875rem; color: var(--color-foreground); margin-bottom: 0.75rem; }
.contact-success__body { max-width: 24rem; margin: 0 auto; font-weight: 300; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.contact-success[hidden] { display: none; }
.contact-form.is-hidden { display: none; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--color-border); }
.site-footer__inner { padding-block: 3.5rem; }
@media (min-width: 768px) { .site-footer__inner { padding-block: 4rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(12, 1fr); gap: 2.5rem; } }
.site-footer__brand-col { grid-column: 1 / -1; }
@media (min-width: 768px) { .site-footer__brand-col { grid-column: span 5; } }
.site-footer__brand-col .site-logo-wrap,
.site-footer__brand-col .site-logo-img { height: 3.5rem; width: auto; max-height: 3.5rem; object-fit: contain; display: block; }
.site-footer__tagline { margin-top: 1.25rem; max-width: 24rem; font-size: 0.875rem; font-weight: 300; line-height: 1.625; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.site-footer__col { grid-column: 1 / -1; }
@media (min-width: 768px) {
	.site-footer__grid > .site-footer__col:nth-child(2) { grid-column: span 3; }
	.site-footer__grid > .site-footer__col:nth-child(3) { grid-column: span 4; }
}
.site-footer__col h2 { margin-bottom: 1.25rem; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__contact-list { gap: 1rem !important; }
.site-footer__contact-link, .theme-footer-nav-list a {
	font-size: 0.875rem; font-weight: 300; line-height: 1.5; color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
}
.site-footer__contact-link { display: flex; align-items: center; gap: 0.75rem; word-break: break-all; }
.site-footer__contact-link svg { flex-shrink: 0; color: var(--color-ice); }
.site-footer__contact-link:hover, .theme-footer-nav-list a:hover { color: var(--color-foreground); }
.site-footer__bottom {
	margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid var(--color-border);
	display: flex; flex-direction: column; flex-wrap: wrap; gap: 0.75rem; align-items: flex-start;
}
@media (min-width: 640px) {
	.site-footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.site-footer__copy, .site-footer__credit, .site-footer__location { font-size: 0.75rem; line-height: 1.5; color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.site-footer__credit:hover { color: var(--color-primary); }

/* ---------- Animations / reveal (Section 2.1) ---------- */
.reveal-item { opacity: 0; transform: translateY(20px); transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft); will-change: opacity, transform; }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.reveal-item[data-reveal-delay="0"] { transition-delay: 0s; }
.reveal-item[data-reveal-delay="1"] { transition-delay: 0.09s; }
.reveal-item[data-reveal-delay="2"] { transition-delay: 0.18s; }
.reveal-item[data-reveal-delay="3"] { transition-delay: 0.27s; }
.reveal-item[data-reveal-delay="4"] { transition-delay: 0.36s; }
.reveal-item[data-reveal-delay="5"] { transition-delay: 0.45s; }
.reveal-item[data-reveal-delay="6"] { transition-delay: 0.54s; }

/* Customizer preview must never hide reveal content (Section 2.1.5). */
body.is-customizer .reveal-item { opacity: 1 !important; transform: none !important; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
@keyframes softFloat { 0%, 100% { transform: translateY(0); opacity: 0.55; } 50% { transform: translateY(7px); opacity: 1; } }
.animate-fade-in { animation: fadeIn 0.9s var(--ease-soft) forwards; }
.animate-slide-up { animation: slideUp 1s var(--ease-soft) forwards; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal-item, .animate-fade-in, .animate-slide-up, .hero-section__scroll-cue svg {
		animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important;
	}
}

/* =============================================================
   WooCommerce — product card additions already covered above.
============================================================= */

/* Hide "View cart" injected after AJAX add-to-cart (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; }

/* 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-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: none !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;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	height: 2.25rem !important;
	padding: 0 1rem !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

/* ---------- Single product ---------- */
.single-product .site-main { padding-top: calc(var(--header-height) + 1.5rem); padding-bottom: 5rem; }
@media (min-width: 1024px) { .single-product .site-main { padding-top: calc(var(--header-height) + 2rem); } }
.back-to-shop-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.back-to-shop-link:hover { color: var(--color-foreground); }
.theme-product-layout { margin-top: 1.75rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.theme-product-gallery.glass-panel { overflow: hidden; padding: 0; }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery__main { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-noir); }
.theme-product-thumbnails { margin-top: 0.75rem; display: flex; flex-wrap: wrap; gap: 0.6rem; max-width: 100%; padding: 0 0 0.25rem; }
.theme-thumb { position: relative; width: 4.5rem; height: 4.5rem; overflow: hidden; border: 1px solid var(--color-border); flex-shrink: 0; }
.theme-thumb.is-active { border-color: var(--color-primary); }
.theme-product-info__eyebrow { margin: 0; }
.product-title, .theme-product-info__title { font-family: var(--font-display); font-weight: 500; font-size: 1.875rem; line-height: 1.15; margin-top: 0.75rem; color: var(--color-foreground); }
@media (min-width: 640px) { .theme-product-info__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-product-info__title { font-size: 3rem; } }
.theme-product-info__price { font-family: var(--font-display); font-size: 1.875rem; margin-top: 1.25rem; color: var(--color-foreground); }
.theme-product-info__from { font-size: 1rem; font-family: var(--font-body); color: color-mix(in srgb, var(--color-foreground) 50%, transparent); margin-right: 0.5rem; }
.theme-stock-indicator { margin-top: 0.75rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.theme-stock-indicator--out { color: var(--color-primary); }
.theme-product-info__description { margin-top: 1.25rem; font-size: 0.875rem; font-weight: 300; line-height: 1.625; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); overflow-wrap: break-word; word-break: break-word; }
@media (min-width: 640px) { .theme-product-info__description { font-size: 1rem; } }
.theme-product-info__details-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; list-style: none; padding: 0; }
.theme-product-info__details-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; font-weight: 300; line-height: 1.5; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.theme-product-info__details-list svg { margin-top: 0.125rem; flex-shrink: 0; color: var(--color-ice); }
.theme-product-info__cta { margin-top: 2.25rem; }
.theme-product-info__cta .btn { width: 100%; }
@media (min-width: 640px) { .theme-product-info__cta .btn { width: auto; } }
.theme-product-info__cta-note { margin-top: 1rem; max-width: 28rem; font-size: 0.75rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-product-info__details { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--color-border); overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__details-title { font-size: 1.125rem; margin-bottom: 0.75rem; color: var(--color-foreground); }
.theme-product-info__details ul { display: flex; flex-direction: column; gap: 0.5rem; }
.theme-product-info__details li { display: flex; gap: 0.5rem; font-size: 0.875rem; font-weight: 300; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.posted_in { overflow-wrap: break-word; word-break: break-word; }

/* 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.5rem; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--color-ice); }
.single-product .variations tbody td.value { padding-top: 0; padding-bottom: 1.25rem; }
.theme-attr-select-hidden { display: none !important; }
.theme-attr-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-attr-pill {
	padding: 0.6rem 1rem; font-size: 0.75rem; border: 1px solid var(--color-border);
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
}
.theme-attr-pill:hover { border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-attr-pill.is-selected { border-color: var(--color-primary); color: var(--color-foreground); background: color-mix(in srgb, var(--color-primary) 15%, transparent); }

.theme-customize-fields { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-field__label { margin-bottom: 0.6rem; }
.theme-field__optional { text-transform: none; letter-spacing: normal; font-weight: 400; color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-photo-upload {
	display: flex; align-items: center; gap: 1rem; padding: 1rem;
	border: 1px dashed var(--color-border); cursor: pointer;
}
.theme-photo-upload:hover { border-color: color-mix(in srgb, var(--color-accent) 60%, transparent); }
.theme-photo-upload__icon { width: 2.5rem; height: 2.5rem; border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; }
.theme-photo-upload__glyph { display: flex; align-items: center; justify-content: center; }
.theme-photo-upload__glyph[hidden] { display: none !important; }
.theme-photo-upload__glyph--check { color: var(--color-ice); }
.theme-photo-upload.has-photo { border-color: color-mix(in srgb, var(--color-accent) 60%, transparent); }
.theme-photo-upload__text { min-width: 0; }
.theme-photo-upload__name { display: block; font-size: 0.875rem; color: var(--color-foreground); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.theme-photo-upload__hint { display: block; font-size: 0.75rem; margin-top: 0.15rem; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.theme-photo-input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.theme-customize-fields input[type="text"], .theme-customize-fields textarea {
	width: 100%; padding: 0.875rem 1rem; background: transparent; border: 1px solid var(--color-border); color: var(--color-foreground); font-size: 0.875rem; font-weight: 300;
}
.theme-customize-fields input[type="text"]:focus, .theme-customize-fields textarea:focus { outline: none; border-color: var(--color-primary); }
.theme-customize-fields textarea { resize: none; }
.theme-engraving-grid { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
@media (min-width: 640px) { .theme-engraving-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.theme-engraving-card { cursor: pointer; }
.theme-engraving-card input { position: absolute; opacity: 0; pointer-events: none; }
.theme-engraving-card__body { display: block; padding: 1rem; border: 1px solid var(--color-border); transition: border-color 0.3s var(--ease-soft), background-color 0.3s var(--ease-soft); }
.theme-engraving-card:hover .theme-engraving-card__body { border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-engraving-card input:checked + .theme-engraving-card__body { border-color: var(--color-primary); background: color-mix(in srgb, var(--color-primary) 10%, transparent); }
.theme-engraving-card__head { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.theme-engraving-card__label { font-family: var(--font-display); font-size: 1rem; color: var(--color-foreground); }
.theme-engraving-card__price { font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-engraving-card__blurb { display: block; margin-top: 0.5rem; font-size: 0.75rem; font-weight: 300; line-height: 1.5; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-led-toggle { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; border: 1px solid var(--color-border); cursor: pointer; }
.theme-led-toggle:hover { border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-led-toggle input { margin-top: 0.2rem; accent-color: var(--color-primary); }
.theme-led-toggle__title { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-foreground); }
.theme-led-toggle__price { color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-led-toggle__note { display: block; margin-top: 0.375rem; font-size: 0.75rem; font-weight: 300; line-height: 1.5; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

.theme-quantity-wrapper { display: flex; align-items: center; border: 1px solid var(--color-border); flex-shrink: 0; }
.theme-quantity-wrapper button { padding: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.theme-quantity-wrapper button:hover { color: var(--color-foreground); }
.theme-qty-input { width: 3rem; text-align: center; background: transparent; border: none; color: var(--color-foreground); font-size: 0.875rem; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.single-product .theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }
.theme-btn-primary { background: var(--color-primary); color: var(--color-primary-foreground); }

.related-products-section, .related-products-section.scroll-reveal-section { margin-top: 5rem; padding-top: 0; border-top: 0; }
@media (min-width: 1024px) { .related-products-section, .related-products-section.scroll-reveal-section { margin-top: 7rem; } }
.related-products-section__title { font-size: 1.5rem; }
@media (min-width: 640px) { .related-products-section__title { font-size: 1.875rem; } }
.related-products-section__grid { margin-top: 2rem; }

/* ---------- Product customizer modal ---------- */
body.customizer-open { overflow: hidden; }
.theme-customizer { position: fixed; inset: 0; z-index: 70; display: flex; align-items: flex-end; justify-content: center; }
.theme-customizer[hidden] { display: none !important; }
@media (min-width: 640px) { .theme-customizer { align-items: center; padding: 1.5rem; } }
.theme-customizer__overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-noir) 90%, transparent); }
.theme-customizer__dialog {
	position: relative; width: 100%; max-height: 92vh; overflow-y: auto; outline: none;
	background: color-mix(in srgb, var(--color-noir) 95%, transparent);
}
@media (min-width: 640px) { .theme-customizer__dialog { max-width: 64rem; } }
.theme-customizer__header {
	position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	padding: 1rem 1.25rem; background: color-mix(in srgb, var(--color-noir) 95%, transparent); border-bottom: 1px solid var(--color-border);
}
@media (min-width: 640px) { .theme-customizer__header { padding: 1rem 2rem; } }
.theme-customizer__title { font-family: var(--font-display); font-size: 1.25rem; margin-top: 0.25rem; color: var(--color-foreground); }
@media (min-width: 640px) { .theme-customizer__title { font-size: 1.5rem; } }
.theme-customizer__close { padding: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.theme-customizer__close:hover { color: var(--color-foreground); }
.theme-customizer__body { padding: 1.75rem 1.25rem 2rem; }
@media (min-width: 640px) { .theme-customizer__body { padding: 1.75rem 2rem 2rem; } }
.theme-customizer__footer { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--color-border); }
.theme-customizer__qty-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.theme-customizer__qty-label { color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-customizer__footer .btn { width: 100%; }
.theme-customizer__note { margin-top: 0.75rem; font-size: 0.75rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-customizer .woocommerce-variation-price { display: none; }
.theme-customizer .reset_variations { display: none !important; }
.theme-customizer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .theme-customizer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.theme-customizer__preview-label { margin-bottom: 1rem; }
.theme-customizer__preview-stage {
	position: relative;
	background: linear-gradient(to bottom, hsl(220 18% 11%), var(--color-noir));
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 20rem;
}
@media (min-width: 640px) { .theme-customizer__preview-stage { padding: 2.5rem; } }
.theme-crystal-preview {
	position: relative;
	overflow: hidden;
	width: 10rem;
	aspect-ratio: 3 / 4;
	background: hsl(200 30% 88% / 0.08);
	border: 1px solid hsl(199 65% 88% / 0.45);
	transition: width 0.5s var(--ease-soft), aspect-ratio 0.5s var(--ease-soft);
}
@media (min-width: 640px) { .theme-crystal-preview { width: 13rem; } }
.theme-crystal-preview--landscape { width: 14rem; aspect-ratio: 4 / 3; }
@media (min-width: 640px) { .theme-crystal-preview--landscape { width: 18rem; } }
.theme-crystal-preview--heart { border-top-left-radius: 45%; border-top-right-radius: 45%; }
.crystal-glow { box-shadow: 0 0 60px -18px color-mix(in srgb, var(--color-ice) 50%, transparent), inset 0 0 40px -22px color-mix(in srgb, var(--color-ice) 60%, transparent); }
.theme-crystal-preview__photo {
	position: absolute; inset: 0; width: 100%; height: 100%;
	background-size: cover; background-position: center; background-repeat: no-repeat;
	filter: grayscale(1) contrast(1.25) brightness(1.1);
	opacity: 0.75; mix-blend-mode: screen;
}
.theme-crystal-preview__photo[hidden] { display: none !important; }
.theme-crystal-preview__photo.is-25d { opacity: 0.9; }
.theme-crystal-preview__placeholder[hidden] { display: none !important; }
.theme-crystal-preview__placeholder {
	position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; text-align: center; padding: 1rem;
	color: color-mix(in srgb, var(--color-ice) 60%, transparent);
}
.theme-crystal-preview__placeholder p { font-size: 0.75rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); margin: 0; }
.theme-crystal-preview__facet { pointer-events: none; position: absolute; }
.theme-crystal-preview__facet--br { inset: 0; background: linear-gradient(to bottom right, rgb(255 255 255 / 0.25), transparent, rgb(255 255 255 / 0.1)); }
.theme-crystal-preview__facet--left { inset-block: 0; left: 0.5rem; width: 1px; background: rgb(255 255 255 / 0.3); }
.theme-crystal-preview__facet--right { inset-block: 0; right: 0.5rem; width: 1px; background: rgb(255 255 255 / 0.2); }
.theme-crystal-preview__text {
	position: absolute; bottom: 0.75rem; left: 0; right: 0; text-align: center;
	font-family: var(--font-display); font-size: 0.8125rem; color: rgb(255 255 255 / 0.85); padding: 0 0.75rem;
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.theme-customizer__led-base {
	position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
	width: 11rem; height: 1rem;
	background: hsl(220 10% 8%); border: 1px solid rgb(255 255 255 / 0.1);
	box-shadow: 0 -18px 40px -8px color-mix(in srgb, var(--color-ice) 55%, transparent);
}
@media (min-width: 640px) { .theme-customizer__led-base { width: 14rem; } }
.theme-customizer__preview-note { margin-top: 0.75rem; font-size: 0.75rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-customizer__options-col .theme-customize-fields { display: flex; flex-direction: column; gap: 1.75rem; }
.theme-customizer__options-col .variations { margin-bottom: 1.75rem; }
.theme-customizer__price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1rem 0; }
.theme-customizer__price-label { color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-customizer__price { font-family: var(--font-display); font-size: 1.875rem; color: var(--color-foreground); }
.theme-customizer__price-each { display: block; font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); margin-top: 0.25rem; text-align: right; }
.theme-customizer__price-wrap { text-align: right; }

/* ---------- Cart drawer ---------- */
#theme-cart-drawer { position: fixed; inset: 0; z-index: 60; display: none; justify-content: flex-end; }
body.cart-open #theme-cart-drawer { display: flex; }
.theme-cart-drawer__overlay {
	position: absolute; inset: 0; background: color-mix(in srgb, var(--color-noir) 85%, transparent);
	opacity: 0; transition: opacity 0.9s var(--ease-soft);
}
body.cart-open .theme-cart-drawer__overlay { opacity: 1; }
.theme-cart-drawer__panel {
	position: relative; width: 100%; max-width: 28rem; height: 100%;
	background: var(--color-noir); border-left: 1px solid var(--color-border);
	display: flex; flex-direction: column;
	opacity: 0; transform: translateY(20px);
	transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft);
}
body.cart-open .theme-cart-drawer__panel { opacity: 1; transform: translateY(0); }
#theme-cart-drawer.is-updating .theme-cart-drawer__panel { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__header h2 { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-foreground); }
.theme-cart-drawer__header button { padding: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.theme-cart-drawer__header button:hover { color: var(--color-foreground); }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 2rem; }
.theme-cart-drawer__empty-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); }
.theme-cart-drawer__empty-body { margin-top: 0.75rem; font-size: 0.875rem; font-weight: 300; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__empty .btn { margin-top: 1.75rem; }
.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-item { display: flex; gap: 1rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-item:last-child { border-bottom: 0; padding-bottom: 0; }
.theme-cart-item__thumb { width: 5rem; height: 5rem; flex-shrink: 0; background: var(--color-surface); overflow: hidden; position: relative; }
.theme-cart-item__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; position: static; inset: auto; }
.theme-cart-item__thumb img.is-customer-photo { filter: grayscale(1) contrast(1.25); }
.theme-cart-item__body { min-width: 0; flex: 1; }
.theme-cart-item__title { font-family: var(--font-display); font-size: 1rem; line-height: 1.3; color: var(--color-foreground); }
.theme-cart-item__meta { margin-top: 0.25rem; font-size: 0.75rem; font-weight: 300; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); display: flex; flex-direction: column; gap: 0.125rem; }
.theme-cart-item__controls { margin-top: 0.75rem; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; min-width: 0; }
.theme-cart-item__qty { display: flex; align-items: center; border: 1px solid var(--color-border); }
.theme-cart-item__qty button { display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.theme-cart-item__qty button:hover { color: var(--color-foreground); }
.theme-cart-item__qty span { padding: 0 0.75rem; font-size: 0.875rem; color: var(--color-foreground); }
.theme-cart-item__price { font-family: var(--font-display); font-size: 1.125rem; white-space: nowrap; color: var(--color-foreground); }
.theme-cart-item__remove { padding: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.theme-cart-item__remove:hover { color: var(--color-primary); }
.theme-cart-drawer__footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; align-items: baseline; justify-content: space-between; }
.theme-cart-drawer__subtotal .eyebrow { color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-cart-drawer__subtotal-value { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); }
.theme-cart-drawer__checkout { width: 100%; }
.theme-cart-drawer__email { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.theme-cart-drawer__email svg { flex-shrink: 0; }
.theme-cart-drawer__secondary-actions { display: flex; gap: 0.75rem; }
.theme-cart-drawer__secondary-actions .btn { flex: 1; }
.theme-cart-drawer__note { font-size: 0.75rem; font-weight: 300; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }

/* ---------- 404 ---------- */
.theme-404 { min-height: 80vh; display: flex; align-items: center; justify-content: center; }
.theme-404__inner { text-align: center; padding: 7rem 0 5rem; display: flex; flex-direction: column; align-items: center; }
.theme-404__title { font-size: 2.25rem; margin-top: 1rem; }
@media (min-width: 640px) { .theme-404__title { font-size: 3rem; } }
.theme-404__body { margin-top: 1rem; max-width: 28rem; font-size: 0.875rem; font-weight: 300; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-404 .btn { margin-top: 2rem; }

/* ---------- Generic page shell ---------- */
.theme-page-shell { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 5rem; }
body.woocommerce-checkout .theme-page-shell { padding-top: 0; }
.page-title { font-size: 2.25rem; margin-bottom: 1.5rem; }

/* ---------- Notices scoped visibility (Section 14.1) ---------- */
.single-product .woocommerce-message,
.single-product .woocommerce-info,
#theme-cart-drawer .woocommerce-message { display: none; }

/* =============================================================
   WooCommerce Checkout Block override (Section 13)
   Single 2-column grid — no nested layout grids.
============================================================= */
body.woocommerce-checkout .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .entry-content > .woocommerce,
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content { max-width: 100%; width: 100%; }

body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-cart .wp-block-woocommerce-cart {
	--wc-blue: var(--color-primary);
	font-family: var(--font-body);
	color: var(--color-foreground);
}

/* Outer checkout wrapper: block only — never a grid */
body.woocommerce-checkout .wp-block-woocommerce-checkout.wc-block-checkout,
body.woocommerce-checkout .wc-block-checkout.alignwide {
	display: block !important;
	width: 100% !important;
	max-width: var(--container-max) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* Notices sit above the 2-column grid, full width */
body.woocommerce-checkout .wp-block-woocommerce-checkout > .wc-block-components-notices,
body.woocommerce-checkout .wp-block-woocommerce-checkout > .wc-block-components-notices__snackbar,
body.woocommerce-checkout .wp-block-woocommerce-checkout > .wc-block-components-notice-snackbar-list {
	width: 100% !important;
}

@media (min-width: 768px) {
	/* THE single checkout grid: form left, order summary right — equal columns */
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
		grid-template-rows: auto !important;
		grid-template-areas: none !important;
		gap: 2.5rem !important;
		align-items: start !important;
		width: 100% !important;
		max-width: none !important;
	}

	/* Flatten WC nested layout grids/flex on the two columns */
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout > .wc-block-components-main,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout > .wc-block-components-sidebar,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout > .wc-block-checkout__main,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout > .wc-block-checkout__sidebar {
		display: block !important;
		grid-column: auto !important;
		grid-row: auto !important;
		grid-template-columns: none !important;
		flex: none !important;
		width: 100% !important;
		max-width: none !important;
		min-width: 0 !important;
	}
}

@media (max-width: 767px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
		display: block !important;
	}
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout > .wc-block-components-main,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout > .wc-block-components-sidebar {
		display: block !important;
		width: 100% !important;
		max-width: none !important;
	}
}

body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout > .wc-block-components-main,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout > .wc-block-components-sidebar,
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-checkout-step__title {
	font-family: var(--font-display) !important;
	font-size: 1.5rem !important;
	color: var(--color-foreground) !important;
}

/* Hide duplicate order summary embedded inside the form/actions column */
body.woocommerce-checkout .wc-block-checkout__actions .checkout-order-summary-block-fill-wrapper,
body.woocommerce-checkout .wc-block-checkout__actions .checkout-order-summary-block-fill,
body.woocommerce-checkout .wc-block-checkout__actions .wp-block-woocommerce-checkout-order-summary-block,
body.woocommerce-checkout .wc-block-checkout__actions [data-block-name="woocommerce/checkout-order-summary-block"],
body.woocommerce-checkout .wc-block-checkout__actions .wp-block-woocommerce-checkout-order-summary-cart-items-block,
body.woocommerce-checkout .wc-block-checkout__actions .wp-block-woocommerce-checkout-order-summary-coupon-form-block,
body.woocommerce-checkout .wc-block-checkout__actions .wp-block-woocommerce-checkout-order-summary-totals-block,
body.woocommerce-checkout .wc-block-checkout__actions .wc-block-components-order-summary {
	display: none !important;
}

body.woocommerce-checkout .wc-block-checkout__actions_row {
	display: block !important;
	width: 100% !important;
	margin-top: 1.5rem !important;
}

body.woocommerce-checkout .wc-block-components-sidebar.wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-surface) !important;
	border-radius: var(--card-radius) !important;
	padding: 1.5rem !important;
	border: 1px solid var(--color-border) !important;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar.wc-block-checkout__sidebar,
	body.woocommerce-checkout .wc-block-checkout__sidebar {
		padding: 2rem !important;
		position: sticky !important;
		top: calc(var(--header-height) + 1.5rem) !important;
		align-self: start !important;
	}
}

body.woocommerce-checkout .wc-block-components-notice-banner { width: 100%; margin-bottom: 1rem; }

body.woocommerce-checkout .wc-blocks-components-select__container {
	background: transparent !important;
	border: 1px solid var(--color-border) !important;
	border-radius: var(--radius) !important;
	box-shadow: none !important;
}
body.woocommerce-checkout .wc-blocks-components-select__select {
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	color: var(--color-foreground) !important;
	font-family: var(--font-body) !important;
	font-size: 0.875rem !important;
	font-weight: 300 !important;
	width: 100% !important;
	max-width: none !important;
	box-shadow: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
}
body.woocommerce-checkout .wc-blocks-components-select__select:focus {
	border-color: transparent !important;
	outline: none !important;
}
body.woocommerce-checkout .wc-blocks-components-select__label {
	color: var(--color-ice) !important;
	font-size: 0.75rem !important;
	letter-spacing: 0.3em !important;
	text-transform: uppercase !important;
	font-weight: 600 !important;
}
body.woocommerce-checkout .wc-blocks-components-select__expand {
	fill: var(--color-foreground) !important;
	color: var(--color-foreground) !important;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
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 .wc-block-components-combobox .wc-block-components-combobox-control input,
body.woocommerce-checkout select {
	background: transparent !important;
	border: 1px solid var(--color-border) !important;
	border-radius: var(--radius) !important;
	color: var(--color-foreground) !important;
	font-family: var(--font-body) !important;
	font-size: 0.875rem !important;
	font-weight: 300 !important;
	width: 100% !important;
	max-width: none !important;
	box-shadow: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .woocommerce-checkout .form-row .input-text:focus,
body.woocommerce-checkout .woocommerce-checkout .form-row select:focus {
	border-color: var(--color-primary) !important;
	outline: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .woocommerce-checkout .form-row .input-text::placeholder {
	color: color-mix(in srgb, var(--color-foreground) 30%, transparent) !important;
}
body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-select label {
	color: var(--color-ice) !important;
	font-size: 0.75rem !important;
	letter-spacing: 0.3em !important;
	text-transform: uppercase !important;
	font-weight: 600 !important;
}

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

body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title { font-family: var(--font-display); }

/* ---------- Thank you page ---------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: calc(var(--header-height) + 1rem); }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { font-family: var(--font-display); padding: 1.5rem 0 1rem; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1rem 2rem; list-style: none; padding: 0; margin: 1.5rem 0; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; }
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; margin-top: 2rem; }
body.theme-thankyou-page .woocommerce-customer-details address { max-width: 480px; overflow-wrap: break-word; border: 1px solid var(--color-border); padding: 1.25rem; }
