/* ==========================================================================
   Luxury Care — theme.css
   Design tokens converted from the original design source (src/index.css / tailwind
   config). Colors are emitted as CSS variables from the Customizer via
   wp_add_inline_style (see inc/setup.php); this file only declares the
   fallbacks + everything else (typography, layout, components, WooCommerce).
   ========================================================================== */

:root {
	--color-background: #f6f7f9;
	--color-foreground: #171b21;
	--color-card: #edf0f2;
	--color-primary: #212731;
	--color-primary-foreground: #f6f7f9;
	--color-secondary: #e4e8ec;
	--color-muted: #dce0e5;
	--color-muted-foreground: #575f6b;
	--color-accent: #0981d7;
	--color-accent-foreground: #ffffff;
	--color-border: #d3d9de;
	--color-gold: #0876c4;
	--color-gold-deep: #212731;
	--color-gold-soft: #dce0e5;

	--font-display: 'Fraunces', Georgia, serif;
	--font-body: 'Karla', 'Inter', sans-serif;

	--radius: 0.375rem;
	--logo-height: 96px;
	--header-height: 96px;
	--shadow-soft: 0 2px 12px -4px rgb(23 27 33 / 0.10);
	--shadow-elevated: 0 10px 30px -10px rgb(23 27 33 / 0.22);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

	--btn-radius: 0.375rem;
	--btn-height: 44px;
	--btn-padding: 0.75rem 1.75rem;
	--btn-font-size: 0.75rem;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0.02em;
	--btn-text-transform: none;
	--btn-icon-padding: 0.5rem;
	--card-radius: 0.75rem;
	--section-padding: 2rem;
	--checkout-gap: 2rem;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: clip; }

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

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

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

img:not(.cover-img):not(.hero-slide-img):not(.product-card-img):not(.theme-product-card__image):not(.product-main-img):not(.about-video):not(.about-poster):not(.contact-cta-video):not(.contact-cta-poster) {
	max-width: 100%;
	height: auto;
	display: block;
}
.cover-img, .hero-slide-img, .product-card-img, .theme-product-card__image, .product-main-img, .about-video, .about-poster, .contact-cta-video, .contact-cta-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.theme-cart-line-thumb img,
.theme-product-thumb img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	display: block;
}

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

.section-padded { padding-top: 4rem; padding-bottom: 4rem; }
.section-padded-bottom { padding-bottom: 4rem; }
@media (min-width: 768px) {
	.section-padded { padding-top: 6rem; padding-bottom: 6rem; }
	.section-padded-bottom { padding-bottom: 6rem; }
}

.eyebrow {
	display: block;
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 0.75rem;
}
.eyebrow-accent { color: var(--color-gold-deep); }
.eyebrow-gold { color: var(--color-gold); }

.section-heading { font-size: 1.875rem; line-height: 1.05; }
@media (min-width: 768px) { .section-heading { font-size: 3rem; } }

.link-underline { position: relative; display: inline-flex; align-items: center; }
.link-underline::after {
	content: '';
	position: absolute; bottom: -2px; left: 0; width: 100%; height: 1px;
	background: currentColor; transform: scaleX(0); transform-origin: left;
	transition: transform 0.3s var(--transition-smooth);
}
.link-underline:hover::after { transform: scaleX(1); }

.view-all-link {
	font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
	font-family: var(--font-body); color: var(--color-muted-foreground);
	display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap;
}
.view-all-link:hover { color: var(--color-foreground); }

.section-header-row {
	display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;
	gap: 1rem; margin-bottom: 2rem;
}
@media (min-width: 768px) { .section-header-row { flex-direction: row; align-items: flex-end; margin-bottom: 3rem; } }

/* Buttons */
.theme-btn-accent, .theme-btn-outline, .theme-btn-primary, .theme-btn-gold, .theme-btn-ghost-light {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	min-height: 44px; padding: 0.75rem 1.75rem; border-radius: var(--btn-radius);
	font-family: var(--font-body); font-size: 0.8125rem; letter-spacing: 0.05em;
	text-transform: none; transition: opacity 0.2s ease, transform 0.18s var(--transition-smooth), background-color .2s ease, color .2s ease, border-color .2s ease;
	cursor: pointer; border: none; white-space: nowrap;
}
.theme-btn-accent { background: var(--color-accent); color: var(--color-accent-foreground); }
.theme-btn-accent:hover { opacity: 0.9; }
.theme-btn-gold { background: var(--color-gold); color: var(--color-background); }
.theme-btn-gold:hover { background: var(--color-gold-deep); opacity: 1; }
.theme-btn-primary { background: var(--color-accent); color: var(--color-accent-foreground); width: 100%; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.75rem; }
.theme-btn-primary:hover { opacity: 0.9; }
.theme-btn-outline { background: transparent; color: var(--color-foreground); border: 1px solid var(--color-foreground); }
.theme-btn-outline:hover { background: var(--color-foreground); color: var(--color-background); }
.theme-btn-ghost-light { background: transparent; color: var(--color-background); border: 1px solid rgb(255 255 255 / 0.6); }
.theme-btn-ghost-light:hover { background: var(--color-background); color: var(--color-foreground); }
.theme-btn-loading { opacity: 0.6; pointer-events: none; cursor: wait; }

/* ==========================================================================
   Announcement bar
   ========================================================================== */

.theme-announcement-bar {
	position: relative; background: var(--color-foreground); color: var(--color-background);
	overflow: hidden; display: flex; align-items: center; height: 40px;
}
.theme-announcement-track { overflow: hidden; white-space: nowrap; flex: 1; }
.theme-announcement-set { display: inline-flex; align-items: center; animation: marquee 75s linear infinite; }
.theme-announcement-item { display: inline-flex; align-items: center; margin: 0 3.5rem; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-family: var(--font-body); color: var(--color-gold-soft); }
.theme-announcement-dot { width: 4px; height: 4px; border-radius: 999px; background: var(--color-accent); margin-right: 1.25rem; }
.theme-announcement-dismiss { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); opacity: 0.7; padding: 0.25rem; color: inherit; }
.theme-announcement-dismiss:hover { opacity: 1; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: sticky; top: 0; left: 0; right: 0; z-index: 50;
	background: var(--color-background); border-bottom: 1px solid transparent;
	transition: all 0.3s var(--transition-smooth);
}
.site-header.is-scrolled {
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(8px);
	border-bottom-color: var(--color-border);
	box-shadow: var(--shadow-soft);
}
.site-nav {
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	height: 96px; transition: height 0.3s var(--transition-smooth);
}
.site-header.is-scrolled .site-nav, .site-header.menu-open .site-nav { height: 64px; }
@media (min-width: 768px) {
	.site-nav { height: 128px; }
	.site-header.is-scrolled .site-nav { height: 80px; }
}

.site-brand { display: flex; align-items: center; flex-shrink: 0; }
.site-brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.site-logo-img { height: var(--logo-height) !important; width: auto !important; max-height: none; transition: height 0.3s var(--transition-smooth); object-fit: contain; }
.site-header.is-scrolled .site-logo-img { height: var(--logo-height-scrolled, calc(var(--logo-height) * 0.75)) !important; }
.site-footer-logo-link .site-logo-img.footer-logo { height: 64px !important; }
.site-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; white-space: nowrap; }
.site-logo-text--with-image { font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer-logo-link .site-logo-text--with-image { display: none; }

.site-nav-links { display: none; }
@media (min-width: 1024px) { .site-nav-links { display: flex; align-items: center; gap: 2.25rem; } }
.theme-nav-list { display: flex; align-items: center; gap: 2.25rem; }
.theme-nav-link {
	font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-family: var(--font-body);
	position: relative; display: inline-block; transition: color 0.3s var(--transition-smooth);
}
.theme-nav-link::after {
	content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 1px;
	background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--transition-smooth);
}
.theme-nav-link:hover::after { transform: scaleX(1); }

.site-nav-actions { display: flex; align-items: center; gap: 0.25rem; flex-shrink: 0; }
@media (min-width: 768px) { .site-nav-actions { gap: 0.5rem; } }
.site-nav-icon-btn { position: relative; padding: 0.5rem; transition: opacity 0.2s ease; }
.site-nav-icon-btn:hover { opacity: 0.6; }
.theme-mobile-menu-toggle { display: inline-flex; }
@media (min-width: 1024px) { .theme-mobile-menu-toggle { display: none; } }

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

.theme-mobile-menu { border-top: 1px solid var(--color-border); padding: 1rem 0; }
.theme-mobile-menu[hidden] { display: none; }
.theme-mobile-menu .theme-nav-list,
.theme-mobile-nav-list { display: flex; flex-direction: column; gap: 0.25rem; align-items: stretch; }
.theme-mobile-menu .theme-nav-list .theme-nav-link::after,
.theme-mobile-nav-list a { display: block; padding: 0.75rem 0; font-size: 0.875rem; letter-spacing: 0.16em; text-transform: uppercase; font-family: var(--font-body); }
.theme-mobile-menu .theme-nav-list .theme-nav-link { display: block; padding: 0.75rem 0; font-size: 0.875rem; letter-spacing: 0.16em; }
.theme-mobile-nav-list a:hover,
.theme-mobile-menu .theme-nav-list .theme-nav-link:hover { color: var(--color-primary); }

/* Search dialog */
.theme-search-dialog[hidden] { display: none; }
.theme-search-dialog { position: fixed; inset: 0; z-index: 80; }
.theme-search-overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 40%, transparent); border: none; }
.theme-search-panel { position: relative; background: var(--color-background); width: 100%; max-height: 92vh; overflow-y: auto; border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-elevated); }
.theme-search-close { position: absolute; top: 1.25rem; right: 1.25rem; padding: 0.5rem; opacity: 0.7; z-index: 10; }
.theme-search-close:hover { opacity: 1; }
.theme-search-inner { padding: 2.5rem 1.5rem; }
@media (min-width: 1024px) { .theme-search-inner { padding: 3.5rem 2rem; } }
.theme-search-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .theme-search-grid { grid-template-columns: 260px 1fr; gap: 4rem; } }
.theme-search-categories h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-categories ul { display: flex; flex-direction: column; gap: 0.875rem; }
.theme-search-cat-link { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-family: var(--font-body); color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-search-cat-link:hover { color: var(--color-primary); }
.theme-search-input-row { display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid var(--color-border); padding-bottom: 0.75rem; }
.theme-search-input-row input { flex: 1; background: transparent; border: none; outline: none; font-family: var(--font-display); font-size: 1.5rem; }
.theme-search-input-row input::placeholder { color: var(--color-muted-foreground); }
.theme-search-results { margin-top: 2.5rem; }
.theme-search-results h4 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; }
@media (min-width: 768px) { .theme-search-results-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .theme-search-results-grid { grid-template-columns: repeat(4, 1fr); } }
.theme-search-result-img { aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-secondary); }
.theme-search-result-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.theme-search-result:hover .theme-search-result-img img { transform: scale(1.05); }
.theme-search-result-name { margin-top: 0.75rem; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-family: var(--font-body); }
.theme-search-result-price { margin-top: 0.25rem; font-size: 12px; color: var(--color-muted-foreground); }
.theme-search-empty { font-size: 0.875rem; color: var(--color-muted-foreground); }

/* ==========================================================================
   Scroll reveal / animation utilities
   ========================================================================== */

.reveal-item, .theme-product-card-wrap.reveal-item {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-item.is-visible, .theme-product-card-wrap.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

body.is-customizer .reveal-item,
body.is-customizer .theme-product-card-wrap.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 marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }

@media (prefers-reduced-motion: reduce) {
	.reveal-item, .theme-product-card-wrap.reveal-item { transition: none !important; opacity: 1 !important; transform: none !important; }
	.theme-announcement-set, .marquee-set, .is-kenburns { animation: none !important; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero-section { position: relative; width: 100%; overflow: hidden; background: var(--color-background); height: calc(100svh - var(--header-height, 96px)); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease-in-out; }
.hero-slide.is-active { opacity: 1; }
.hero-slide-img.is-kenburns { animation: kenBurns 8s ease-out forwards; }
.hero-scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, color-mix(in srgb, var(--color-foreground) 60%, transparent), color-mix(in srgb, var(--color-foreground) 25%, transparent), color-mix(in srgb, var(--color-foreground) 70%, transparent)); }
.hero-content-wrap { position: relative; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding-bottom: 5rem; }
@media (min-width: 768px) { .hero-content-wrap { padding-bottom: 6rem; } }
.hero-content { max-width: 56rem; padding: 0 0.5rem; }
.hero-heading { font-size: 40px; line-height: 0.95; color: var(--color-background); margin-bottom: 1rem; }
@media (min-width: 640px) { .hero-heading { font-size: 3.75rem; } }
@media (min-width: 768px) { .hero-heading { font-size: 4.5rem; margin-bottom: 1.5rem; } }
@media (min-width: 1024px) { .hero-heading { font-size: 100px; } }
.hero-subtext-wrap { max-width: 36rem; margin: 0 auto 1.5rem; }
@media (min-width: 768px) { .hero-subtext-wrap { margin-bottom: 2rem; } }
.hero-subtext { font-size: 0.875rem; color: color-mix(in srgb, var(--color-background) 90%, transparent); line-height: 1.6; }
@media (min-width: 768px) { .hero-subtext { font-size: 1rem; } }
.hero-cta svg { transition: transform 0.3s var(--transition-smooth); }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-indicators { position: absolute; bottom: 1.5rem; right: 1.5rem; display: flex; align-items: flex-end; gap: 0.75rem; z-index: 10; }
@media (min-width: 768px) { .hero-indicators { right: 2rem; } }
.hero-indicator { padding: 0.75rem 0; }
.hero-indicator span { display: block; height: 1px; width: 1.5rem; background: color-mix(in srgb, var(--color-background) 40%, transparent); transition: all 0.5s ease; }
.hero-indicator:hover span { background: color-mix(in srgb, var(--color-background) 70%, transparent); }
.hero-indicator.is-active span { width: 3rem; background: var(--color-background); }
@media (min-width: 768px) { .hero-indicator.is-active span { width: 4rem; } }

/* ==========================================================================
   Category tiles
   ========================================================================== */

.category-tiles-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
@media (min-width: 768px) { .category-tiles-grid { gap: 1rem; } }
@media (min-width: 1024px) { .category-tiles-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.category-tile { position: relative; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 0.75rem; text-align: left; display: block; width: 100%; }
.category-tile-img { transition: transform 0.7s ease-out; }
.category-tile:hover .category-tile-img { transform: scale(1.05); }
.category-tile-scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, color-mix(in srgb, var(--color-foreground) 65%, transparent), color-mix(in srgb, var(--color-foreground) 10%, transparent), color-mix(in srgb, var(--color-foreground) 45%, transparent)); }
.category-tile-label { position: absolute; left: 1rem; top: 1rem; right: 2.5rem; font-family: var(--font-display); font-size: 1.125rem; line-height: 1.2; color: var(--color-background); }
@media (min-width: 768px) { .category-tile-label { left: 1.25rem; top: 1.25rem; font-size: 1.5rem; } }
.category-tile-arrow { position: absolute; right: 1rem; bottom: 1rem; width: 2.5rem; height: 2.5rem; border-radius: 999px; background: var(--color-background); color: var(--color-foreground); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
@media (min-width: 768px) { .category-tile-arrow { right: 1.25rem; bottom: 1.25rem; width: 2.75rem; height: 2.75rem; } }
.category-tile:hover .category-tile-arrow { background: var(--color-accent); color: var(--color-accent-foreground); }

/* ==========================================================================
   Promo bento
   ========================================================================== */

.promo-bento-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 768px) { .promo-bento-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; } }
.promo-bento-tile { position: relative; overflow: hidden; border-radius: 0.75rem; background: var(--color-secondary); }
.promo-bento-tile:nth-child(even) { background: var(--color-muted); }
.promo-bento-tile { display: grid; grid-template-columns: 1fr; min-height: 220px; }
@media (min-width: 768px) { .promo-bento-tile { grid-template-columns: repeat(2, minmax(0, 1fr)); min-height: 280px; } }
.promo-bento-content { padding: 1.5rem; display: flex; flex-direction: column; order: 2; }
@media (min-width: 768px) { .promo-bento-content { padding: 2.5rem; order: 1; } }
.promo-bento-eyebrow { display: inline-block; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-foreground); font-family: var(--font-body); margin-bottom: 0.75rem; border: 1px solid var(--color-border); border-radius: var(--btn-radius); padding: 0.25rem 0.75rem; width: fit-content; }
.promo-bento-heading { font-size: 1.25rem; line-height: 1.2; margin-bottom: 1.25rem; flex-grow: 1; }
@media (min-width: 768px) { .promo-bento-heading { font-size: 1.875rem; } }
.promo-bento-image-wrap { position: relative; min-height: 220px; order: 1; }
@media (min-width: 768px) { .promo-bento-image-wrap { min-height: 280px; order: 2; } }
.promo-bento-btn { font-size: 12px; letter-spacing: 0.05em; min-height: 40px; padding: 0.625rem 1.25rem; }

/* ==========================================================================
   Product grid + card (shared: shop, best sellers, related)
   ========================================================================== */

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

.theme-product-card-wrap { display: flex; height: 100%; }
.theme-product-card {
	position: relative; display: flex; flex-direction: column; height: 100%; width: 100%;
	background: var(--color-card); border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	border-radius: 0.75rem; overflow: hidden;
	transition: transform 0.35s var(--transition-smooth), box-shadow 0.35s var(--transition-smooth), background-color 0.2s ease;
}
.theme-product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-elevated); background: color-mix(in srgb, var(--color-secondary) 70%, transparent); }
.theme-card-media-link { display: block; }

.theme-product-card__image-wrapper { position: relative; margin: 0.5rem; border-radius: 0.5rem; aspect-ratio: 4 / 5; background: var(--color-muted); overflow: hidden; }
.theme-product-card__image { transition: transform 0.8s cubic-bezier(0.25, 0.4, 0.25, 1); width: 100%; height: 100% !important; object-fit: cover; object-position: top; }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.05); }
.theme-product-badge { position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.25rem 0.75rem; font-size: 10px; text-transform: uppercase; letter-spacing: 0.24em; background: var(--color-foreground); color: var(--color-background); border-radius: var(--btn-radius); z-index: 3; }

.theme-product-card__body { padding: 0.5rem 1rem 1rem; text-align: left; flex: 1; display: flex; flex-direction: column; min-width: 0; }
.theme-product-card__category { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-muted-foreground); font-family: var(--font-body); }
.theme-product-card__title { display: block; margin-top: 0.375rem; font-size: 0.875rem; font-weight: 500; font-family: var(--font-body); color: var(--color-foreground); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; min-width: 0; transition: color 0.2s ease; }
.theme-product-card__title:hover { color: var(--color-foreground); }
.theme-product-card__footer { margin-top: auto; padding-top: 0.875rem; border-top: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; min-width: 0; }
.theme-product-card__price { font-size: 0.875rem; font-weight: 600; font-family: var(--font-body); color: var(--color-foreground); }
.theme-product-card__price ins { text-decoration: none; }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.35rem; }

.theme-product-card__add.add_to_cart_button {
	display: inline-flex !important; align-items: center; gap: 0.375rem; height: 36px; padding: 0 1rem;
	border-radius: 999px; border: 1px solid var(--color-border); background: var(--color-background) !important;
	color: var(--color-foreground) !important; font-family: var(--font-body); font-size: 12px; white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; text-transform: none !important;
}
.theme-product-card__add--link {
	display: inline-flex !important; align-items: center; gap: 0.375rem; height: 36px; padding: 0 1rem;
	border-radius: 999px; border: 1px solid var(--color-border); background: var(--color-background);
	color: var(--color-foreground); font-family: var(--font-body); font-size: 12px; white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; text-transform: none;
}
.theme-product-card:hover .theme-product-card__add.add_to_cart_button:not(.disabled),
.theme-product-card:hover .theme-product-card__add--link { background: var(--color-accent) !important; color: var(--color-accent-foreground) !important; border-color: var(--color-accent) !important; }
.theme-product-card__add.disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

/* ==========================================================================
   Marquee strip
   ========================================================================== */

.marquee-section { background: var(--color-foreground); padding: 1.25rem 0; overflow: hidden; }
@media (min-width: 768px) { .marquee-section { padding: 1.5rem 0; } }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 75s linear infinite; }
.marquee-set { display: flex; align-items: center; flex-shrink: 0; }
.marquee-item { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; letter-spacing: -0.02em; padding: 0 1rem; color: var(--color-background); }
.marquee-item.is-accent { color: var(--color-accent); }
@media (min-width: 768px) { .marquee-item { font-size: 2.25rem; padding: 0 2rem; } }
@media (min-width: 1024px) { .marquee-item { font-size: 3rem; } }
.marquee-divider { color: color-mix(in srgb, var(--color-background) 80%, transparent); padding: 0 0.5rem; display: inline-flex; }
@media (min-width: 768px) { .marquee-divider { padding: 0 1rem; } }

/* ==========================================================================
   Shop section
   ========================================================================== */

.shop-section { border-top: 1px solid var(--color-border); scroll-margin-top: 6rem; }
#about, #owner, #faq { scroll-margin-top: 6rem; }

.shop-section-header { text-align: center; margin-bottom: 1.5rem; }
.shop-heading { font-size: 1.875rem; margin-top: 0; }
@media (min-width: 768px) { .shop-heading { font-size: 2.25rem; } }
.shop-filters { border-bottom: 1px solid var(--color-border); padding-bottom: 1.25rem; margin-bottom: 2rem; }
.shop-filters-row {
	display: flex; flex-wrap: nowrap; align-items: center;
	gap: 0.75rem 1rem; overflow-x: auto; -webkit-overflow-scrolling: touch;
	scrollbar-width: none; padding-bottom: 0.125rem;
}
.shop-filters-row::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .shop-filters-row { gap: 1rem 1.25rem; } }
@media (min-width: 1024px) { .shop-filters-row { gap: 1.5rem; } }
.shop-filter-group { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.shop-filter-group--surface { flex-shrink: 1; min-width: 0; }
.shop-pill-group { display: inline-flex; flex-wrap: nowrap; align-items: center; gap: 0.25rem; border-radius: 999px; background: var(--color-secondary); padding: 0.25rem; flex-shrink: 0; }
.shop-filter-label { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; font-family: var(--font-body); color: var(--color-muted-foreground); }
.shop-select-wrap { position: relative; display: inline-flex; align-items: center; }
.shop-select-wrap svg { position: absolute; right: 0; pointer-events: none; color: var(--color-muted-foreground); }
.shop-select { appearance: none; background: transparent; border: none; border-bottom: 1px solid var(--color-border); border-radius: 0; padding: 0.25rem 1.25rem 0.25rem 0; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-family: var(--font-body); cursor: pointer; }
.shop-select:focus { outline: none; border-color: var(--color-foreground); }
.shop-pill { padding: 0 0.75rem; height: 1.75rem; border-radius: 999px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-family: var(--font-body); color: var(--color-muted-foreground); white-space: nowrap; transition: all 0.2s ease; }
@media (min-width: 1024px) { .shop-pill { height: 2rem; padding: 0 0.9rem; } }
.shop-pill:hover { color: var(--color-foreground); }
.shop-pill.is-active { background: var(--color-accent); color: var(--color-accent-foreground); box-shadow: var(--shadow-soft); }
.shop-search-row { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; }
.shop-search-wrap { position: relative; flex: 1 1 auto; min-width: 0; width: 100%; max-width: none; }
.shop-filter-group--price { flex-shrink: 0; }
.shop-search-wrap svg { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); }
.shop-search-wrap input { width: 100%; padding: 0.5rem 1rem 0.5rem 1.5rem; height: 2.25rem; background: transparent; border: none; border-bottom: 1px solid var(--color-border); font-size: 0.875rem; font-family: var(--font-body); }
.shop-search-wrap input:focus { outline: none; border-color: var(--color-foreground); }
.shop-search-wrap input::placeholder { color: var(--color-muted-foreground); text-transform: none; letter-spacing: normal; }

.shop-grid { margin-top: 2.5rem; }
.shop-show-more-wrap { text-align: center; margin-top: 3rem; }
.shop-show-more-wrap[hidden] { display: none; }
.shop-empty-message { text-align: center; padding: 5rem 0; color: var(--color-muted-foreground); }
.shop-empty-message[hidden] { display: none; }

/* ==========================================================================
   Trust strip
   ========================================================================== */

.trust-strip { background: var(--color-foreground); color: var(--color-background); }
.trust-strip-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) { .trust-strip-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.trust-strip-item { display: flex; align-items: flex-start; gap: 0.875rem; padding: 1.75rem 1.25rem; border-bottom: 1px solid color-mix(in srgb, var(--color-background) 10%, transparent); border-right: 1px solid color-mix(in srgb, var(--color-background) 10%, transparent); min-width: 0; }
.trust-strip-item:nth-child(2n) { border-right: none; }
@media (min-width: 1024px) {
	.trust-strip-item { border-bottom: none; padding: 2.5rem 2rem; }
	.trust-strip-item:nth-child(2n) { border-right: 1px solid color-mix(in srgb, var(--color-background) 10%, transparent); }
	.trust-strip-item:last-child { border-right: none; }
}
.trust-strip-item.is-tinted { background: color-mix(in srgb, var(--color-background) 6%, transparent); }
.trust-strip-item svg { flex-shrink: 0; color: var(--color-accent); }
.trust-strip-title { font-size: 0.875rem; font-weight: 600; line-height: 1.3; }
@media (min-width: 768px) { .trust-strip-title { font-size: 1rem; } }
.trust-strip-copy { font-size: 12px; color: color-mix(in srgb, var(--color-background) 65%, transparent); line-height: 1.3; margin-top: 0.25rem; overflow-wrap: break-word; }
@media (min-width: 768px) { .trust-strip-copy { font-size: 13px; } }

/* ==========================================================================
   Bulk banner
   ========================================================================== */

.bulk-banner { background: var(--color-foreground); }
.bulk-banner-inner { position: relative; overflow: hidden; }
.bulk-banner-gradient { position: absolute; inset: 0; background: linear-gradient(to right, var(--color-foreground), color-mix(in srgb, var(--color-foreground) 80%, transparent), color-mix(in srgb, var(--color-foreground) 40%, transparent)); }
.bulk-banner-content { position: relative; padding-top: 3.5rem; padding-bottom: 3.5rem; }
@media (min-width: 768px) { .bulk-banner-content { padding-top: 5rem; padding-bottom: 5rem; } }
.bulk-banner-text { max-width: 36rem; }
.bulk-banner-eyebrow { display: inline-block; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-background) 70%, transparent); font-family: var(--font-body); margin-bottom: 1rem; }
.bulk-banner-heading { font-size: 1.875rem; line-height: 1.05; color: var(--color-background); margin-bottom: 1rem; }
@media (min-width: 768px) { .bulk-banner-heading { font-size: 3rem; } }
.bulk-banner-copy { font-family: var(--font-body); color: color-mix(in srgb, var(--color-background) 80%, transparent); line-height: 1.6; margin-bottom: 1.75rem; }
.bulk-banner-text .theme-btn-accent { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; }

/* ==========================================================================
   Newsletter
   ========================================================================== */

.newsletter-grid { display: grid; grid-template-columns: 1fr; border-radius: 1rem; overflow: hidden; background: var(--color-muted); }
@media (min-width: 768px) { .newsletter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.newsletter-image-wrap { position: relative; min-height: 280px; }
.newsletter-image-wrap .cover-img { object-position: top; }
@media (min-width: 768px) { .newsletter-image-wrap { min-height: 420px; } }
.newsletter-content { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .newsletter-content { padding: 3.5rem; } }
.newsletter-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-foreground); font-family: var(--font-body); margin-bottom: 1rem; }
.newsletter-heading { font-size: 1.875rem; line-height: 1.05; margin-bottom: 1rem; }
@media (min-width: 768px) { .newsletter-heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .newsletter-heading { font-size: 3rem; } }
.newsletter-copy { color: var(--color-muted-foreground); margin-bottom: 2rem; max-width: 28rem; }
.newsletter-form { position: relative; max-width: 28rem; }
.newsletter-form input { width: 100%; height: 3rem; border-radius: var(--btn-radius); background: var(--color-background); border: 1px solid var(--color-border); padding: 0 8rem 0 1.25rem; font-family: var(--font-body); font-size: 0.875rem; }
.newsletter-form input:focus { outline: none; box-shadow: 0 0 0 2px var(--color-primary); }
.newsletter-form button { position: absolute; right: 0.25rem; top: 50%; transform: translateY(-50%); height: 2.5rem; padding: 0 1.25rem; border-radius: var(--btn-radius); background: var(--color-gold); color: var(--color-background); font-family: var(--font-body); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }
.newsletter-form button:hover { background: var(--color-gold-deep); }
.newsletter-embed { max-width: 28rem; width: 100%; }
.newsletter-embed--footer { max-width: 24rem; margin-bottom: 1.5rem; }
.newsletter-embed iframe { display: block; width: 100%; min-height: 12rem; border: 0; }
.theme-newsletter-signup [hidden] { display: none !important; }

.site-footer-newsletter { position: relative; max-width: 24rem; margin-bottom: 1.5rem; }
.site-footer-newsletter input { width: 100%; height: 3rem; border-radius: 999px; background: var(--color-background); color: var(--color-foreground); padding: 0 3.5rem 0 1.25rem; border: none; font-family: var(--font-body); font-size: 0.875rem; }
.site-footer-newsletter input::placeholder { color: var(--color-muted-foreground); }
.site-footer-newsletter button { position: absolute; right: 0.375rem; top: 50%; transform: translateY(-50%); width: 2.25rem; height: 2.25rem; border-radius: 999px; background: var(--color-accent); color: var(--color-accent-foreground); display: flex; align-items: center; justify-content: center; }
.site-footer-newsletter button:hover { opacity: 0.9; }

/* ==========================================================================
   About section
   ========================================================================== */

.about-section { position: relative; overflow: hidden; border-top: 1px solid var(--color-border); }
.about-scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.about-gradient { position: absolute; inset: 0; background: linear-gradient(to right, color-mix(in srgb, var(--color-foreground) 85%, transparent), color-mix(in srgb, var(--color-foreground) 55%, transparent), transparent); }
.about-content-wrap { position: relative; z-index: 10; padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .about-content-wrap { padding-top: 7rem; padding-bottom: 7rem; } }
.about-content { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .about-content { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.about-content > * { grid-column: 1; }
.about-eyebrow { color: var(--color-gold); }
.about-heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-background); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .about-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-heading { font-size: 3.75rem; } }
.about-paragraph { color: color-mix(in srgb, var(--color-background) 80%, transparent); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; overflow-wrap: break-word; }
.about-content .theme-btn-gold { margin-top: 0.5rem; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; }

/* ==========================================================================
   Owner section
   ========================================================================== */

.owner-section { border-top: 1px solid var(--color-border); }
.owner-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .owner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4rem; } }
.owner-content { order: 2; }
@media (min-width: 768px) { .owner-content { order: 1; } }
.owner-paragraph { color: var(--color-muted-foreground); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; overflow-wrap: break-word; }
.owner-content .theme-btn-outline { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; }
.owner-photo-wrap { position: relative; overflow: hidden; border-radius: 1rem; aspect-ratio: 3 / 4; width: 100%; max-width: 380px; margin: 0 auto; order: 1; }
.owner-photo-wrap .cover-img { object-position: top; }
@media (min-width: 768px) { .owner-photo-wrap { margin: 0 0 0 auto; order: 2; } }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-section { border-top: 1px solid var(--color-border); }
.faq-wrap { max-width: 48rem; margin: 0 auto; }
.faq-eyebrow, .faq-heading { text-align: center; }
.faq-heading { margin-bottom: 3rem; font-size: 2.25rem; }
@media (min-width: 768px) { .faq-heading { font-size: 3rem; } }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.faq-trigger span { font-family: var(--font-display); font-size: 1.125rem; }
@media (min-width: 768px) { .faq-trigger span { font-size: 1.25rem; } }
.faq-trigger svg { flex-shrink: 0; }
.faq-panel { overflow: hidden; padding-bottom: 1.5rem; }
.faq-panel[hidden] { display: none; }
.faq-panel p { color: var(--color-muted-foreground); line-height: 1.6; }

/* ==========================================================================
   Contact CTA band
   ========================================================================== */

.contact-cta-section { position: relative; width: 100%; overflow: hidden; background: var(--color-foreground); min-height: 70vh; display: flex; align-items: center; justify-content: center; }
@media (min-width: 768px) { .contact-cta-section { min-height: 75vh; } }
.contact-cta-scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.contact-cta-gradient { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 70%, transparent), color-mix(in srgb, var(--color-foreground) 20%, transparent), color-mix(in srgb, var(--color-foreground) 50%, transparent)); }
.contact-cta-content { position: relative; z-index: 10; padding: 5rem 0; text-align: center; color: var(--color-background); }
@media (min-width: 768px) { .contact-cta-content { padding: 7rem 0; } }
.contact-cta-eyebrow { color: var(--color-accent); }
.contact-cta-heading { font-size: 2.25rem; line-height: 1.05; max-width: 56rem; margin: 0 auto 1.5rem; }
@media (min-width: 768px) { .contact-cta-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .contact-cta-heading { font-size: 4.5rem; } }
.contact-cta-copy { max-width: 36rem; margin: 0 auto 2.5rem; font-size: 1rem; color: color-mix(in srgb, var(--color-background) 80%, transparent); }
@media (min-width: 768px) { .contact-cta-copy { font-size: 1.125rem; } }
.contact-cta-actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
.contact-cta-actions .theme-btn-accent,
.contact-cta-actions .theme-btn-ghost-light { font-size: 0.875rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 1rem 2rem; min-height: auto; }
@media (min-width: 640px) { .contact-cta-actions { flex-direction: row; gap: 1rem; } }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--color-foreground); color: color-mix(in srgb, var(--color-background) 85%, transparent); }
.site-footer-inner { padding-top: 3rem; padding-bottom: 1rem; }
@media (min-width: 768px) { .site-footer-inner { padding-top: 4rem; } }
.site-footer-top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid color-mix(in srgb, var(--color-background) 15%, transparent); }
@media (min-width: 1024px) { .site-footer-top { grid-template-columns: 1.1fr 1.4fr; gap: 3rem; } }
.footer-logo { height: 64px; width: auto; }
.site-footer-logo-link { display: inline-flex; align-items: center; margin-bottom: 1.25rem; }
.site-footer-description { font-size: 0.875rem; line-height: 1.6; max-width: 24rem; margin-bottom: 1.5rem; }
.site-footer-social { display: flex; align-items: center; gap: 0.75rem; }
.site-footer-social-link { width: 2.25rem; height: 2.25rem; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-background) 25%, transparent); display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.site-footer-social-link:hover { background: var(--color-background); color: var(--color-foreground); }
.site-footer-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 1.5rem; }
@media (min-width: 640px) { .site-footer-columns { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2.5rem 1.5rem; } }
.site-footer-col { min-width: 0; }
.site-footer-col h4 { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-background); margin-bottom: 1.25rem; }
.site-footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer-col a, .site-footer-col button { font-size: 0.875rem; text-align: left; transition: color 0.2s ease; }
.site-footer-col a:hover, .site-footer-col button:hover { color: var(--color-background); }
.site-footer-contact-list a { overflow-wrap: break-word; }
.site-footer-bottom { margin-top: 1.25rem; }
.site-footer-bottom p { font-size: 12px; letter-spacing: 0.02em; color: color-mix(in srgb, var(--color-background) 70%, transparent); }

/* ==========================================================================
   Contact modal
   ========================================================================== */

.theme-contact-modal[hidden] { display: none; }
.theme-contact-modal { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.theme-modal-overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 50%, transparent); border: none; }
.theme-modal-panel { position: relative; z-index: 1; background: var(--color-background); border-radius: 0.75rem; width: 100%; max-width: 32rem; max-height: 90vh; overflow-y: auto; padding: 2rem; box-shadow: var(--shadow-elevated); }
.theme-modal-close { position: absolute; top: 1rem; right: 1rem; padding: 0.375rem; opacity: 0.6; }
.theme-modal-close:hover { opacity: 1; }
.theme-modal-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-modal-description { color: var(--color-muted-foreground); font-size: 0.875rem; line-height: 1.5; margin-bottom: 1.25rem; }
.theme-modal-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-modal-meta span { display: flex; align-items: center; gap: 0.5rem; }
.theme-modal-meta a:hover { color: var(--color-foreground); }
.theme-modal-form { display: flex; flex-direction: column; gap: 1rem; }
.theme-form-row-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-form-row-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.theme-modal-form label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.theme-modal-form input, .theme-modal-form textarea { width: 100%; padding: 0.625rem 0.75rem; background: var(--color-background); border: 1px solid var(--color-border); border-radius: var(--btn-radius); font-size: 1rem; resize: vertical; }
.theme-modal-form input:focus, .theme-modal-form textarea:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-accent) 50%, transparent); }
.theme-modal-form-actions { display: flex; justify-content: flex-end; }
.theme-modal-form-actions .theme-btn-primary { width: auto; text-transform: none; letter-spacing: normal; font-size: 0.875rem; }
.theme-modal-success { text-align: center; padding: 2rem 0; }
.theme-modal-success[hidden] { display: none; }
.theme-modal-success-icon { width: 3.5rem; height: 3.5rem; background: var(--color-primary); color: var(--color-primary-foreground); border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }

/* ==========================================================================
   Side cart drawer + overlay
   ========================================================================== */

#theme-cart-overlay { position: fixed; inset: 0; z-index: 95; background: color-mix(in srgb, var(--color-foreground) 20%, transparent); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }

#theme-cart-drawer { position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem; background: var(--color-background); z-index: 96; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s var(--transition-smooth); }
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 var(--color-border); }
.theme-cart-drawer-header h2 { font-size: 1.125rem; }
.theme-cart-drawer-close { padding: 0.25rem; opacity: 0.6; }
.theme-cart-drawer-close:hover { opacity: 1; }
.theme-cart-drawer-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 1rem; }
.theme-cart-drawer-empty svg { color: var(--color-muted-foreground); }
.theme-cart-drawer-items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-line-item { display: flex; gap: 1rem; }
.theme-cart-line-thumb { width: 5rem; height: 6rem; background: var(--color-secondary); overflow: hidden; flex-shrink: 0; }
.theme-cart-line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-line-info { flex: 1; min-width: 0; }
.theme-cart-line-name { font-size: 0.875rem; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-line-name:hover { opacity: 0.7; }
.theme-cart-line-price { font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.125rem; }
.theme-cart-line-variation { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.theme-cart-line-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-qty-btn { padding: 0.25rem; border-radius: 0.25rem; }
.theme-cart-qty-btn:hover { background: var(--color-secondary); }
.theme-cart-qty-value { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-remove { margin-left: auto; font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-cart-remove:hover { color: var(--color-foreground); }

.theme-cart-recommendations { padding: 1rem 1.5rem 0.5rem; border-top: 1px solid var(--color-border); }
.theme-cart-recommendations-label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 0.75rem; }
.theme-cart-recommendations-list { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-cart-recommendation { display: flex; align-items: center; gap: 0.75rem; }
.theme-cart-rec-thumb { width: 3.5rem; height: 3.5rem; background: var(--color-secondary); overflow: hidden; flex-shrink: 0; border-radius: 0.375rem; }
.theme-cart-rec-thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-rec-info { flex: 1; min-width: 0; }
.theme-cart-rec-info a { font-size: 0.875rem; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-rec-info p { font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-rec-add.add_to_cart_button { display: inline-flex !important; align-items: center; gap: 0.25rem; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase !important; border: 1px solid var(--color-border); padding: 0.5rem 0.75rem; border-radius: var(--btn-radius); background: transparent !important; color: var(--color-foreground) !important; }
.theme-cart-rec-add.add_to_cart_button:hover { background: var(--color-primary) !important; color: var(--color-primary-foreground) !important; border-color: var(--color-primary) !important; }

.theme-cart-drawer-footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-subtotal-row { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-subtotal-row span:last-child { font-weight: 500; }
.theme-cart-shipping-note { font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-cart-checkout-btn { display: flex; }
.theme-cart-empty-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.875rem; }

/* Hide WooCommerce's injected "View cart" link everywhere */
.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; }

/* ==========================================================================
   Single product page
   ========================================================================== */

.single-product-main { padding-top: 1.5rem; }
@media (min-width: 1024px) { .single-product-main { padding-top: 2rem; } }
.product-breadcrumb { padding: 1.5rem 0; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); font-family: var(--font-body); overflow-wrap: break-word; }
.product-breadcrumb a:hover { color: var(--color-foreground); }
.product-breadcrumb-sep { margin: 0 0.5rem; opacity: 0.5; }
.product-breadcrumb-current { color: var(--color-foreground); }

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

.theme-product-gallery { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-gallery { position: sticky; top: 7rem; } }
.theme-product-main-image-wrap { position: relative; aspect-ratio: 1 / 1; background: var(--color-secondary); overflow: hidden; }
.theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; max-width: 100%; overflow-x: auto; }
.theme-product-thumb { position: relative; width: 5rem; height: 5rem; flex-shrink: 0; overflow: hidden; background: var(--color-secondary); }
.theme-product-thumb img { opacity: 0.6; transition: opacity 0.2s ease; }
.theme-product-thumb:hover img, .theme-product-thumb.is-active img { opacity: 1; }
.theme-product-thumb::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--color-foreground); opacity: 0; transition: opacity 0.2s ease; }
.theme-product-thumb.is-active::after { opacity: 1; }

.theme-product-info { min-width: 0; max-width: 100%; }
.product-category-label { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-muted-foreground); font-family: var(--font-body); }
.product-title { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; line-height: 1.1; margin-top: 0.75rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title { font-size: 2.75rem; } }
.product-price { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.product-price ins { text-decoration: none; }
.product-stock-status { margin-bottom: 1rem; font-size: 0.875rem; font-weight: 600; }
.product-stock-status.is-out-of-stock { color: var(--color-muted-foreground); }
.product-synopsis { color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 2rem; font-size: 1rem; overflow-wrap: break-word; }

.theme-quantity-label { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; font-family: var(--font-body); color: var(--color-muted-foreground); margin-bottom: 0.75rem; }
.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--btn-radius); overflow: hidden; }
.theme-qty-minus, .theme-qty-plus { padding: 0.5rem 0.75rem; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input { width: 3.5rem; text-align: center; border: none; background: transparent; appearance: textfield; -moz-appearance: textfield; padding: 0.5rem 0; }
.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-bottom: 0.5rem; }
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

.theme-product-accordions { margin-top: 2.5rem; border-top: 1px solid var(--color-border); }
.theme-accordion { border-bottom: 1px solid var(--color-border); }
.theme-accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; }
.theme-accordion-trigger span { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; font-family: var(--font-body); }
.theme-accordion-trigger svg { transition: transform 0.3s ease; }
.theme-accordion.is-open .theme-accordion-trigger svg { transform: rotate(180deg); }
.theme-accordion-panel { padding-bottom: 1.5rem; font-family: var(--font-body); }
.theme-accordion-panel[hidden] { display: none; }
.theme-accordion-description { font-size: 15px; color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 1rem; overflow-wrap: break-word; }
.theme-accordion-panel ul { display: flex; flex-direction: column; gap: 0.5rem; }
.theme-accordion-panel li { font-size: 15px; color: var(--color-muted-foreground); display: flex; align-items: flex-start; padding-left: 1rem; position: relative; }
.theme-accordion-panel li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 4px; height: 4px; border-radius: 999px; background: var(--color-foreground); }
.theme-accordion-panel p { margin-bottom: 0.75rem; }

.related-products-section { padding: 5rem 0; border-top: 1px solid var(--color-border); }
.related-products-heading { text-align: center; margin-bottom: 3rem; }
.related-products-kicker { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--color-muted-foreground); margin-bottom: 0.5rem; }
.related-products-heading h2 { font-size: 1.875rem; }
@media (min-width: 768px) { .related-products-heading h2 { font-size: 2.25rem; } }

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

/* ==========================================================================
   Shop archive page (real WC category / tag archives)
   ========================================================================== */

.shop-archive-main { padding: 2.5rem 0 5rem; }
.shop-archive-header { text-align: center; margin-bottom: 2.5rem; }
.shop-archive-header h1 { font-size: 2.25rem; margin-top: 0.5rem; }
.shop-archive-pagination { margin-top: 3rem; text-align: center; }
.shop-archive-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; margin: 0 0.25rem; border-radius: var(--btn-radius); border: 1px solid var(--color-border); }
.shop-archive-pagination .page-numbers.current { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.shop-archive-empty { text-align: center; padding: 5rem 0; color: var(--color-muted-foreground); }

/* ==========================================================================
   WooCommerce global button overrides (Section 11.4.1)
   ========================================================================== */

.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-accent) !important;
	color: var(--color-accent-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-accent) !important;
	color: var(--color-accent-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-accent) !important;
}

/* Card compact button — overrides the globals above (Section 11.4.1) */
.theme-product-card .add_to_cart_button.ajax_add_to_cart,
.theme-cart-rec-add.add_to_cart_button {
	min-height: unset !important;
}

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

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

/* Variation attribute table layout */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody tr { margin-bottom: 1.5rem; }
.single-product .variations tbody td.label { padding-bottom: 0.75rem; }
.single-product .variations tbody td.value { padding-top: 0; }
.single-product .variations .label label {
	font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
	font-family: var(--font-body); color: var(--color-muted-foreground); font-weight: 400;
}
.theme-attr-select-hidden { display: none !important; }
.theme-variation-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.25rem; }
.theme-variation-pill {
	padding: 0.5rem 1rem; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
	font-family: var(--font-body); border: 1px solid var(--color-border); border-radius: var(--btn-radius);
	background: transparent; color: var(--color-foreground); transition: all 0.2s ease;
}
.theme-variation-pill:hover { border-color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-variation-pill.is-active {
	background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground);
}
.single-product .reset_variations {
	display: inline-block; margin-top: 0.75rem; font-size: 12px; font-family: var(--font-body);
	color: var(--color-muted-foreground); text-decoration: underline;
}
.single-product .reset_variations:hover { color: var(--color-foreground); }

/* ==========================================================================
   Checkout / Cart / My Account (WooCommerce Blocks)
   ========================================================================== */

.generic-page-main { padding: 2.5rem 0 5rem; }
.page-title { font-size: 2rem; margin-bottom: 2rem; }

body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main {
	padding-top: 2rem;
	padding-bottom: 4rem;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-text-input input[type="text"],
body.woocommerce-checkout .wc-block-components-text-input input[type="email"],
body.woocommerce-checkout .wc-block-components-text-input input[type="tel"],
body.woocommerce-checkout .wc-block-components-text-input input[type="number"],
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-textarea textarea,
body.woocommerce-checkout .woocommerce-input-wrapper input,
body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row textarea,
body.woocommerce-checkout .wp-block-woocommerce-checkout select,
body.woocommerce-checkout .wc-block-checkout select,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout select.wc-block-components-select__select,
body.woocommerce-checkout .wc-block-components-select .wc-block-components-select__select,
body.woocommerce-checkout .woocommerce-input-wrapper select,
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout #order_review select,
body.woocommerce-checkout .woocommerce-billing-fields select,
body.woocommerce-checkout .woocommerce-shipping-fields select {
	font-family: var(--font-body) !important;
	font-size: 1rem !important;
	border: 1px solid var(--color-border) !important;
	border-radius: var(--btn-radius) !important;
	background: var(--color-background) !important;
	background-color: var(--color-background) !important;
	color: var(--color-foreground) !important;
	box-shadow: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	line-height: 1.5 !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus,
body.woocommerce-checkout .woocommerce-input-wrapper input:focus,
body.woocommerce-checkout .form-row input.input-text:focus,
body.woocommerce-checkout .form-row textarea:focus,
body.woocommerce-checkout .wp-block-woocommerce-checkout select:focus,
body.woocommerce-checkout .wc-block-checkout select:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout select.wc-block-components-select__select:focus,
body.woocommerce-checkout .woocommerce-input-wrapper select:focus,
body.woocommerce-checkout .form-row select:focus {
	outline: none !important;
	box-shadow: 0 0 0 1px var(--color-primary) !important;
	border-color: var(--color-primary) !important;
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-components-textarea textarea::placeholder,
body.woocommerce-checkout .form-row input.input-text::placeholder,
body.woocommerce-checkout .form-row textarea::placeholder {
	color: var(--color-muted-foreground) !important;
	opacity: 1 !important;
}
body.woocommerce-checkout .wc-block-components-select,
body.woocommerce-checkout .wc-block-components-select .wc-block-components-select__container {
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
}
body.woocommerce-checkout .wp-block-woocommerce-checkout select,
body.woocommerce-checkout .wc-block-checkout select,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout select.wc-block-components-select__select,
body.woocommerce-checkout .woocommerce-input-wrapper select,
body.woocommerce-checkout .form-row select {
	cursor: pointer !important;
}
/* Classic checkout Select2 dropdowns */
body.woocommerce-checkout .select2-container--default .select2-selection--single {
	font-family: var(--font-body) !important;
	font-size: 1rem !important;
	border: 1px solid var(--color-border) !important;
	border-radius: var(--btn-radius) !important;
	background: var(--color-background) !important;
	color: var(--color-foreground) !important;
	box-shadow: none !important;
	height: auto !important;
	min-height: 3rem !important;
}
body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--color-foreground) !important;
	line-height: 1.5 !important;
}
body.woocommerce-checkout .select2-container--default.select2-container--open .select2-selection--single,
body.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection--single {
	border-color: var(--color-primary) !important;
	box-shadow: 0 0 0 1px var(--color-primary) !important;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: var(--color-accent) !important;
	color: var(--color-accent-foreground) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }

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

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-checkout { 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.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__sidebar {
	background-color: var(--color-card);
	border-radius: var(--card-radius);
	padding: var(--section-padding);
}

body.woocommerce-cart .wp-block-woocommerce-cart {
	font-family: var(--font-body);
}
@media (min-width: 768px) {
	body.woocommerce-cart .wc-block-cart .wc-block-components-sidebar-layout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}
body.woocommerce-cart .wc-block-cart-item__image img,
body.woocommerce-cart .wc-block-components-product-image img { border-radius: var(--btn-radius); }

/* ==========================================================================
   Thank-you page
   ========================================================================== */

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 { font-size: 1.5rem; padding: 0 0 1rem 0; }
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-overview li { font-size: 0.875rem; }
body.theme-thankyou-page .woocommerce-order-overview li strong { display: block; margin-top: 0.25rem; }
body.theme-thankyou-page .woocommerce-order-details table { margin: 1.5rem 0; 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;
	font-style: normal;
}

/* ==========================================================================
   404
   ========================================================================== */

.theme-404-main { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--color-muted); }
.theme-404-inner { text-align: center; padding: 2rem 0; }
.theme-404-code { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.theme-404-heading { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-404-link { color: var(--color-primary); text-decoration: underline; font-family: var(--font-body); }
.theme-404-link:hover { color: color-mix(in srgb, var(--color-primary) 90%, transparent); }
