:root {
  /* Brand palette: pink + white. --orange/--lime kept as variable names (used in ~90 places)
     but repointed to the pink family: --orange is the deep accent pink (text/fills needing
     contrast), --lime is the pale brand pink #ffd2d5 (washes, fills paired with dark text). */
  --ink: #11120f;
  --text: #11120f;
  --muted: #72736b;
  --paper: #ffffff;
  --surface: #ffffff;
  --emphasis: var(--ink);
  --emphasis-text: #ffffff;
  --tint-weak: rgba(17, 18, 15, .06);
  --tint: rgba(17, 18, 15, .08);
  --shimmer: #ece9df;
  --orange: #cc3355;
  --lime: #ffd2d5;
  --line: rgba(17, 18, 15, .16);
  --status-good: #0ca30c;
  --status-warning: #fab219;
  --status-critical: #d03b3b;
  --display: "Arial Black", "Trebuchet MS", sans-serif;
  --body: Arial, sans-serif;
  color-scheme: light;
}

/* Dark mode: --ink stays a constant near-black (used for self-contained dark sections —
   hero, footer, tooltips, chat bubbles, avatars — that are meant to look the same in both
   themes). Everything that needs to flip for contrast against the page goes through --text/
   --paper/--surface/--emphasis instead, which is why those are separate tokens from --ink. */
:root[data-theme="dark"] {
  --text: #f2f1ed;
  --muted: #a6a59d;
  --paper: #121212;
  --surface: #1c1c1e;
  --emphasis: #f2f1ed;
  --emphasis-text: #16161a;
  --tint-weak: rgba(255, 255, 255, .08);
  --tint: rgba(255, 255, 255, .12);
  --shimmer: #2a2a2d;
  --line: rgba(255, 255, 255, .14);
  color-scheme: dark;
}
:root[data-theme="dark"] .status-completed { color: #8bc24a; }
:root[data-theme="dark"] .stock-low { color: #ffc857; }

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--text); font-family: var(--body); line-height: 1.5; transition: background .2s ease, color .2s ease; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.section-shell { width: min(100% - 48px, 1180px); margin: 0 auto; }
.site-header { position: relative; z-index: 40; display: flex; align-items: center; min-height: 82px; gap: 28px; padding: 0 clamp(24px, 5vw, 72px); border-bottom: 1px solid var(--line); background: var(--surface); color: var(--text); transition: background .2s ease, color .2s ease, border-color .2s ease; }
.theme-toggle { display: flex; flex: none; align-items: center; justify-content: center; width: 40px; height: 40px; margin-left: 10px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--text); cursor: pointer; transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.theme-toggle:hover { border-color: var(--text); transform: translateY(-2px); }
.theme-toggle svg { width: 18px; height: 18px; }
:root:not([data-theme="dark"]) body:not(:has(.ai-page)) .site-header .theme-toggle,
:root:not([data-theme="dark"]) body:has(.ai-page) .site-header .theme-toggle { color: var(--ink) !important; }
.theme-toggle .theme-toggle-moon { display: block; }
.theme-toggle .theme-toggle-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .theme-toggle-sun { display: block !important; }
:root[data-theme="dark"] .theme-toggle .theme-toggle-moon { display: none !important; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 21px; letter-spacing: -.075em; white-space: nowrap; }
.brand-image { width: 180px; height: 64px; overflow: hidden; }
.brand-image img { display: block; width: 180px; height: 64px; object-fit: cover; object-position: center; }
.brand-image .brand-logo-dark { display: none; }
:root[data-theme="dark"] .brand-image .brand-logo-dark { display: block; }
:root[data-theme="dark"] .brand-image .brand-logo-light { display: none; }
.brand-name { color: #fff; }
.brand-number { color: var(--lime); }
.brand-mark { position: relative; display: inline-block; width: 19px; height: 19px; transform: rotate(45deg); }
.brand-mark::before, .brand-mark::after { position: absolute; display: block; border-radius: 999px; background: var(--lime); content: ""; }
.brand-mark::before { top: 0; left: 7px; width: 5px; height: 19px; }
.brand-mark::after { top: 7px; left: 0; width: 19px; height: 5px; }
.site-nav { display: flex; align-items: center; margin-left: auto; gap: 8px; font-size: 14px; font-weight: 700; }
.site-nav a { padding: 11px 20px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--text); box-shadow: 0 4px 0 rgba(17, 18, 15, .1); transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s cubic-bezier(.22, .8, .25, 1), transform .18s cubic-bezier(.22, .8, .25, 1); }
.site-nav a::after { display: none; }
.site-nav a:focus-visible { background: var(--emphasis); border-color: var(--emphasis); color: var(--emphasis-text); outline: 2px solid var(--emphasis); outline-offset: 3px; }
.site-nav a:active { transform: translateY(2px); box-shadow: 0 1px 0 rgba(17, 18, 15, .1); transition-duration: .1s; }
.nav-search-toggle { display: grid; flex: none; place-items: center; width: 42px; height: 42px; margin-left: 4px; padding: 0; border: 1px solid rgba(255, 255, 255, .28); border-radius: 50%; background: rgba(255, 255, 255, .1); color: var(--text); font: inherit; font-weight: 700; cursor: pointer; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24), 0 8px 20px rgba(17, 18, 15, .12); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.nav-search-toggle svg { display: block; width: 18px; height: 18px; }
.nav-search-toggle:hover, .nav-search-toggle:focus-visible { border-color: var(--lime); background: rgba(255, 210, 213, .72); color: var(--ink); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 10px 24px rgba(204, 51, 85, .16); transform: translateY(-2px); outline: none; }
.nav-search-popover { position: absolute; z-index: 80; top: calc(100% + 12px); right: clamp(24px, 5vw, 72px); width: min(380px, calc(100vw - 36px)); padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); color: var(--text); box-shadow: 0 18px 42px rgba(17, 18, 15, .2); }
.nav-search-form { display: flex; align-items: center; gap: 8px; padding: 5px 5px 5px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }
.nav-search-form input { min-width: 0; flex: 1; padding: 8px 0; border: 0; outline: 0; background: transparent; color: var(--text); font: inherit; font-size: 13px; }
.nav-search-submit { display: grid; place-items: center; width: 32px; height: 32px; border: 0; border-radius: 50%; background: var(--emphasis); color: var(--emphasis-text); cursor: pointer; }
.nav-search-submit:hover { background: var(--orange); color: #fff; }
.nav-search-status { margin: 9px 4px 2px; color: var(--muted); font-size: 10px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.login-link { padding: 13px 24px; border: 1px solid var(--lime); border-radius: 999px; background: var(--lime); color: var(--ink); font-size: 14px; font-weight: 700; box-shadow: 0 5px 0 rgba(17, 18, 15, .13); transition: color .22s cubic-bezier(.22, .8, .25, 1), background .22s cubic-bezier(.22, .8, .25, 1), border-color .22s cubic-bezier(.22, .8, .25, 1), transform .22s cubic-bezier(.22, .8, .25, 1), box-shadow .22s cubic-bezier(.22, .8, .25, 1); }
.login-link:focus-visible { border-color: var(--emphasis); background: var(--emphasis); color: var(--emphasis-text); outline: none; }
.login-link:active { filter: brightness(.92); transition-duration: .1s; }
.cart-toggle { position: relative; display: grid; flex: none; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255, 255, 255, .28); border-radius: 50%; background: rgba(255, 255, 255, .1); color: var(--text); font: inherit; font-size: 14px; font-weight: 700; cursor: pointer; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24), 0 8px 20px rgba(17, 18, 15, .12); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.cart-toggle:hover, .cart-toggle:focus-visible { border-color: var(--lime); background: rgba(255, 210, 213, .72); color: var(--ink); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 10px 24px rgba(204, 51, 85, .16); transform: translateY(-2px); outline: none; }
.cart-toggle .cart-count { position: absolute; top: -4px; right: -4px; margin-left: 0; }
.cart-icon { width: 20px; height: 20px; flex: none; }
.cart-link-label { display: inline-flex; align-items: center; gap: 10px; }
.cart-count { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; margin-left: 6px; padding: 0 5px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: 10px; font-weight: 700; vertical-align: middle; }
.mobile-cart-link { display: none; }
.cart-hover-wrap { position: relative; }
.cart-preview { position: absolute; z-index: 60; top: 100%; right: 0; width: 300px; padding: 18px; display: flex; flex-direction: column; gap: 14px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); box-shadow: 0 18px 40px rgba(17, 18, 15, .16); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s; }
.cart-preview-body { display: flex; flex-direction: column; gap: 12px; max-height: 280px; overflow-y: auto; }
.cart-preview-link { padding-top: 12px; border-top: 1px solid var(--line); }
@media (hover: hover) and (pointer: fine) {
  .cart-hover-wrap:hover .cart-preview, .cart-hover-wrap:focus-within .cart-preview { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s; }
}
@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover { background: var(--emphasis); border-color: var(--emphasis); color: var(--emphasis-text); transform: translateY(-2px); box-shadow: 0 6px 0 rgba(17, 18, 15, .1); }
  .login-link:hover { border-color: var(--emphasis); background: var(--emphasis); color: var(--emphasis-text); transform: translateY(-3px); box-shadow: 0 7px 0 rgba(17, 18, 15, .18); }
}
.footer-columns a:hover, .footer-bottom a:hover { color: var(--lime); }
.menu-backdrop { position: fixed; z-index: 20; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(17, 18, 15, .42); cursor: default; }
.menu-open { overflow: hidden; }
.cart-drawer { position: fixed; z-index: 50; top: 0; right: 0; bottom: 0; display: flex; flex-direction: column; width: min(92vw, 400px); background: var(--surface); box-shadow: -18px 0 45px rgba(17, 18, 15, .16); transform: translateX(105%); visibility: hidden; transition: transform .35s cubic-bezier(.22, .8, .25, 1), visibility 0s linear .35s; }
.cart-drawer.is-open { transform: translateX(0); visibility: visible; transition-delay: 0s; }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--line); }
.cart-drawer .nav-close { display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: var(--tint-weak); color: var(--text); font-size: 18px; line-height: 1; cursor: pointer; transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease; }
.cart-drawer .nav-close:hover, .cart-drawer .nav-close:focus-visible { border-color: var(--orange); background: var(--lime); color: var(--ink); transform: rotate(90deg); outline: none; }
.cart-drawer-head h2 { margin: 0; font-size: 21px; }
.cart-drawer-body { flex: 1 1 auto; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 16px; }
.cart-drawer-footer { padding: 20px 24px; border-top: 1px solid var(--line); }
.cart-drawer-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; font-weight: 700; }
.cart-drawer-total strong { font-family: var(--display); font-size: 20px; }
.cart-line { display: flex; gap: 12px; }
.cart-line-media { flex: 0 0 auto; width: 64px; height: 64px; border-radius: 10px; overflow: hidden; background: var(--paper); }
.cart-line-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.cart-line-body { flex: 1 1 auto; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cart-line-body h4 { margin: 0; font-size: 13px; font-weight: 700; }
.cart-line-body span { color: var(--muted); font-size: 12px; }
.cart-line-controls { display: flex; align-items: center; gap: 12px; margin-top: 2px; }
.cart-qty { display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 2px 6px; }
.cart-qty button { width: 22px; height: 22px; border-radius: 50%; border: 0; background: transparent; color: var(--text); font-weight: 700; cursor: pointer; transition: background .18s ease; }
.cart-qty button:hover { background: var(--paper); }
.cart-line-remove { padding: 0; border: 0; background: none; color: var(--muted); font-size: 11px; text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.cart-line-remove:hover { color: var(--orange); }
.cart-empty { padding: 40px 0; color: var(--muted); font-size: 13px; text-align: center; }
@media (max-width: 480px) { .cart-drawer { width: 100vw; } }
.button span { font-size: 18px; font-weight: 400; line-height: 1; }
.menu-toggle { display: none; margin-left: auto; border: 0; background: transparent; color: var(--text); font-size: 12px; font-weight: 700; }
.nav-close { display: none; }

.hero-slideshow { position: relative; min-height: 620px; overflow: hidden; background: var(--ink); }
.hero-slides { position: relative; width: 100%; height: 100%; min-height: inherit; }
.hero-slide { position: absolute; inset: 0; display: block; opacity: 0; visibility: hidden; transition: opacity .6s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide picture { position: absolute; inset: 0; display: block; }
.hero-slide img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-slide-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(17, 18, 15, .8) 0%, rgba(17, 18, 15, .28) 45%, rgba(17, 18, 15, 0) 72%); }
.hero-slide-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 32px clamp(24px, 5vw, 72px) 78px; color: #fff; }
.hero-slide-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.hero-slide-badge { display: inline-block; padding: 5px 12px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.hero-slide-badge-outline { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .5); color: #fff; }
.hero-slide-title { max-width: 640px; margin: 0 0 12px; font-family: var(--display); font-size: clamp(28px, 4vw, 48px); letter-spacing: -.03em; line-height: 1.05; color: #fff; text-shadow: 0 3px 24px rgba(0, 0, 0, .4); }
.hero-slide-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 14px; font-size: 14px; font-weight: 700; }
.hero-slide-meta-price { color: var(--lime); font-size: 17px; }
.hero-slide-meta-price-compare { color: rgba(255, 255, 255, .62); font-size: 12px; font-weight: 500; }
.hero-slide-meta-discount { padding: 3px 7px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: 10px; font-weight: 800; }
.hero-slide-meta-dot { color: rgba(255, 255, 255, .4); }
.hero-slide-meta-stock { text-transform: uppercase; font-size: 11px; letter-spacing: .04em; }
.hero-slide-meta-stock.is-ok { color: rgba(255, 255, 255, .7); }
.hero-slide-meta-stock.is-low { color: #ffb955; }
.hero-slide-meta-stock.is-out { color: #ff8f8f; }
.hero-slide-meta-brand { color: rgba(255, 255, 255, .7); font-weight: 400; }
.hero-slide-desc { max-width: 540px; margin: 0 0 24px; color: rgba(255, 255, 255, .8); font-size: 14px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-slide-actions { display: flex; align-items: center; gap: 12px; }
.hero-slide-quickadd { display: flex; flex: none; align-items: center; justify-content: center; width: 52px; height: 52px; padding: 0; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; background: rgba(255, 255, 255, .08); color: #fff; cursor: pointer; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease; }
.hero-slide-quickadd svg { width: 20px; height: 20px; }
.hero-slide-quickadd:hover { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.hero-slide-quickadd.is-added { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.hero-slide-quickadd:disabled { opacity: .4; cursor: not-allowed; }
.hero-slide-actions .hero-slide-cta { background: rgba(255, 255, 255, .14); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, .4); color: #fff; transition: background .18s ease, border-color .18s ease, transform .18s ease; }
.hero-slide-actions .hero-slide-cta:hover { background: rgba(255, 255, 255, .22); border-color: rgba(255, 255, 255, .7); transform: translateY(-1px); }
.hero-slide-actions .hero-slide-cta span { display: inline-block; transition: transform .18s ease; }
.hero-slide-actions .hero-slide-cta:hover span { transform: translateX(4px); }
@keyframes heroContentIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero-slide.is-active .hero-slide-info > * { animation: heroContentIn .5s cubic-bezier(.22, .8, .25, 1) both; }
.hero-slide.is-active .hero-slide-info > *:nth-child(2) { animation-delay: .05s; }
.hero-slide.is-active .hero-slide-info > *:nth-child(3) { animation-delay: .1s; }
.hero-slide.is-active .hero-slide-info > *:nth-child(4) { animation-delay: .15s; }
.hero-slide.is-active .hero-slide-info > *:nth-child(5) { animation-delay: .2s; }
@media (prefers-reduced-motion: reduce) { .hero-slide.is-active .hero-slide-info > * { animation: none; } }
.hero-arrow { position: absolute; top: 50%; z-index: 3; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, .4); border-radius: 50%; background: rgba(17, 18, 15, .35); color: #fff; font-size: 20px; line-height: 1; cursor: pointer; transform: translateY(-50%); transition: background .18s ease, border-color .18s ease; }
.hero-arrow:hover { background: rgba(17, 18, 15, .6); border-color: #fff; }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }
.hero-progress { position: absolute; left: clamp(24px, 5vw, 72px); bottom: 32px; z-index: 3; display: flex; align-items: center; width: 200px; gap: 6px; padding: 8px 10px; border-radius: 999px; background: rgba(17, 18, 15, .45); box-shadow: 0 4px 14px rgba(0, 0, 0, .25); }
.hero-progress-seg { flex: 1; height: 5px; padding: 0; border: 0; border-radius: 999px; background: rgba(255, 255, 255, .45); overflow: hidden; cursor: pointer; }
.hero-progress-fill { display: block; width: 100%; height: 100%; border-radius: 999px; background: var(--lime); transform: scaleX(0); transform-origin: left center; will-change: transform; transition-property: transform; transition-timing-function: linear; transition-duration: 0s; }
.hero-intro-band { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; padding: 64px 0; }
.intro-visual { border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 3; }
.intro-visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.intro-copy .hero-intro { margin-bottom: 26px; }
.eyebrow { margin: 0 0 18px; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, strong { font-family: var(--display); }
h1, h2, p { margin-top: 0; }
h1 { max-width: 570px; margin-bottom: 25px; font-size: clamp(58px, 8vw, 102px); letter-spacing: -.1em; line-height: .89; }
h1 em, h2 em { color: var(--orange); font-style: normal; }
.hero-intro { max-width: 420px; margin-bottom: 31px; color: var(--muted); font-size: 17px; }
.button { display: inline-flex; align-items: center; gap: 22px; padding: 15px 18px 15px 22px; border-radius: 99px; font-size: 13px; font-weight: 700; }
.button-dark { background: var(--emphasis); color: var(--emphasis-text); }
.button-dark:hover { background: var(--orange); }
.button:disabled { opacity: .55; cursor: not-allowed; pointer-events: none; }

.shop-section { padding-top: 110px; padding-bottom: 120px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 42px; }
h2 { max-width: 620px; margin-bottom: 0; font-size: clamp(42px, 6vw, 70px); letter-spacing: -.1em; line-height: .9; }
.section-note { max-width: 270px; margin-bottom: 3px; color: var(--muted); font-size: 13px; }
.shop-categories { display: flex; flex-direction: column; gap: 58px; }
.category-rail-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.category-rail-heading h3 { margin: 0; font-family: var(--display); font-size: clamp(20px, 2.6vw, 26px); letter-spacing: -.03em; }
.category-rail-heading p { max-width: 320px; margin: 0; color: var(--muted); font-size: 12.5px; }
.shop-rail-wrap { position: relative; display: flex; align-items: center; gap: 12px; }
.rail-arrow { flex: 0 0 auto; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--text); font-size: 22px; line-height: 1; cursor: pointer; transition: border-color .18s ease, background .18s ease, color .18s ease, opacity .18s ease, transform .15s ease; }
.rail-arrow:hover { border-color: var(--emphasis); background: var(--emphasis); color: var(--emphasis-text); }
.rail-arrow:active { transform: scale(.92); }
.rail-arrow:disabled { opacity: .3; cursor: default; pointer-events: none; }
.shop-rail { display: flex; flex: 1 1 auto; gap: 16px; padding: 4px 4px 18px; overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth; cursor: grab; scrollbar-width: none; -ms-overflow-style: none; }
.shop-rail::-webkit-scrollbar { display: none; }
.shop-rail.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.shop-rail-status { flex: 1 1 auto; margin: 40px 0; color: var(--muted); font-size: 13px; text-align: center; }
.product-card { flex: 0 0 auto; width: min(78vw, 280px); scroll-snap-align: start; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease; }
.product-card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper); }
.product-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .4s cubic-bezier(.22, .8, .25, 1); pointer-events: none; }
.product-card-badge { position: absolute; top: 12px; left: 12px; padding: 5px 10px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.product-card-body { display: flex; flex: 1 1 auto; flex-direction: column; gap: 6px; padding: 18px; }
.product-card-body h3 { margin: 0; font-family: var(--display); font-size: 18px; letter-spacing: -.03em; line-height: 1.15; }
.product-card-summary { flex: 1 1 auto; margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.5; }
.product-card-footer { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 4px; padding-top: 12px; border-top: 1px solid var(--line); }
.product-card-price { font-size: 15px; font-weight: 700; color: var(--text); }
.price-stack { display: inline-flex; flex-wrap: wrap; align-items: baseline; gap: 4px 8px; }
.price-current { font-weight: 800; }
.price-compare { color: var(--muted); font-size: .78em; font-weight: 500; text-decoration-thickness: 1px; }
.price-discount { display: inline-flex; align-items: center; padding: 3px 6px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .03em; }
.showcase-card-meta .price-current { color: var(--orange); font-size: 15px; }
.product-detail-price .price-stack { gap: 6px 10px; }
.product-detail-price .price-current { font-size: inherit; }
.product-detail-price .price-compare { font-size: 14px; }
.product-detail-price .price-discount { font-size: 11px; }
.product-card-stock { font-size: 11px; font-weight: 700; color: var(--muted); }
.product-card-stock.is-low { color: var(--orange); }
.product-card.is-skeleton .product-card-media { background: linear-gradient(90deg, var(--surface) 25%, var(--shimmer) 37%, var(--surface) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; }
.skeleton-bar { height: 10px; border-radius: 6px; background: var(--line); }
.skeleton-bar.w-60 { width: 60%; }
.skeleton-bar.w-40 { width: 40%; }
.skeleton-bar.heading { width: 160px; height: 18px; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }
@media (hover: hover) and (pointer: fine) {
  .product-card:hover { border-color: var(--text); box-shadow: 8px 8px 0 var(--lime); transform: translateY(-4px); }
  .product-card:hover .product-card-media img { transform: scale(1.06); }
}
.product-main { padding: clamp(40px, 6vw, 72px) 0 100px; }
.product-status { padding: 80px 0; color: var(--muted); text-align: center; }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.product-detail-sections { display: block; margin-top: 56px; }
.product-detail-sections .product-detail-section { margin-top: 0; }
.product-detail-media { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 14px; }
.product-detail-image-frame { aspect-ratio: 1 / 1; border-radius: 20px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); }
.product-detail-image-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.product-detail-thumbs { display: flex; flex-wrap: wrap; gap: 10px; }
.product-detail-thumbs[hidden] { display: none; }
.product-thumb { width: 64px; height: 64px; padding: 0; border: 2px solid transparent; border-radius: 10px; overflow: hidden; background: var(--paper); cursor: pointer; opacity: .6; transition: opacity .18s ease, border-color .18s ease; }
.product-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.product-thumb:hover { opacity: 1; }
.product-thumb.is-active { opacity: 1; border-color: var(--orange); }
.product-detail-info h1 { margin: 8px 0 12px; font-size: clamp(30px, 4vw, 46px); letter-spacing: -.03em; }
.product-detail-price { margin: 0 0 6px; font-family: var(--display); font-size: 26px; }
.product-detail-stock { margin: 0 0 18px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.product-detail-stock.is-low, .product-detail-stock.is-out { color: var(--orange); }
.product-detail-summary { margin: 0 0 26px; color: var(--muted); font-size: 15px; }
.product-detail-qty { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.product-detail-qty label { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.product-detail-section { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.product-detail-section h2 { margin-bottom: 14px; font-size: 15px; }
.product-detail-section p { margin: 0; color: var(--text); font-size: 14px; line-height: 1.6; }
.product-detail-specs dl { display: grid; grid-template-columns: max-content 1fr; gap: 8px 20px; margin: 0; font-size: 13px; }
.product-detail-specs dt { color: var(--muted); font-weight: 700; text-transform: capitalize; }
.product-detail-specs dd { margin: 0; }
.product-detail-section ul { margin: 0; padding-left: 18px; color: var(--text); font-size: 13px; line-height: 1.8; }
.testimonial-carousel { display: flex; flex-direction: column; gap: 14px; }
.testimonial-stack { position: relative; aspect-ratio: 4 / 3; }
.testimonial-slide { position: absolute; inset: 0; z-index: 0; opacity: 0; pointer-events: none; transform-origin: top left; transform: translate(60px, 60px) scale(.88); transition: transform .45s cubic-bezier(.22, .8, .25, 1), opacity .3s ease, z-index 0s .45s; }
.testimonial-slide.is-stack-2 { z-index: 1; opacity: .75; transform: translate(41px, 41px) scale(.92); transition-delay: 0s; }
.testimonial-slide.is-stack-1 { z-index: 2; opacity: .92; transform: translate(22px, 22px) scale(.96); transition-delay: 0s; }
.testimonial-slide.is-active { z-index: 3; opacity: 1; transform: translate(0, 0) scale(1); pointer-events: auto; transition-delay: 0s; }
.testimonial-video-frame { position: relative; width: 100%; height: 100%; border-radius: 16px; overflow: hidden; background: var(--ink); box-shadow: 0 8px 20px rgba(17, 18, 15, .18); }
.testimonial-video { display: block; width: 100%; height: 100%; object-fit: cover; background: var(--ink); }
.testimonial-written-frame { display: flex; align-items: flex-start; width: 100%; height: 100%; overflow-y: auto; padding: 30px; border-radius: 16px; background: var(--ink); color: #fff; box-shadow: 0 8px 20px rgba(17, 18, 15, .18); scrollbar-width: thin; }
.testimonial-written-quote { width: 100%; margin: 0; font-size: clamp(16px, 1.55vw, 24px); line-height: 1.3; font-style: italic; overflow-wrap: anywhere; }
.testimonial-type-field { min-width: 0; margin: 0 0 20px; padding: 0; border: 0; }
.testimonial-type-field legend { margin-bottom: 10px; font-size: 12px; font-weight: 700; }
.testimonial-type-options { display: flex; flex-wrap: wrap; gap: 18px; }
.testimonial-table-quote { max-width: 160px; color: var(--muted); font-size: 11px; line-height: 1.35; }
.testimonial-video-preview span { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--muted); font-size: 11px; font-weight: 700; }
.testimonial-meta { margin-top: 14px; }
.testimonial-quote { margin: 0 0 8px; color: var(--text); font-size: 14px; line-height: 1.6; font-style: italic; }
.testimonial-quote::before { content: "\201C"; }
.testimonial-quote::after { content: "\201D"; }
.testimonial-client { margin: 0; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-controls .rail-arrow { width: 36px; height: 36px; font-size: 18px; }
.testimonial-dots { display: flex; align-items: center; gap: 7px; }
.testimonial-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: var(--line); cursor: pointer; transition: background .18s ease, transform .18s ease; }
.testimonial-dot.is-active { background: var(--emphasis); transform: scale(1.3); }
.cart-page { padding: 56px 0 100px; }
.cart-page h1 { margin: 8px 0 32px; }
.checkout-receipt { width: 100%; margin: 0 0 32px; }
.receipt-card { position: relative; z-index: 0; width: 100%; max-width: none; padding: 32px; border: 1px solid var(--line); border-radius: 0; background: var(--surface); }
.receipt-card::before { position: absolute; z-index: -1; inset: 8% 12%; background: url("assets/vbc-logo.png") center / min(72%, 430px) auto no-repeat; content: ""; opacity: .09; pointer-events: none; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
:root[data-theme="dark"] .receipt-card::before { background-image: url("assets/vbc-logo-dark.png"); opacity: .12; }
.receipt-card > * { position: relative; z-index: 1; }
.receipt-head { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 12px 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.receipt-head > div { min-width: 0; }
.receipt-head .status-pill { flex-shrink: 0; white-space: nowrap; }
.receipt-head h2 { max-width: none; margin: 4px 0 8px; font-size: clamp(32px, 6vw, 56px); letter-spacing: -.05em; line-height: .98; overflow-wrap: anywhere; }
.receipt-intro { margin: 0; color: var(--muted); font-size: 14px; }
.receipt-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 22px 0; }
.receipt-meta div { display: grid; gap: 5px; }
.receipt-meta span { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.receipt-meta strong { font-size: 13px; overflow-wrap: anywhere; }
.receipt-section { padding: 18px 0; border-top: 1px solid var(--line); }
.receipt-section h3 { margin: 0 0 12px; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.receipt-items { width: 100%; table-layout: fixed; border-collapse: collapse; font-size: 13px; }
.receipt-items td { padding: 9px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.receipt-items td:first-child { padding-right: 14px; word-break: break-word; }
.receipt-items td:last-child { text-align: right; white-space: nowrap; }
.receipt-items small { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; }
.receipt-delivery p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.receipt-total { display: flex; align-items: baseline; justify-content: space-between; padding: 18px 0 4px; font-weight: 700; }
.receipt-total strong { font-family: var(--display); font-size: 24px; }
.receipt-payment { margin: 14px 0 0; color: var(--muted); font-size: 12px; }
.receipt-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-summary { position: sticky; top: 100px; }
.checkout-section-heading { margin: 28px 0 4px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.checkout-payment-details { margin: 0 0 14px; color: var(--text); font-size: 14px; }
.cart-summary-total { display: flex; justify-content: space-between; align-items: baseline; margin: 18px 0; padding-top: 16px; border-top: 1px solid var(--line); font-weight: 700; }
.cart-summary-total strong { font-family: var(--display); font-size: 22px; }
.cart-empty-state { padding: 60px 20px; color: var(--muted); text-align: center; }
.cart-empty-state a { color: var(--text); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 820px) {
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-detail-sections { margin-top: 32px; }
  .product-detail-media { position: static; }
  .product-detail-image-frame { aspect-ratio: 4 / 3; }
  .cart-layout { grid-template-columns: 1fr; }
  .receipt-meta { grid-template-columns: repeat(2, 1fr); }
  .cart-summary { position: static; }
}

@media (max-width: 560px) {
  .receipt-card { padding: 22px 16px; border-radius: 0; }
  .receipt-head { display: block; }
  .receipt-head .status-pill { display: inline-flex; margin-top: 8px; }
  .receipt-head h2 { font-size: clamp(32px, 12vw, 44px); }
  .receipt-meta { grid-template-columns: 1fr; gap: 14px; padding: 18px 0; }
  .receipt-items td:last-child { white-space: normal; padding-left: 8px; }
  .receipt-payment { overflow-wrap: anywhere; }
  .receipt-actions { flex-direction: column; }
  .receipt-actions .button { width: 100%; justify-content: center; }
}
.statement { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; padding-top: 0; padding-bottom: 150px; }
.statement .eyebrow { grid-column: 1 / -1; margin-bottom: -30px; }
.statement h2 { font-size: clamp(50px, 7vw, 88px); }
.statement-side { display: flex; flex-direction: column; justify-content: flex-end; gap: 36px; }
.statement-details { padding-bottom: 4px; }.statement-details p { max-width: 365px; margin-bottom: 24px; color: var(--muted); font-size: 15px; }.text-link { display: inline-flex; gap: 12px; align-items: center; font-size: 13px; font-weight: 700; }.text-link span { color: var(--orange); font-size: 21px; }.text-link:hover { color: var(--orange); }
.statement-media { position: relative; max-width: 380px; padding: 16px 24px 24px 16px; overflow: hidden; border: 2px solid var(--text); border-radius: 20px; background: var(--surface); box-shadow: 10px 10px 0 var(--lime); }
.statement-media-label { margin: 0 0 10px 2px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.statement-media .testimonial-video-frame { border-radius: 12px; }
@media (max-width: 900px) {
  .statement-media { max-width: 100%; }
}
.site-footer { padding: 60px 0 20px; background: var(--ink); color: #fff; }.footer-columns { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }.footer-brand .brand { display: inline-block; margin-bottom: 14px; }.footer-brand p { margin: 0; color: rgba(255, 255, 255, .55); font-size: 12px; }.footer-col-heading { margin: 0 0 14px; color: var(--lime); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }.footer-col { display: grid; align-content: start; gap: 9px; font-size: 13px; }.footer-col a, .footer-col p { margin: 0; color: rgba(255, 255, 255, .75); }.footer-col a { text-decoration: none; }.footer-col a:hover { color: var(--lime); }.footer-col strong { color: #fff; }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 19px; border-top: 1px solid rgba(255, 255, 255, .18); color: rgba(255, 255, 255, .55); font-size: 11px; }.footer-bottom a { color: #fff; }
.footer-social { display: flex; justify-content: flex-start; gap: 12px; margin-top: 14px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; color: #fff; transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease; }
.footer-social svg { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--lime); background: var(--lime); color: var(--ink); transform: translateY(-2px); }

.account-avatar-link { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; padding: 0; border-radius: 50%; font-size: 12px; letter-spacing: 0; }
.account-avatar-link img { display: block; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.auth-main { display: flex; justify-content: center; padding: clamp(48px, 8vw, 88px) clamp(24px, 5vw, 72px) 96px; }
.auth-shell { width: min(100%, 440px); }
.auth-shell h1 { max-width: none; margin-bottom: 10px; font-size: clamp(32px, 6vw, 44px); }
.auth-intro { max-width: none; margin-bottom: 32px; color: var(--muted); font-size: 14px; }
.auth-card { padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: 8px 8px 0 var(--lime); }
.checkout-auth-gate { padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: 8px 8px 0 var(--lime); }
.checkout-auth-gate h2 { margin: 0 0 12px; font-size: clamp(24px, 4vw, 34px); }
.checkout-auth-gate p:not(.eyebrow) { margin: 0 0 22px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select { padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); color: var(--text); font: inherit; font-size: 14px; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease; }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible { outline: none; border-color: var(--text); box-shadow: 0 0 0 3px rgba(204, 51, 85, .15); }
.field textarea { resize: vertical; min-height: 78px; }
.field small { color: var(--muted); font-size: 11px; }
.field-checkbox { display: flex; flex-direction: row; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--text); }
.field-checkbox input { width: 16px; height: 16px; }
.auth-submit { width: 100%; justify-content: center; margin-top: 6px; border: 0; cursor: pointer; }
.button-outline { border: 1px solid var(--text); background: transparent; color: var(--text); }
.button-outline:hover { background: var(--emphasis); color: var(--emphasis-text); border-color: var(--emphasis); }
.form-status { min-height: 18px; margin: 14px 0 0; font-size: 13px; font-weight: 700; }
.form-status.is-error { color: var(--orange); }
.auth-divider { display: flex; align-items: center; gap: 14px; margin: 26px 0 18px; color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.auth-divider::before, .auth-divider::after { flex: 1; height: 1px; background: var(--line); content: ""; }
.google-signin-mount { display: flex; justify-content: center; min-height: 44px; }
.auth-switch { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; text-align: center; }
.auth-switch a { color: var(--text); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.account-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.account-row:last-of-type { border-bottom: 0; }
.account-row span:first-child { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.account-row span:last-child { color: var(--text); font-size: 14px; font-weight: 700; text-align: right; }
.account-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.account-actions .button { flex: 1; justify-content: center; }
.account-page { padding: 56px 0 100px; }
.account-page h1 { max-width: none; margin: 8px 0 6px; font-size: clamp(32px, 5vw, 48px); }
.account-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; align-items: start; margin-top: 32px; }
.account-grid-main { display: flex; flex-direction: column; gap: 24px; }
.account-grid-side { position: sticky; top: 100px; }
.account-connection-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.account-connection-info strong { display: block; font-family: var(--body); font-size: 14px; }
.account-connection-info span { color: var(--muted); font-size: 13px; }
.profile-photo-editor { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.profile-photo-frame { display: flex; flex: none; align-items: center; justify-content: center; width: 76px; height: 76px; overflow: hidden; border-radius: 50%; background: var(--ink); color: #fff; font-size: 22px; font-weight: 700; }
.profile-photo-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.profile-photo-controls { display: grid; gap: 6px; }
.profile-photo-controls small { color: var(--muted); font-size: 11px; }
.order-card { padding: 16px; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 14px; }
.order-card:last-child { margin-bottom: 0; }
.order-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.order-card-date { color: var(--muted); font-size: 12px; }
.order-card-items { margin: 0 0 12px; padding-left: 18px; color: var(--text); font-size: 13px; line-height: 1.7; }
.order-card-total { display: flex; align-items: baseline; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--line); font-size: 13px; }
.order-card-total strong { font-family: var(--display); font-size: 18px; }
@media (max-width: 900px) {
  .account-grid { grid-template-columns: 1fr; }
  .account-grid-side { position: static; }
}

.admin-nav { display: flex; align-items: center; margin-left: auto; gap: 6px; font-size: 13px; font-weight: 700; }
.admin-nav a { padding: 10px 16px; border-radius: 999px; color: var(--muted); transition: color .18s ease, background .18s ease; }
.admin-nav a:hover { color: var(--text); }
.admin-nav a[aria-current="page"] { background: var(--emphasis); color: var(--emphasis-text); }
.admin-account { position: relative; margin-left: 12px; }
.admin-account-toggle { display: flex; align-items: center; gap: 10px; padding: 6px 16px 6px 6px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text); font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.admin-account-toggle:hover, .admin-account-toggle[aria-expanded="true"] { border-color: var(--text); box-shadow: 0 4px 0 rgba(17, 18, 15, .1); transform: translateY(-2px); }
.admin-account-avatar { display: flex; flex: none; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--body); font-size: 12px; font-weight: 700; }
.admin-account-caret { color: var(--muted); font-size: 9px; transition: transform .2s ease; }
.admin-account-toggle[aria-expanded="true"] .admin-account-caret { transform: rotate(180deg); }
.admin-account-menu { position: absolute; z-index: 60; top: 100%; right: 0; width: 240px; margin-top: 10px; padding: 8px; display: flex; flex-direction: column; gap: 2px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); box-shadow: 0 18px 40px rgba(17, 18, 15, .16); }
.admin-account-menu[hidden] { display: none; }
.account-menu-wrap { position: relative; }
.customer-account-menu { position: absolute; z-index: 60; top: 100%; right: 0; width: 220px; margin-top: 12px; padding: 8px; display: flex; flex-direction: column; gap: 2px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); box-shadow: 0 18px 40px rgba(17, 18, 15, .16); }
.customer-account-menu[hidden] { display: none; }
.admin-account-info { padding: 10px 12px 12px; margin-bottom: 4px; border-bottom: 1px solid var(--line); }
.admin-account-info strong { display: block; overflow: hidden; font-family: var(--body); font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.admin-account-info span { display: block; overflow: hidden; margin-top: 2px; color: var(--muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.admin-account-item { display: block; width: 100%; padding: 10px 12px; border: 0; border-radius: 10px; background: none; color: var(--text); font: inherit; font-size: 13px; font-weight: 700; text-align: left; text-decoration: none; cursor: pointer; transition: background .15s ease, color .15s ease; }
.admin-account-item:hover { background: var(--paper); }
.admin-account-divider { height: 1px; margin: 4px 2px; background: var(--line); }
.admin-account-item.is-danger { color: var(--orange); }
.admin-account-item.is-danger:hover { background: rgba(204, 51, 85, .1); }
.admin-shell { padding: 48px clamp(24px, 5vw, 72px) 96px; }
.admin-topbar { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.admin-topbar h1 { margin-bottom: 0; font-size: clamp(30px, 4vw, 44px); }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 40px; }
.admin-stat { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.admin-stat span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.admin-stat strong { display: block; overflow: hidden; font-family: var(--display); font-size: clamp(16px, 2.4vw, 28px); white-space: nowrap; text-overflow: ellipsis; }
.admin-panel { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); margin-bottom: 28px; }
.admin-panel-heading { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.admin-panel-heading h2 { margin: 0; font-size: 20px; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 13px; }
.admin-table th { padding: 10px 12px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; text-align: left; }
.admin-table td { padding: 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: 0; }
.admin-table-thumb { display: block; width: 52px; height: 52px; border-radius: 8px; object-fit: cover; background: var(--paper); }
.admin-table-actions { display: flex; gap: 8px; }
.admin-table-actions button { padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--text); font-size: 11px; font-weight: 700; cursor: pointer; transition: border-color .18s ease, background .18s ease, color .18s ease; }
.admin-table-actions button:hover { border-color: var(--emphasis); background: var(--emphasis); color: var(--emphasis-text); }
.admin-table-actions button.is-danger:hover { border-color: var(--orange); background: var(--orange); color: #fff; }
.admin-status-select { padding: 6px 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); color: var(--text); font: inherit; font-size: 12px; font-weight: 700; }
.status-pill { display: inline-flex; padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.status-pending { background: rgba(204, 51, 85, .12); color: var(--orange); }
.status-confirmed, .status-processing { background: var(--tint); color: var(--text); }
.status-completed { background: rgba(140, 176, 60, .18); color: #5c7a20; }
.status-cancelled { background: var(--tint-weak); color: var(--muted); }
.stock-pill { display: inline-flex; padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .02em; white-space: nowrap; }
.stock-ok { color: var(--text); }
.stock-low { background: rgba(250, 178, 25, .16); color: #8a5a00; }
.stock-out { background: rgba(208, 59, 59, .12); color: var(--status-critical); }
.chart-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 28px; }
.chart-card h3 { margin: 0 0 14px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-family: var(--body); }
.chart-mount { position: relative; }
.chart-svg { display: block; width: 100%; height: auto; overflow: visible; }
.chart-axis-text { font: 400 10px var(--body); fill: var(--muted); }
.chart-bar-label { font: 700 12px var(--body); fill: var(--text); }
.chart-bar-value { font: 700 12px var(--body); fill: var(--muted); }
.chart-end-label { font: 700 12px var(--body); fill: var(--text); }
.chart-gridline { stroke: var(--line); stroke-width: 1; }
.chart-crosshair { stroke: var(--muted); stroke-width: 1; }
.chart-bar-fill { cursor: pointer; transition: filter .12s ease; }
.chart-bar-fill:hover, .chart-bar-fill:focus-visible { filter: brightness(1.1); outline: none; }
.chart-empty { padding: 46px 0; margin: 0; color: var(--muted); font-size: 13px; text-align: center; }
.ranked-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.ranked-item { min-width: 0; }
.ranked-item-head { display: grid; grid-template-columns: 28px minmax(0, 1fr) auto; align-items: baseline; gap: 10px; min-width: 0; }
.ranked-item-rank { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.ranked-item-label { min-width: 0; color: var(--text); font-size: 13px; line-height: 1.3; overflow-wrap: anywhere; }
.ranked-item-value { color: var(--muted); font-size: 11px; font-weight: 700; white-space: nowrap; }
.ranked-item-track { height: 8px; margin: 8px 0 0 38px; overflow: hidden; border-radius: 999px; background: var(--tint); }
.ranked-item-fill { display: block; width: 0; height: 100%; border-radius: inherit; background: var(--orange); transition: width .35s ease; }
.chart-tooltip { position: fixed; z-index: 200; padding: 8px 12px; border-radius: 10px; background: var(--ink); color: #fff; font-size: 12px; line-height: 1.35; white-space: nowrap; pointer-events: none; opacity: 0; transform: translate(-50%, -100%); transition: opacity .12s ease; }
.chart-tooltip.is-visible { opacity: 1; }
.chart-tooltip strong { display: block; font-family: var(--body); font-size: 13px; font-weight: 700; }
.chart-tooltip span { display: block; color: rgba(255, 255, 255, .7); font-size: 11px; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0 18px; }
.field-hint { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.card-image-grid { gap: 0 18px; margin-top: 10px; }
.card-image-grid .field { margin-bottom: 0; }
.image-upload-row { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.image-upload-button { padding: 10px 18px; font-size: 12px; cursor: pointer; }
.image-preview-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.image-preview-strip:empty { display: none; }
.image-preview-thumb { position: relative; width: 108px; height: 92px; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); }
.image-preview-thumb.is-main { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(204, 51, 85, .15); }
.image-preview-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.image-preview-main, .image-preview-main-badge { position: absolute; right: 3px; bottom: 3px; left: 3px; display: block; padding: 5px 4px; border: 0; border-radius: 5px; background: rgba(17, 18, 15, .78); color: #fff; font-size: 9px; font-weight: 700; line-height: 1.1; text-align: center; }
.image-preview-main { cursor: pointer; }
.image-preview-main:hover { background: var(--orange); }
.image-preview-main-badge { background: var(--orange); }
.image-preview-remove { position: absolute; top: 3px; right: 3px; display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; border: 0; border-radius: 50%; background: rgba(17, 18, 15, .72); color: #fff; font-size: 11px; line-height: 1; cursor: pointer; transition: background .15s ease; }
.image-preview-remove:hover { background: var(--orange); }
.admin-panel #productForm > .field:has(#productImages),
.admin-panel #productForm > .field:has(#productDesktopCardImage),
.admin-panel #productForm > .field:has(#productVideos) {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}
.admin-panel #productForm > .field:has(#productImages) > label,
.admin-panel #productForm > .field:has(#productDesktopCardImage) > label,
.admin-panel #productForm > .field:has(#productVideos) > label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: .08em;
}
.admin-panel #productForm > .field:has(#productImages) > label small,
.admin-panel #productForm > .field:has(#productDesktopCardImage) > label small,
.admin-panel #productForm > .field:has(#productVideos) > label small {
  flex: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: none;
}
.admin-panel #productForm > .field:has(#productImages) textarea,
.admin-panel #productForm > .field:has(#productVideos) textarea {
  min-height: 96px;
}
.admin-panel .card-image-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}
.admin-panel .card-image-grid > .field {
  min-width: 0;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface);
}
.admin-panel .card-image-grid > .field > label {
  color: var(--muted);
  font-size: 10px;
}
.admin-panel .image-upload-row {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.admin-panel .image-upload-button {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .04em;
}
.admin-panel .image-upload-row .form-status {
  flex: 1 1 120px;
  min-height: 0;
  margin: 0;
}
.admin-panel #productForm > .field:has(#productImages) .field-hint,
.admin-panel #productForm > .field:has(#productDesktopCardImage) .field-hint,
.admin-panel #productForm > .field:has(#productVideos) .field-hint {
  max-width: 900px;
  margin-top: 12px;
}
@media (max-width: 720px) {
  .admin-panel #productForm > .field:has(#productImages) > label,
  .admin-panel #productForm > .field:has(#productDesktopCardImage) > label,
  .admin-panel #productForm > .field:has(#productVideos) > label {
    display: block;
  }
  .admin-panel #productForm > .field:has(#productImages) > label small,
  .admin-panel #productForm > .field:has(#productDesktopCardImage) > label small,
  .admin-panel #productForm > .field:has(#productVideos) > label small {
    display: block;
    margin-top: 3px;
  }
  .admin-panel .card-image-grid { grid-template-columns: 1fr; }
  .admin-panel #productForm > .field:has(#productImages),
  .admin-panel #productForm > .field:has(#productDesktopCardImage),
  .admin-panel #productForm > .field:has(#productVideos) { padding: 14px; }
}
.empty-row td { padding: 32px 12px; color: var(--muted); text-align: center; }
.auth-pill { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .02em; }
.auth-pill-manual { border: 1px solid var(--line); color: var(--text); }
.auth-pill-google { background: var(--lime); color: var(--ink); }
.order-detail-row.is-hidden { display: none; }
.order-detail-row td { padding: 0; background: var(--paper); }
.order-detail { display: grid; gap: 10px; padding: 18px; font-size: 12.5px; }
.order-detail-items { display: grid; gap: 4px; margin: 0; padding: 0; list-style: none; }
.order-detail-notes { color: var(--muted); }

.ai-orb { position: relative; flex: none; width: 20px; height: 20px; border-radius: 50%; background: conic-gradient(from 0deg, var(--orange), var(--lime), #fff, var(--orange)); box-shadow: 0 0 10px 2px rgba(204, 51, 85, .5), 0 0 18px 6px rgba(255, 210, 213, .35); animation: ai-orb-spin 3.2s linear infinite, ai-orb-pulse 2.4s ease-in-out infinite; }
.ai-orb::before { position: absolute; inset: 2px; border-radius: 50%; background: radial-gradient(circle at 32% 28%, #fff, var(--orange) 60%, var(--ink) 135%); content: ""; }
.ai-orb-avatar { width: 26px; height: 26px; }
.ai-orb-lg { width: 84px; height: 84px; margin: 0 auto 22px; }
@keyframes ai-orb-spin { to { transform: rotate(360deg); } }
@keyframes ai-orb-blob-spin { to { transform: rotate(360deg); } }
@keyframes ai-orb-pulse { 0%, 100% { box-shadow: 0 0 10px 2px rgba(204, 51, 85, .5), 0 0 18px 6px rgba(255, 210, 213, .35); } 50% { box-shadow: 0 0 16px 5px rgba(204, 51, 85, .75), 0 0 28px 10px rgba(255, 210, 213, .5); } }
@media (prefers-reduced-motion: reduce) { .ai-orb { animation: none; } }

/* AI-chip glow (à la Google's "AI Mode" pill): a tight, soft multi-hue rim hugging the button's
   own edge, plus a faint colored bloom cast outward via box-shadow — not a big diffuse blob. */
.find-setup-link {
  position: fixed !important;
  right: clamp(18px, 3vw, 32px) !important;
  bottom: max(18px, env(safe-area-inset-bottom)) !important;
  z-index: 9999 !important;
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible;
  isolation: isolate;
  white-space: nowrap;
  gap: 12px;
  padding: 15px 14px 15px 18px;
  border: 1px solid var(--orange) !important;
  background: var(--orange) !important;
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(17, 18, 15, .18), 0 0 16px 3px rgba(204, 51, 85, .38), inset 0 1px 0 rgba(255, 255, 255, .28);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  animation: ai-button-bounce 1.4s ease-in-out infinite;
  transform-origin: center bottom;
  transition: box-shadow .2s ease;
}
:root[data-theme="dark"] .find-setup-link {
  border-color: rgba(255, 255, 255, .28) !important;
  background: rgba(35, 37, 36, .66) !important;
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28), 0 0 16px 3px rgba(204, 51, 85, .22), inset 0 1px 0 rgba(255, 255, 255, .14);
}
body.menu-open .find-setup-link {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none;
  transform: translateY(8px);
}

/* Keep homepage card styling inside the product-page recommendation rail without
   inheriting the collection grid's auto-width behavior. */
#relatedProductsSection .product-card.showcase-card {
  flex: 0 0 auto;
  width: min(78vw, 280px);
  min-width: 0;
}

#relatedProductsSection .product-card.showcase-card .product-card-media {
  aspect-ratio: 16 / 9;
}
@media (max-width: 560px) {
  #relatedProductsSection .product-card.showcase-card .product-card-media {
    aspect-ratio: 4 / 5;
  }
}
/* Rotating the ring element itself would distort it (it's a pill, not a circle) — instead the
   conic-gradient's start angle is animated via a typed custom property, so the hues sweep
   clockwise around the fixed ring shape without warping it. */
@property --glow-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.find-setup-link::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border-radius: 99px;
  border: 3px solid transparent;
  background: conic-gradient(from var(--glow-angle), var(--orange), var(--lime), #fff, var(--orange)) border-box;
  mask-image: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
  mask-clip: padding-box, border-box;
  mask-composite: exclude;
  filter: blur(2px);
  opacity: .8;
  animation: ai-glow-spin 4s linear infinite, ai-glow-pulse 2.6s ease-in-out infinite;
}
.find-setup-link:hover { border-color: #a92846 !important; background: #a92846 !important; color: #fff !important; box-shadow: 0 0 20px 4px rgba(204, 51, 85, .42), 0 0 34px 10px rgba(255, 210, 213, .3); }
.find-setup-link:hover::before { opacity: 1; }
@keyframes ai-button-bounce {
  0%, 100% { transform: translateY(0); }
  15% { transform: translateY(-8px); }
  30% { transform: translateY(0); }
  45% { transform: translateY(-6px); }
  60% { transform: translateY(0); }
  75% { transform: translateY(-3px); }
  90% { transform: translateY(0); }
}
@keyframes ai-glow-spin { to { --glow-angle: 360deg; } }
@keyframes ai-glow-pulse { 0%, 100% { opacity: .65; } 50% { opacity: .9; } }
@media (prefers-reduced-motion: reduce) { .find-setup-link, .find-setup-link::before { animation: none; } }
@media (max-width: 560px) { .find-setup-link { right: 16px; max-width: calc(100vw - 32px); } }

/* Keep the AI CTA visually opposite to the active page theme. */
:root:not([data-theme="dark"]) .find-setup-link {
  border-color: var(--orange) !important;
  background: var(--orange) !important;
  color: #fff !important;
}

:root:not([data-theme="dark"]) .find-setup-link:hover {
  border-color: #a92846 !important;
  background: #a92846 !important;
  color: #fff !important;
}

:root[data-theme="dark"] .find-setup-link {
  border-color: #fff !important;
  background: #fff !important;
  color: var(--ink) !important;
}

.ai-page { padding: 56px 0 110px; }
.ai-intro { max-width: 560px; margin: 0 auto 40px; text-align: center; }
.ai-intro h1 { margin: 0 auto 12px; }
.ai-sub { max-width: none; color: var(--muted); font-size: 15px; }
.ai-chat { width: min(100%, 640px); margin: 0 auto; }
.ai-messages { display: flex; flex-direction: column; gap: 16px; min-height: 120px; max-height: 55vh; margin-bottom: 18px; padding: 4px 4px 10px; overflow-y: auto; }
.ai-message { display: flex; align-items: flex-start; gap: 10px; max-width: 86%; }
.ai-message.is-assistant { align-self: flex-start; }
.ai-message.is-user { align-self: flex-end; flex-direction: row-reverse; }
.ai-message.is-user .ai-message-avatar { visibility: hidden; width: 4px; }
.ai-message-bubble { padding: 12px 16px; border-radius: 16px; font-size: 14px; line-height: 1.55; white-space: pre-wrap; }
.ai-message.is-assistant .ai-message-bubble { border: 1px solid var(--line); border-bottom-left-radius: 4px; background: var(--surface); color: var(--text); }
.ai-message.is-user .ai-message-bubble { border-bottom-right-radius: 4px; background: var(--ink); color: #fff; }
.ai-message.is-thinking .ai-message-bubble { color: var(--muted); font-style: italic; }
.ai-message.is-error { align-self: flex-start; }
.ai-error-avatar { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(204, 51, 85, .15); color: var(--orange); font-weight: 700; font-size: 13px; }
.ai-message.is-error .ai-message-bubble { border: 1px solid rgba(204, 51, 85, .35); border-bottom-left-radius: 4px; background: rgba(204, 51, 85, .08); color: var(--orange); font-weight: 700; }
.ai-suggestions { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 20px; }
.ai-chip { padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--text); font-size: 13px; font-weight: 700; cursor: pointer; transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.ai-chip:hover { border-color: var(--text); background: var(--surface); transform: translateY(-2px); }
.ai-compare-tools { margin: 4px 0 20px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
.ai-compare-heading { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ai-compare-heading .ai-orb { width: 24px; height: 24px; }
.ai-compare-heading .eyebrow { margin: 0 0 3px; font-size: 9px; }
.ai-compare-heading strong { display: block; font-size: 14px; }
.ai-compare-fields { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto; align-items: end; gap: 10px; }
.ai-compare-fields label { display: grid; gap: 6px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.ai-compare-fields select { min-width: 0; padding: 12px 34px 12px 12px; border: 1px solid var(--line); border-radius: 4px; background: var(--surface); color: var(--text); font: inherit; font-size: 12px; }
.ai-compare-fields select:focus-visible { outline: none; border-color: var(--text); }
.ai-compare-vs { padding-bottom: 12px; color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.ai-compare-fields .button { padding: 12px 13px 12px 16px; gap: 12px; white-space: nowrap; }
.ai-comparison-result { margin: 10px 0 20px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: 0 18px 42px rgba(17, 18, 15, .12); overflow: hidden; }
.ai-comparison-result, .ai-comparison-scroll { min-width: 0; max-width: 100%; }
.ai-comparison-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px 18px; background: linear-gradient(135deg, var(--tint-weak), transparent); }
.ai-comparison-head .eyebrow { margin: 0 0 5px; color: var(--orange); font-size: 9px; }
.ai-comparison-head strong { display: block; font-family: var(--display); font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -.045em; line-height: 1; }
.ai-comparison-clear { flex: none; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: 11px; font-weight: 700; cursor: pointer; transition: border-color .18s ease, color .18s ease, transform .18s ease; }
.ai-comparison-clear:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-1px); }
.ai-comparison-scroll { overflow-x: auto; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch; scrollbar-color: var(--orange) var(--tint); scrollbar-width: auto; }
.ai-comparison-scroll:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.ai-comparison-scroll::-webkit-scrollbar { height: 8px; }
.ai-comparison-scroll::-webkit-scrollbar-track { border-radius: 999px; background: var(--tint); }
.ai-comparison-scroll::-webkit-scrollbar-thumb { border: 2px solid var(--tint); border-radius: 999px; background: var(--orange); }
.ai-comparison-board { min-width: 0; padding: 0 26px; }
.ai-comparison-products, .ai-comparison-row { display: grid; grid-template-columns: minmax(170px, .72fr) repeat(2, minmax(0, 1fr)); gap: clamp(22px, 4vw, 64px); }
.ai-comparison-products { align-items: end; padding: 18px 0 22px; }
.ai-comparison-feature-title { font-family: var(--display); font-size: clamp(19px, 2.2vw, 29px); letter-spacing: -.045em; line-height: 1.02; }
.ai-comparison-product { display: block; min-width: 0; padding: 14px 16px 15px; border-radius: 14px; background: linear-gradient(135deg, rgba(204, 51, 85, .09), var(--tint-weak)); }
.ai-comparison-product strong { display: block; overflow: hidden; color: var(--text); font-family: var(--body); font-size: clamp(17px, 2vw, 24px); font-weight: 500; line-height: 1.02; letter-spacing: -.025em; text-overflow: ellipsis; white-space: nowrap; }
.ai-comparison-rows { border-top: 1px solid color-mix(in srgb, var(--line) 52%, transparent); }
.ai-comparison-row { min-height: 76px; align-items: center; padding: 18px 0; border-bottom: 1px solid color-mix(in srgb, var(--line) 52%, transparent); }
.ai-comparison-label { color: var(--text); font-family: var(--display); font-size: 16px; font-weight: 800; letter-spacing: -.025em; line-height: 1.08; }
.ai-comparison-cell { min-width: 0; color: var(--text); font-size: 16px; line-height: 1.3; overflow-wrap: anywhere; }
.ai-comparison-cell strong { font-weight: 400; }
.ai-comparison-summary { padding: 18px 26px 20px; border-top: 0; border-left: 0; background: linear-gradient(135deg, var(--lime), var(--surface)); }
.ai-comparison-summary::before { display: none; }
.ai-comparison-summary .eyebrow { margin: 0 0 5px; color: var(--orange); font-size: 9px; }
.ai-comparison-notes { display: grid; gap: 5px; max-width: 840px; margin: 0; padding: 0; list-style: none; }
.ai-comparison-notes li { position: relative; padding-left: 14px; color: var(--text); font-size: 13px; line-height: 1.4; overflow-wrap: anywhere; }
.ai-comparison-notes li::before { position: absolute; top: 0; left: 0; color: var(--orange); content: "•"; font-size: 17px; font-weight: 900; line-height: 1.1; }
.ai-comparison-notes strong { font-weight: 700; letter-spacing: -.01em; }
@media (max-width: 560px) { .ai-compare-fields { grid-template-columns: 1fr; align-items: stretch; } .ai-compare-vs { display: none; } .ai-compare-fields .button { justify-content: center; } }
.ai-input-row { position: fixed; z-index: 20; right: clamp(24px, 5vw, 72px); bottom: max(16px, env(safe-area-inset-bottom)); left: clamp(24px, 5vw, 72px); display: flex; gap: 10px; margin: 0; padding: 8px 8px 8px 18px; border-radius: 999px; box-shadow: 0 16px 34px rgba(17, 18, 15, .18); }
.ai-input-row input { flex: 1; padding: 14px 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text); font: inherit; font-size: 14px; transition: border-color .18s ease, box-shadow .18s ease; }
.ai-input-row input:focus-visible { outline: none; border-color: var(--text); box-shadow: 0 0 0 3px rgba(204, 51, 85, .15); }
.ai-input-row button { display: grid; flex: none; width: 0; height: 0; place-items: center; padding: 0; overflow: hidden; border: 0; border-radius: 999px; cursor: pointer; opacity: 0; transform: scale(.72); transition: width .2s ease, height .2s ease, opacity .2s ease, transform .2s ease, background .18s ease; }
.ai-input-row button svg { width: 18px; height: 18px; }
.ai-input-row.has-input button { width: 44px; height: 44px; opacity: 1; transform: scale(1); }

@media (max-width: 820px) { .site-header { position: relative; display: flex; }.menu-toggle { position: absolute; top: 50%; right: 18px; display: block; width: 39px; height: 39px; overflow: hidden; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: transparent; font-size: 0; transform: translateY(-50%); transition: transform .2s cubic-bezier(.22, .8, .25, 1), border-color .2s ease, background .2s ease; }.menu-toggle:active { transform: translateY(-50%) scale(.88); }.menu-toggle::before, .menu-toggle::after { position: absolute; left: 11px; width: 15px; height: 2px; border-radius: 99px; background: var(--text); content: ""; transition: transform .3s cubic-bezier(.22, .8, .25, 1), top .3s cubic-bezier(.22, .8, .25, 1); }.menu-toggle::before { top: 15px; box-shadow: 0 6px 0 var(--text); }.menu-toggle::after { top: 21px; opacity: 0; }.menu-toggle[aria-expanded="true"]::before { top: 18px; transform: rotate(45deg); box-shadow: none; }.menu-toggle[aria-expanded="true"]::after { top: 18px; opacity: 1; transform: rotate(-45deg); }.site-nav { position: fixed; z-index: 30; top: 0; right: 0; bottom: 0; left: auto; display: flex; width: min(82vw, 340px); flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 14px; padding: 74px 24px 34px; background: var(--surface); box-shadow: -18px 0 45px rgba(17, 18, 15, .16); transform: translateX(105%); visibility: hidden; transition: transform .35s cubic-bezier(.22, .8, .25, 1), visibility 0s linear .35s; }.site-nav.is-open { transform: translateX(0); visibility: visible; transition-delay: 0s; }.site-nav a { display: flex; align-items: center; justify-content: center; padding: 16px 20px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--text); font-size: 15px; font-weight: 700; box-shadow: 0 4px 0 rgba(17, 18, 15, .1); opacity: 0; transform: translateX(16px) scale(.94); transition: opacity .3s ease, transform .3s cubic-bezier(.22, .8, .25, 1), background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease; }.site-nav a::after { display: none; }.site-nav.is-open a { opacity: 1; transform: translateX(0) scale(1); }.site-nav.is-open a:active { background: var(--emphasis); color: var(--emphasis-text); border-color: var(--emphasis); transform: translateX(0) translateY(2px) scale(.97); box-shadow: 0 1px 0 rgba(17, 18, 15, .1); transition-duration: .1s; }.site-nav.is-open a:nth-child(2) { transition-delay: .06s; }.site-nav.is-open a:nth-child(3) { transition-delay: .12s; }.site-nav.is-open a:nth-child(4) { transition-delay: .18s; }.site-nav.is-open a:nth-child(5) { transition-delay: .24s; }.site-nav a.mobile-cart-link { justify-content: space-between; border-color: var(--orange); background: rgba(204, 51, 85, .08); color: var(--orange); }.site-nav.is-open a.mobile-cart-link:active { background: var(--orange); color: #fff; border-color: var(--orange); }.nav-close { display: flex; position: absolute; top: 20px; right: 22px; width: 36px; height: 36px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--text); font-size: 14px; line-height: 1; cursor: pointer; transition: transform .25s cubic-bezier(.22, .8, .25, 1), border-color .18s ease, background .18s ease, color .18s ease; }.nav-close:focus-visible { border-color: var(--emphasis); background: var(--emphasis); color: var(--emphasis-text); outline: none; }.nav-close:active { transform: scale(.88); }.login-link { position: absolute; top: 50%; right: 70px; transform: translateY(-50%); }.login-link:hover, .login-link:focus-visible { transform: translateY(-50%); box-shadow: 0 5px 0 rgba(17, 18, 15, .13); }.account-menu-wrap { position: static; }.customer-account-menu { display: none; }.cart-hover-wrap { display: none; }.mobile-cart-link { display: flex; align-items: center; justify-content: space-between; }.hero-slideshow { min-height: 580px; }.hero-slide-fade { height: 90px; }.hero-intro-band { grid-template-columns: 1fr; gap: 28px; padding: 40px 18px 20px; }.intro-visual { aspect-ratio: 16 / 9; }.hero-slide-info { padding: 24px 18px 22px; }.hero-slide-badges { margin-bottom: 8px; }.hero-slide-badge { padding: 4px 10px; font-size: 10px; }.hero-slide-title { margin-bottom: 8px; font-size: 22px; }.hero-slide-meta { margin-bottom: 8px; font-size: 12px; }.hero-slide-meta-price { font-size: 14px; }.hero-slide-meta-brand { display: none; }.hero-slide-desc { margin-bottom: 16px; max-width: none; font-size: 12.5px; }.hero-slide-cta { padding: 10px 14px 10px 16px; gap: 8px; font-size: 12px; }.hero-slide-quickadd { width: 44px; height: 44px; }.hero-slide-quickadd svg { width: 17px; height: 17px; }.hero-arrow { top: 18px; transform: none; width: 38px; height: 38px; font-size: 16px; }.hero-arrow-prev { left: 14px; }.hero-arrow-next { right: 14px; }.hero-progress { left: 18px; bottom: 8px; width: 150px; padding: 6px 8px; }.shop-section { padding-top: 72px; padding-bottom: 84px; }.shop-categories { gap: 44px; }.rail-arrow { display: none; }.shop-rail { gap: 12px; }.product-card { width: min(72vw, 240px); }.statement { grid-template-columns: 1fr; gap: 30px; }.statement .eyebrow { margin-bottom: 0; }.statement-details { padding-bottom: 0; } }
@media (max-width: 820px) and (hover: hover) and (pointer: fine) { .menu-toggle:hover { border-color: var(--text); background: var(--tint-weak); }.nav-close:hover { border-color: var(--emphasis); background: var(--emphasis); color: var(--emphasis-text); transform: rotate(90deg); }.site-nav.is-open a:hover { border-color: var(--emphasis); background: var(--emphasis); color: var(--emphasis-text); transform: translateX(0) translateY(-2px) scale(1); box-shadow: 0 6px 0 rgba(17, 18, 15, .1); }.site-nav.is-open a.mobile-cart-link:hover { border-color: var(--orange); background: var(--orange); color: #fff; } }
@media (max-width: 720px) { .site-header:has(.admin-nav) { flex-wrap: wrap; row-gap: 10px; min-height: 0; padding-top: 16px; padding-bottom: 16px; }.admin-nav { order: 3; flex-basis: 100%; margin-left: 0; overflow-x: auto; }.admin-nav a { flex: 0 0 auto; padding: 8px 14px; font-size: 12px; }.admin-account { order: 2; margin-left: auto; }.admin-shell { padding: 32px 18px 64px; }.admin-panel { padding: 18px; }.chart-grid { grid-template-columns: 1fr; gap: 28px; }.chart-card h3 { margin-bottom: 12px; font-size: 12px; } }
@media (max-width: 560px) {
  .admin-shell { padding: 24px 16px 56px; }
  .admin-topbar { margin-bottom: 24px; }

  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 28px;
  }

  .admin-stat { padding: 14px; border-radius: 12px; }
  .admin-stat span { margin-bottom: 4px; font-size: 10px; }
  .admin-stat strong { font-size: 20px; }

  .admin-panel { padding: 16px; margin-bottom: 20px; border-radius: 14px; }
  .admin-panel-heading { margin-bottom: 16px; }
  .admin-panel-heading h2 { font-size: 17px; }

  .chart-grid { gap: 26px; }
  .chart-card h3 { margin-bottom: 16px; font-size: 10.5px; }
  .chart-bar-label,
  .chart-bar-value,
  .chart-end-label { font: 700 11.5px var(--body); }
  .chart-axis-text { font-size: 9px; }
  .ranked-list { gap: 12px; }
  .ranked-item-label { font-size: 12px; }
  .ranked-item-track { height: 7px; margin-top: 7px; }

  .admin-table th,
  .admin-table td { padding: 10px 8px; }
}
@media (max-width: 820px) { .testimonial-controls .rail-arrow { display: grid; } }
/* Keep the hosted navbar visible while preserving its normal document spacing. */
body:not(:has(.ai-page)) .site-header,
body:has(.ai-page) .site-header {
  position: sticky !important;
  top: 0;
  z-index: 100;
}

/* Vertical fit pass for a cleaner, lower-profile navbar. */
@media (min-width: 821px) {
  body:not(:has(.ai-page)) .site-header,
  body:has(.ai-page) .site-header {
    min-height: 58px;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  body:not(:has(.ai-page)) .site-header .brand-image,
  body:not(:has(.ai-page)) .site-header .brand-image img,
  body:has(.ai-page) .site-header .brand-image,
  body:has(.ai-page) .site-header .brand-image img {
    width: 128px;
    height: 36px;
  }

  body:not(:has(.ai-page)) .nav-pill .site-nav a,
  body:has(.ai-page) .nav-pill .site-nav a {
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 1;
  }

  body:not(:has(.ai-page)) .icon-group .nav-search-toggle,
  body:not(:has(.ai-page)) .icon-group .cart-toggle,
  body:not(:has(.ai-page)) .icon-group .theme-toggle,
  body:has(.ai-page) .icon-group .nav-search-toggle,
  body:has(.ai-page) .icon-group .cart-toggle,
  body:has(.ai-page) .icon-group .theme-toggle {
    width: 38px;
    height: 38px;
  }

  body:not(:has(.ai-page)) .icon-group .login-link,
  body:has(.ai-page) .icon-group .login-link {
    padding-top: 9px;
    padding-bottom: 9px;
    line-height: 1;
  }
}

@media (max-width: 820px) {
  body:not(:has(.ai-page)) .site-header .brand-image,
  body:not(:has(.ai-page)) .site-header .brand-image img,
  body:has(.ai-page) .site-header .brand-image,
  body:has(.ai-page) .site-header .brand-image img {
    height: 44px;
  }
}

/* Restore the compact unified glass navbar from before the rollback. */
@media (min-width: 821px) {
  body:not(:has(.ai-page)) .site-header,
  body:has(.ai-page) .site-header {
    position: sticky !important;
    top: 14px;
    right: 22px;
    left: 22px;
    z-index: 40;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 4px 10px 4px 14px !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2) !important;
    border-radius: 999px !important;
    background: linear-gradient(110deg, rgba(14, 16, 17, .7), rgba(21, 25, 27, .46) 58%, rgba(14, 16, 17, .66)) !important;
    color: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .2), inset 0 -1px 0 rgba(255, 255, 255, .06) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  body:not(:has(.ai-page)) .nav-main-cluster,
  body:has(.ai-page) .nav-main-cluster {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body:not(:has(.ai-page)) .site-header .brand-image,
  body:not(:has(.ai-page)) .site-header .brand-image img,
  body:has(.ai-page) .site-header .brand-image,
  body:has(.ai-page) .site-header .brand-image img {
    width: 128px;
    height: 36px;
  }

  body:not(:has(.ai-page)) .nav-pill,
  body:has(.ai-page) .nav-pill {
    display: flex;
    align-items: center;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body:not(:has(.ai-page)) .nav-pill .site-nav,
  body:has(.ai-page) .nav-pill .site-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
  }

  body:not(:has(.ai-page)) .nav-pill .site-nav a,
  body:has(.ai-page) .nav-pill .site-nav a {
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08) !important;
    color: rgba(255, 255, 255, .88) !important;
    font-size: 13px;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 5px 14px rgba(0, 0, 0, .1) !important;
    transform: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  body:not(:has(.ai-page)) .nav-pill .site-nav a:first-of-type,
  body:not(:has(.ai-page)) .nav-pill .site-nav a:hover,
  body:has(.ai-page) .nav-pill .site-nav a:first-of-type,
  body:has(.ai-page) .nav-pill .site-nav a:hover {
    border-color: rgba(255, 210, 213, .62) !important;
    background: rgba(255, 210, 213, .2) !important;
    color: #fff !important;
  }

  body:not(:has(.ai-page)) .icon-group,
  body:has(.ai-page) .icon-group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  body:not(:has(.ai-page)) .icon-group .nav-search-toggle,
  body:not(:has(.ai-page)) .icon-group .cart-toggle,
  body:not(:has(.ai-page)) .icon-group .theme-toggle,
  body:has(.ai-page) .icon-group .nav-search-toggle,
  body:has(.ai-page) .icon-group .cart-toggle,
  body:has(.ai-page) .icon-group .theme-toggle {
    width: 38px;
    height: 38px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 8px 18px rgba(0, 0, 0, .14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  body:not(:has(.ai-page)) .icon-group .login-link,
  body:has(.ai-page) .icon-group .login-link {
    margin: 0;
    padding: 9px 16px;
    border-color: rgba(255, 255, 255, .58) !important;
    background: rgba(255, 210, 213, .78) !important;
    color: var(--ink) !important;
    font-size: 13px;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7), 0 7px 18px rgba(0, 0, 0, .14) !important;
  }
}

@media (max-width: 820px) {
  body:not(:has(.ai-page)) .site-header,
  body:has(.ai-page) .site-header {
    position: sticky !important;
    top: 10px;
    right: 10px;
    left: 10px;
    z-index: 100;
    min-height: 64px;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 999px !important;
    background: rgba(17, 18, 15, .78) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .12) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .site-header .nav-main-cluster,
  .site-header .nav-pill,
  .site-header .icon-group { display: contents; }
}

/* Exact hosted-navbar styling: the original single-row layout. */
@media (min-width: 821px) {
  body:not(:has(.ai-page)) .site-header {
    position: relative !important;
    top: auto;
    right: auto;
    left: auto;
    z-index: 40;
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 28px;
    padding: 0 clamp(24px, 5vw, 72px) !important;
    overflow: visible;
    border: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    border-radius: 0 !important;
    background: var(--surface) !important;
    color: var(--text);
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body:has(.ai-page) .site-header {
    position: relative !important;
    top: auto;
    right: auto;
    left: auto;
    z-index: 40;
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 28px;
    padding: 0 clamp(24px, 5vw, 72px) !important;
    overflow: visible;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 0 !important;
    background: var(--ink) !important;
    color: #fff;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body:not(:has(.ai-page)) .site-header .brand-image,
  body:not(:has(.ai-page)) .site-header .brand-image img,
  body:has(.ai-page) .site-header .brand-image,
  body:has(.ai-page) .site-header .brand-image img {
    width: 180px;
    height: 64px;
  }

  body:not(:has(.ai-page)) .site-nav,
  body:has(.ai-page) .site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
  }

  body:not(:has(.ai-page)) .site-nav a {
    padding: 11px 20px;
    border: 1px solid var(--line) !important;
    border-radius: 999px;
    background: var(--paper) !important;
    color: var(--text) !important;
    box-shadow: 0 4px 0 rgba(17, 18, 15, .1) !important;
    transform: none;
  }

  body:not(:has(.ai-page)) .site-nav a:hover,
  body:not(:has(.ai-page)) .site-nav a:focus-visible {
    border-color: var(--emphasis) !important;
    background: var(--emphasis) !important;
    color: var(--emphasis-text) !important;
    box-shadow: 0 6px 0 rgba(17, 18, 15, .1) !important;
    transform: translateY(-2px);
  }

  body:has(.ai-page) .site-nav a {
    padding: 11px 20px;
    border: 1px solid rgba(255, 255, 255, .32) !important;
    border-radius: 999px;
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
  }

  body:has(.ai-page) .site-nav a:hover,
  body:has(.ai-page) .site-nav a:focus-visible {
    border-color: var(--lime) !important;
    background: var(--lime) !important;
    color: var(--ink) !important;
  }

  body:not(:has(.ai-page)) .cart-hover-wrap,
  body:has(.ai-page) .cart-hover-wrap { margin: 0; }

  body:not(:has(.ai-page)) .cart-toggle,
  body:has(.ai-page) .cart-toggle {
    position: relative;
    display: inline-flex;
    width: auto;
    height: auto;
    align-items: center;
    padding: 12px 18px;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    color: var(--muted);
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body:has(.ai-page) .cart-toggle { color: #fff; }

  body:not(:has(.ai-page)) .login-link,
  body:has(.ai-page) .login-link {
    padding: 13px 24px;
    border: 1px solid var(--lime) !important;
    border-radius: 999px;
    background: var(--lime) !important;
    color: var(--ink) !important;
    box-shadow: 0 5px 0 rgba(17, 18, 15, .13) !important;
  }

  body:not(:has(.ai-page)) .theme-toggle,
  body:has(.ai-page) .theme-toggle {
    display: grid !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, .24) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .1) !important;
    color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 8px 20px rgba(17, 18, 15, .14) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
  }
}

/* Restored navbar utilities: search and cart share the same standalone glass treatment. */
.site-header .nav-search-wrap {
  position: relative;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
}

.site-header .nav-search-toggle,
.site-header .cart-toggle {
  display: grid;
  flex: none;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .24) !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1) !important;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 8px 20px rgba(17, 18, 15, .14) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header .nav-search-toggle svg,
.site-header .cart-toggle .cart-icon {
  width: 20px;
  height: 20px;
}

.site-header .nav-search-toggle:hover,
.site-header .nav-search-toggle:focus-visible,
.site-header .cart-toggle:hover,
.site-header .cart-toggle:focus-visible {
  border-color: var(--lime) !important;
  background: rgba(255, 210, 213, .72) !important;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .56), 0 10px 24px rgba(204, 51, 85, .16) !important;
  outline: none;
  transform: translateY(-2px);
}

:root:not([data-theme="dark"]) .site-header .nav-search-toggle,
:root:not([data-theme="dark"]) .site-header .cart-toggle {
  border-color: rgba(17, 18, 15, .16) !important;
  background: rgba(255, 255, 255, .78) !important;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 8px 20px rgba(17, 18, 15, .12) !important;
}

:root[data-theme="dark"] .site-header .nav-search-toggle,
:root[data-theme="dark"] .site-header .cart-toggle {
  color: #fff;
}

@media (max-width: 820px) {
  .site-header .nav-search-wrap {
    margin-left: 10px;
  }

  .site-header .nav-search-toggle,
  .site-header .cart-toggle {
    width: 39px;
    height: 39px;
  }

  .site-header .nav-search-popover {
    top: calc(100% + 12px);
    right: 0;
  }

  :root:not([data-theme="dark"]) .site-header .nav-search-toggle,
  :root:not([data-theme="dark"]) .site-header .cart-toggle {
    border-color: rgba(17, 18, 15, .16) !important;
    background: rgba(255, 255, 255, .86) !important;
    color: var(--ink);
  }
}

/* Product page mobile gallery: image first, details second, thumbnails scroll horizontally. */
@media (max-width: 820px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-detail-media {
    position: static;
    width: 100%;
    min-width: 0;
  }

  .product-detail-image-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .product-detail-thumbs {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    padding: 4px 0 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) transparent;
  }

  .product-thumb {
    flex: 0 0 76px;
  }
}

/* Final light-theme mobile navbar contrast. */
@media (max-width: 820px) {
  :root:not([data-theme="dark"]) body:not(:has(.ai-page)) .menu-toggle,
  :root:not([data-theme="dark"]) body:not(:has(.ai-page)) .cart-toggle,
  :root:not([data-theme="dark"]) body:not(:has(.ai-page)) .login-link,
  :root:not([data-theme="dark"]) body:not(:has(.ai-page)) .theme-toggle,
  :root:not([data-theme="dark"]) body:has(.ai-page) .menu-toggle,
  :root:not([data-theme="dark"]) body:has(.ai-page) .cart-toggle,
  :root:not([data-theme="dark"]) body:has(.ai-page) .login-link,
  :root:not([data-theme="dark"]) body:has(.ai-page) .theme-toggle {
    border-color: rgba(17, 18, 15, .16) !important;
    background: rgba(255, 255, 255, .86) !important;
    color: var(--ink) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 8px 18px rgba(17, 18, 15, .12) !important;
  }

  :root:not([data-theme="dark"]) body:not(:has(.ai-page)) .login-link,
  :root:not([data-theme="dark"]) body:has(.ai-page) .login-link {
    border-color: var(--lime) !important;
    background: var(--lime) !important;
    color: var(--ink) !important;
  }

  :root:not([data-theme="dark"]) body:not(:has(.ai-page)) .site-header .theme-toggle,
  :root:not([data-theme="dark"]) body:has(.ai-page) .site-header .theme-toggle {
    border-color: rgba(17, 18, 15, .22) !important;
    background: rgba(17, 18, 15, .06) !important;
    color: var(--ink) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 5px 12px rgba(17, 18, 15, .1) !important;
  }

  body:not(:has(.ai-page)) .site-header .nav-search-wrap,
  body:not(:has(.ai-page)) .site-header .cart-hover-wrap,
  body:has(.ai-page) .site-header .nav-search-wrap,
  body:has(.ai-page) .site-header .cart-hover-wrap {
    display: none !important;
  }

  body:not(:has(.ai-page)) .site-header .menu-toggle,
  body:has(.ai-page) .site-header .menu-toggle {
    right: 14px !important;
    width: 39px !important;
    height: 39px !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
  }

  body:not(:has(.ai-page)) .site-header .theme-toggle,
  body:has(.ai-page) .site-header .theme-toggle {
    position: absolute;
    top: 50%;
    right: 66px;
    margin: 0 !important;
    transform: translateY(-50%);
  }

  body:not(:has(.ai-page)) .site-header .login-link,
  body:has(.ai-page) .site-header .login-link {
    right: 120px !important;
  }
}

/* Final utility override: keep both navbar icons visible and glassy after legacy navbar rules. */
.site-header .nav-search-toggle,
.site-header .cart-toggle {
  display: grid !important;
  width: 42px !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, .24) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .1) !important;
  color: var(--text) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 8px 20px rgba(17, 18, 15, .14) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

:root:not([data-theme="dark"]) .site-header .nav-search-toggle,
:root:not([data-theme="dark"]) .site-header .cart-toggle {
  border-color: rgba(17, 18, 15, .16) !important;
  background: rgba(255, 255, 255, .78) !important;
  color: var(--ink) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 8px 20px rgba(17, 18, 15, .12) !important;
}

@media (max-width: 820px) {
  .site-header .nav-search-toggle {
    display: grid !important;
    width: 39px !important;
    height: 39px !important;
  }

  :root:not([data-theme="dark"]) .site-header .nav-search-toggle,
  :root:not([data-theme="dark"]) .site-header .cart-toggle {
    border-color: rgba(17, 18, 15, .16) !important;
    background: rgba(255, 255, 255, .86) !important;
    color: var(--ink) !important;
  }
}

/* Storefront card actions */
.showcase-card-actions { display: grid; grid-template-columns: repeat(3, 42px); justify-content: end; gap: 8px; margin: 0 17px 16px; }
.showcase-card-cart, .showcase-card-icon { display: grid; min-height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text); font: inherit; font-size: 11px; font-weight: 700; cursor: pointer; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease; }
.showcase-card-cart { padding: 0; background: var(--ink); border-color: var(--ink); color: #fff; }
.showcase-card-cart svg { width: 17px; height: 17px; }
.showcase-card-cart:hover, .showcase-card-cart:focus-visible { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.showcase-card-cart.is-added { background: var(--orange); border-color: var(--orange); }
.showcase-card-icon { padding: 0; }
.showcase-card-icon svg { width: 17px; height: 17px; }
.showcase-card-icon:hover, .showcase-card-icon:focus-visible, .showcase-card-icon.is-selected { border-color: var(--orange); background: rgba(204, 51, 85, .1); color: var(--orange); transform: translateY(-2px); }

.quick-view-dialog { width: min(92vw, 820px); max-width: none; padding: 0; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); color: var(--text); box-shadow: 0 28px 90px rgba(17, 18, 15, .3); }
.quick-view-dialog::backdrop { background: rgba(17, 18, 15, .58); }
.quick-view-close { position: absolute; z-index: 1; top: 16px; right: 16px; display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--text); font-size: 23px; line-height: 1; cursor: pointer; }
.quick-view-close:hover { border-color: var(--orange); background: var(--lime); color: var(--ink); }
.quick-view-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 30px; align-items: center; padding: 28px; }
.quick-view-image { min-height: 320px; overflow: hidden; border-radius: 16px; background: var(--paper); }
.quick-view-image img { display: block; width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.quick-view-copy h2 { margin: 8px 0 14px; font-size: clamp(28px, 4vw, 48px); line-height: 1; }
.quick-view-copy > p:not(.eyebrow):not(.quick-view-price) { max-width: 420px; color: var(--muted); line-height: 1.6; }
.quick-view-price { margin: 0 0 16px; color: var(--orange); font-size: 18px; }
.quick-view-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.account-grid-side { display: grid; gap: 24px; }
.wishlist-item { display: grid; grid-template-columns: 64px minmax(0, 1fr) 30px; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid color-mix(in srgb, var(--line) 55%, transparent); }
.wishlist-item:first-child { padding-top: 0; }
.wishlist-item:last-child { padding-bottom: 0; border-bottom: 0; }
.wishlist-item img { display: block; width: 64px; height: 64px; border-radius: 10px; background: var(--paper); object-fit: cover; }
.wishlist-item-copy { display: grid; min-width: 0; gap: 5px; }
.wishlist-item-copy a { min-width: 0; color: var(--text); }
.wishlist-item-copy strong { display: block; overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.wishlist-item-copy span { color: var(--orange); font-size: 12px; font-weight: 700; }
.wishlist-remove { display: grid; width: 30px; height: 30px; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--muted); font-size: 18px; cursor: pointer; }
.wishlist-remove:hover { border-color: var(--orange); background: var(--lime); color: var(--ink); }

@media (max-width: 560px) {
  .showcase-card-actions { grid-template-columns: repeat(3, 38px); gap: 6px; margin: 0 11px 12px; }
  .showcase-card-cart, .showcase-card-icon { min-height: 38px; }
  .showcase-card-cart { padding: 0; }
  .quick-view-dialog { width: calc(100vw - 24px); border-radius: 18px; }
  .quick-view-layout { grid-template-columns: 1fr; gap: 18px; padding: 18px; }
  .quick-view-image, .quick-view-image img { min-height: 210px; height: 210px; }
  .quick-view-copy h2 { font-size: 30px; }
}

/* Admin header must remain a normal document header on mobile. */
html body:has(.admin-nav) .site-header {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  min-height: 82px !important;
  padding: 0 clamp(24px, 5vw, 72px) !important;
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: var(--surface) !important;
  color: var(--text) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (max-width: 720px) {
  html body:has(.admin-nav) .site-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand account"
      "nav nav";
    align-items: center;
    column-gap: 12px;
    row-gap: 10px;
    min-height: 0 !important;
    padding: 12px 18px !important;
  }

  html body:has(.admin-nav) .site-header .brand {
    grid-area: brand;
    min-width: 0;
  }

  html body:has(.admin-nav) .site-header .brand-image,
  html body:has(.admin-nav) .site-header .brand-image img {
    width: min(145px, 100%) !important;
    height: 48px !important;
  }

  html body:has(.admin-nav) .admin-account {
    grid-area: account;
    margin-left: 0 !important;
  }

  html body:has(.admin-nav) .admin-nav {
    grid-area: nav;
    display: flex;
    width: 100%;
    min-width: 0;
    margin-left: 0 !important;
    padding: 2px 0 4px;
    gap: 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  html body:has(.admin-nav) .admin-nav::-webkit-scrollbar {
    display: none;
  }

  html body:has(.admin-nav) .admin-nav a {
    flex: 0 0 auto;
    padding: 8px 12px;
    white-space: nowrap;
  }
}

/* Final mobile drawer finish: ensure the new menu wins over all older navbar passes. */
@media (max-width: 820px) {
  body .site-nav {
    width: min(88vw, 390px) !important;
    gap: 12px !important;
    bottom: auto !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 92px 20px 20px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, .2) !important;
    border-right: 0 !important;
    border-radius: 0 0 0 34px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .045) 52%, rgba(204, 51, 85, .1)) , rgba(18, 20, 22, .64) !important;
    box-shadow: -24px 0 70px rgba(0, 0, 0, .4), inset 1px 0 0 rgba(255, 255, 255, .14), inset 0 -1px 0 rgba(255, 255, 255, .08) !important;
    backdrop-filter: blur(26px) saturate(145%) !important;
    -webkit-backdrop-filter: blur(26px) saturate(145%) !important;
    transition: transform .42s cubic-bezier(.22, .8, .25, 1), visibility 0s linear .42s !important;
    will-change: transform;
  }

  body .site-nav.is-open { transition-delay: 0s !important; }

  body .site-nav::before {
    position: absolute;
    top: 30px;
    left: 24px;
    color: rgba(255, 255, 255, .6);
    content: "VIBECRAFT254\\A EXPLORE THE EXPERIENCE";
    white-space: pre;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.8;
  }

  body .site-nav::after {
    position: absolute;
    right: 24px;
    bottom: 26px;
    left: 24px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .42);
    content: "PROJECTORS  •  SCREENS  •  SMART SETUPS";
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
    text-align: center;
  }

  body .site-nav::before,
  body .site-nav::after {
    display: none !important;
    content: none !important;
  }

  body .site-nav .nav-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-color: rgba(255, 255, 255, .2) !important;
    background: rgba(255, 255, 255, .06) !important;
    color: #fff !important;
  }

  body .site-nav > a {
    position: relative;
    min-height: 58px;
    padding: 15px 20px !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, .055) !important;
    color: rgba(255, 255, 255, .92) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 10px 24px rgba(0, 0, 0, .14) !important;
    font-size: 16px !important;
    letter-spacing: -.02em;
    text-align: left;
  }

  body .site-nav > a::after {
    display: block !important;
    margin-left: auto;
    color: rgba(255, 255, 255, .5);
    content: "↗" !important;
    font-size: 18px;
    font-weight: 400;
  }

  body .site-nav > a:first-of-type {
    border-color: rgba(255, 210, 213, .34) !important;
    background: linear-gradient(100deg, rgba(255, 210, 213, .16), rgba(255, 255, 255, .055)) !important;
    color: #fff !important;
  }

  body .site-nav > a.mobile-cart-link {
    border-color: rgba(204, 51, 85, .78) !important;
    background: linear-gradient(100deg, rgba(204, 51, 85, .24), rgba(204, 51, 85, .1)) !important;
    color: #ff6d92 !important;
  }

  body .site-nav > a.mobile-cart-link::after { color: #ff6d92; content: "→" !important; }

  body .site-nav > a.mobile-login-link {
    border-color: rgba(255, 210, 213, .72) !important;
    background: linear-gradient(100deg, #ffd2d5, #e9829b) !important;
    color: #171719 !important;
    box-shadow: 0 12px 28px rgba(204, 51, 85, .22), inset 0 1px 0 rgba(255, 255, 255, .7) !important;
  }

  body .site-nav > a.mobile-login-link::after { color: #171719; content: "→" !important; }

  :root:not([data-theme="dark"]) body .site-nav {
    border-left-color: rgba(17, 18, 15, .12) !important;
    border-color: rgba(17, 18, 15, .16) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .5) 52%, rgba(255, 210, 213, .3)), rgba(245, 244, 241, .62) !important;
    box-shadow: -24px 0 70px rgba(17, 18, 15, .18), inset 1px 0 0 rgba(255, 255, 255, .95), inset 0 -1px 0 rgba(255, 255, 255, .8) !important;
    backdrop-filter: blur(26px) saturate(145%) !important;
    -webkit-backdrop-filter: blur(26px) saturate(145%) !important;
  }

  :root:not([data-theme="dark"]) body .site-nav::before,
  :root:not([data-theme="dark"]) body .site-nav::after {
    color: rgba(17, 18, 15, .52);
    border-top-color: rgba(17, 18, 15, .12);
  }

  :root:not([data-theme="dark"]) body .site-nav .nav-close {
    border-color: rgba(17, 18, 15, .16) !important;
    background: rgba(255, 255, 255, .72) !important;
    color: var(--ink) !important;
  }

  :root:not([data-theme="dark"]) body .site-nav > a {
    border-color: rgba(17, 18, 15, .14) !important;
    background: rgba(255, 255, 255, .7) !important;
    color: var(--ink) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 10px 24px rgba(17, 18, 15, .08) !important;
  }

  :root:not([data-theme="dark"]) body .site-nav > a::after { color: rgba(17, 18, 15, .48); }
}

/* Last mobile drawer override. */
@media (max-width: 820px) {
  body .site-nav {
    width: min(88vw, 390px) !important;
    gap: 12px !important;
    padding: 92px 20px 72px !important;
    overflow: hidden !important;
    border-left: 1px solid rgba(255, 255, 255, .16) !important;
    background: radial-gradient(circle at 100% 0%, rgba(204, 51, 85, .2), transparent 34%), radial-gradient(circle at 0% 100%, rgba(255, 210, 213, .08), transparent 32%), linear-gradient(145deg, rgba(35, 35, 38, .97), rgba(17, 18, 15, .98)) !important;
    box-shadow: -24px 0 70px rgba(0, 0, 0, .42), inset 1px 0 0 rgba(255, 255, 255, .08) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
  }

  body .site-nav .nav-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-color: rgba(255, 255, 255, .2) !important;
    background: rgba(255, 255, 255, .06) !important;
    color: #fff !important;
  }

  body .site-nav > a {
    position: relative;
    min-height: 58px;
    padding: 15px 20px !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, .055) !important;
    color: rgba(255, 255, 255, .92) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 10px 24px rgba(0, 0, 0, .14) !important;
    font-size: 16px !important;
    letter-spacing: -.02em;
    text-align: left;
  }

  body .site-nav > a::after {
    display: block !important;
    margin-left: auto;
    color: rgba(255, 255, 255, .5);
    content: "↗" !important;
    font-size: 18px;
    font-weight: 400;
  }

  body .site-nav > a:first-of-type {
    border-color: rgba(255, 210, 213, .34) !important;
    background: linear-gradient(100deg, rgba(255, 210, 213, .16), rgba(255, 255, 255, .055)) !important;
    color: #fff !important;
  }

  body .site-nav > a.mobile-cart-link {
    border-color: rgba(204, 51, 85, .78) !important;
    background: linear-gradient(100deg, rgba(204, 51, 85, .24), rgba(204, 51, 85, .1)) !important;
    color: #ff6d92 !important;
  }

  body .site-nav > a.mobile-cart-link::after { color: #ff6d92; content: "→" !important; }

  body .site-nav > a.mobile-login-link {
    border-color: rgba(255, 210, 213, .72) !important;
    background: linear-gradient(100deg, #ffd2d5, #e9829b) !important;
    color: #171719 !important;
    box-shadow: 0 12px 28px rgba(204, 51, 85, .22), inset 0 1px 0 rgba(255, 255, 255, .7) !important;
  }

  body .site-nav > a.mobile-login-link::after { color: #171719; content: "→" !important; }

  :root:not([data-theme="dark"]) body .site-nav {
    border-left-color: rgba(17, 18, 15, .12) !important;
    background: radial-gradient(circle at 100% 0%, rgba(204, 51, 85, .12), transparent 34%), linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(246, 244, 241, .98)) !important;
    box-shadow: -24px 0 70px rgba(17, 18, 15, .18), inset 1px 0 0 rgba(255, 255, 255, .9) !important;
  }

  :root:not([data-theme="dark"]) body .site-nav .nav-close {
    border-color: rgba(17, 18, 15, .16) !important;
    background: rgba(255, 255, 255, .72) !important;
    color: var(--ink) !important;
  }

  :root:not([data-theme="dark"]) body .site-nav > a {
    border-color: rgba(17, 18, 15, .14) !important;
    background: rgba(255, 255, 255, .7) !important;
    color: var(--ink) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 10px 24px rgba(17, 18, 15, .08) !important;
  }

  :root:not([data-theme="dark"]) body .site-nav > a::after { color: rgba(17, 18, 15, .48); }
}

/* Final mobile drawer finish: keep the expressive menu styling above all legacy overrides. */
@media (max-width: 820px) {
  .site-nav {
    width: min(88vw, 390px) !important;
    gap: 12px !important;
    padding: 92px 20px 72px !important;
    overflow: hidden !important;
    border-left: 1px solid rgba(255, 255, 255, .16) !important;
    background: radial-gradient(circle at 100% 0%, rgba(204, 51, 85, .2), transparent 34%), radial-gradient(circle at 0% 100%, rgba(255, 210, 213, .08), transparent 32%), linear-gradient(145deg, rgba(35, 35, 38, .97), rgba(17, 18, 15, .98)) !important;
    box-shadow: -24px 0 70px rgba(0, 0, 0, .42), inset 1px 0 0 rgba(255, 255, 255, .08) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
  }

  .site-nav::before {
    position: absolute;
    top: 30px;
    left: 24px;
    color: rgba(255, 255, 255, .6);
    content: "VIBECRAFT254\\A EXPLORE THE EXPERIENCE";
    white-space: pre;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.8;
  }

  .site-nav::after {
    position: absolute;
    right: 24px;
    bottom: 26px;
    left: 24px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .42);
    content: "PROJECTORS  •  SCREENS  •  SMART SETUPS";
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
    text-align: center;
  }

  .site-nav .nav-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-color: rgba(255, 255, 255, .2) !important;
    background: rgba(255, 255, 255, .06) !important;
    color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 8px 22px rgba(0, 0, 0, .2) !important;
  }

  .site-nav > a {
    position: relative;
    min-height: 58px;
    padding: 15px 20px !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, .055) !important;
    color: rgba(255, 255, 255, .92) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 10px 24px rgba(0, 0, 0, .14) !important;
    font-size: 16px !important;
    letter-spacing: -.02em;
    text-align: left;
  }

  .site-nav > a::after {
    display: block !important;
    margin-left: auto;
    color: rgba(255, 255, 255, .5);
    content: "↗" !important;
    font-size: 18px;
    font-weight: 400;
  }

  .site-nav > a:first-of-type {
    border-color: rgba(255, 210, 213, .34) !important;
    background: linear-gradient(100deg, rgba(255, 210, 213, .16), rgba(255, 255, 255, .055)) !important;
    color: #fff !important;
  }

  .site-nav > a:first-of-type::before {
    position: absolute;
    left: -1px;
    width: 3px;
    height: 24px;
    border-radius: 0 5px 5px 0;
    background: #ffd2d5;
    content: "";
  }

  .site-nav > a.mobile-cart-link {
    border-color: rgba(204, 51, 85, .78) !important;
    background: linear-gradient(100deg, rgba(204, 51, 85, .24), rgba(204, 51, 85, .1)) !important;
    color: #ff6d92 !important;
  }

  .site-nav > a.mobile-cart-link::after { color: #ff6d92; content: "→" !important; }

  .site-nav > a.mobile-login-link {
    border-color: rgba(255, 210, 213, .72) !important;
    background: linear-gradient(100deg, #ffd2d5, #e9829b) !important;
    color: #171719 !important;
    box-shadow: 0 12px 28px rgba(204, 51, 85, .22), inset 0 1px 0 rgba(255, 255, 255, .7) !important;
  }

  .site-nav > a.mobile-login-link::after { color: #171719; content: "→" !important; }

  :root:not([data-theme="dark"]) .site-nav {
    border-left-color: rgba(17, 18, 15, .12) !important;
    background: radial-gradient(circle at 100% 0%, rgba(204, 51, 85, .12), transparent 34%), linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(246, 244, 241, .98)) !important;
    box-shadow: -24px 0 70px rgba(17, 18, 15, .18), inset 1px 0 0 rgba(255, 255, 255, .9) !important;
  }

  :root:not([data-theme="dark"]) .site-nav::before,
  :root:not([data-theme="dark"]) .site-nav::after {
    color: rgba(17, 18, 15, .52);
    border-top-color: rgba(17, 18, 15, .12);
  }

  :root:not([data-theme="dark"]) .site-nav .nav-close {
    border-color: rgba(17, 18, 15, .16) !important;
    background: rgba(255, 255, 255, .72) !important;
    color: var(--ink) !important;
  }

  :root:not([data-theme="dark"]) .site-nav > a {
    border-color: rgba(17, 18, 15, .14) !important;
    background: rgba(255, 255, 255, .7) !important;
    color: var(--ink) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 10px 24px rgba(17, 18, 15, .08) !important;
  }

  :root:not([data-theme="dark"]) .site-nav > a::after { color: rgba(17, 18, 15, .48); }

  :root:not([data-theme="dark"]) .site-nav > a:first-of-type {
    border-color: rgba(204, 51, 85, .3) !important;
    background: linear-gradient(100deg, rgba(255, 210, 213, .28), rgba(255, 255, 255, .72)) !important;
    color: var(--ink) !important;
  }
}

/* Return every site navbar to normal document flow. */
body .site-header {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  z-index: 40 !important;
  width: auto !important;
}

/* Mobile menu refresh: a branded glass panel with clearer navigation hierarchy. */
@media (max-width: 820px) {
  .site-nav {
    width: min(88vw, 390px) !important;
    gap: 12px !important;
    padding: 92px 20px 72px !important;
    overflow: hidden;
    border-left: 1px solid rgba(255, 255, 255, .16) !important;
    background:
      radial-gradient(circle at 100% 0%, rgba(204, 51, 85, .2), transparent 34%),
      radial-gradient(circle at 0% 100%, rgba(255, 210, 213, .08), transparent 32%),
      linear-gradient(145deg, rgba(35, 35, 38, .97), rgba(17, 18, 15, .98)) !important;
    box-shadow: -24px 0 70px rgba(0, 0, 0, .42), inset 1px 0 0 rgba(255, 255, 255, .08) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
  }

  .site-nav::before {
    position: absolute;
    top: 30px;
    left: 24px;
    color: rgba(255, 255, 255, .6);
    content: "VIBECRAFT254\\A EXPLORE THE EXPERIENCE";
    white-space: pre;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.8;
  }

  .site-nav::after {
    position: absolute;
    right: 24px;
    bottom: 26px;
    left: 24px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .42);
    content: "PROJECTORS  •  SCREENS  •  SMART SETUPS";
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
    text-align: center;
  }

  .site-nav .nav-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-color: rgba(255, 255, 255, .2) !important;
    background: rgba(255, 255, 255, .06) !important;
    color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 8px 22px rgba(0, 0, 0, .2);
  }

  .site-nav > a {
    position: relative;
    min-height: 58px;
    padding: 15px 20px !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, .055) !important;
    color: rgba(255, 255, 255, .92) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 10px 24px rgba(0, 0, 0, .14) !important;
    font-size: 16px !important;
    letter-spacing: -.02em;
    text-align: left;
  }

  .site-nav > a::after {
    display: block !important;
    margin-left: auto;
    color: rgba(255, 255, 255, .5);
    content: "↗";
    font-size: 18px;
    font-weight: 400;
  }

  .site-nav > a:first-of-type {
    border-color: rgba(255, 210, 213, .34) !important;
    background: linear-gradient(100deg, rgba(255, 210, 213, .16), rgba(255, 255, 255, .055)) !important;
    color: #fff !important;
  }

  .site-nav > a:first-of-type::before {
    position: absolute;
    left: -1px;
    width: 3px;
    height: 24px;
    border-radius: 0 5px 5px 0;
    background: #ffd2d5;
    content: "";
  }

  .site-nav > a.mobile-cart-link {
    border-color: rgba(204, 51, 85, .78) !important;
    background: linear-gradient(100deg, rgba(204, 51, 85, .24), rgba(204, 51, 85, .1)) !important;
    color: #ff6d92 !important;
  }

  .site-nav > a.mobile-cart-link::after {
    color: #ff6d92;
    content: "→";
  }

  .site-nav > a.mobile-login-link {
    border-color: rgba(255, 210, 213, .72) !important;
    background: linear-gradient(100deg, #ffd2d5, #e9829b) !important;
    color: #171719 !important;
    box-shadow: 0 12px 28px rgba(204, 51, 85, .22), inset 0 1px 0 rgba(255, 255, 255, .7) !important;
  }

  .site-nav > a.mobile-login-link::after {
    color: #171719;
    content: "→";
  }

  .site-nav.is-open > a:nth-child(2) { transition-delay: .04s; }
  .site-nav.is-open > a:nth-child(3) { transition-delay: .08s; }
  .site-nav.is-open > a:nth-child(4) { transition-delay: .12s; }
  .site-nav.is-open > a:nth-child(5) { transition-delay: .16s; }
  .site-nav.is-open > a:nth-child(6) { transition-delay: .2s; }

  :root:not([data-theme="dark"]) .site-nav {
    border-left-color: rgba(17, 18, 15, .12) !important;
    background:
      radial-gradient(circle at 100% 0%, rgba(204, 51, 85, .12), transparent 34%),
      linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(246, 244, 241, .98)) !important;
    box-shadow: -24px 0 70px rgba(17, 18, 15, .18), inset 1px 0 0 rgba(255, 255, 255, .9) !important;
  }

  :root:not([data-theme="dark"]) .site-nav::before,
  :root:not([data-theme="dark"]) .site-nav::after {
    color: rgba(17, 18, 15, .52);
    border-top-color: rgba(17, 18, 15, .12);
  }

  :root:not([data-theme="dark"]) .site-nav .nav-close {
    border-color: rgba(17, 18, 15, .16) !important;
    background: rgba(255, 255, 255, .72) !important;
    color: var(--ink) !important;
  }

  :root:not([data-theme="dark"]) .site-nav > a {
    border-color: rgba(17, 18, 15, .14) !important;
    background: rgba(255, 255, 255, .7) !important;
    color: var(--ink) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 10px 24px rgba(17, 18, 15, .08) !important;
  }

  :root:not([data-theme="dark"]) .site-nav > a::after {
    color: rgba(17, 18, 15, .48);
  }

  :root:not([data-theme="dark"]) .site-nav > a:first-of-type {
    border-color: rgba(204, 51, 85, .3) !important;
    background: linear-gradient(100deg, rgba(255, 210, 213, .28), rgba(255, 255, 255, .72)) !important;
    color: var(--ink) !important;
  }
}

/* On small screens, keep the header compact and place authentication inside the menu. */
.mobile-login-link {
  display: none;
}

@media (max-width: 820px) {
  .site-header .account-menu-wrap .desktop-auth-link {
    display: none !important;
  }

  .site-nav .mobile-login-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .site-nav.is-open a.mobile-login-link {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Beat the older page-specific cart reset so the standalone glass button wins. */
body:not(:has(.ai-page)) .site-header .nav-search-toggle,
body:not(:has(.ai-page)) .site-header .cart-toggle,
body:has(.ai-page) .site-header .nav-search-toggle,
body:has(.ai-page) .site-header .cart-toggle {
  display: grid !important;
  width: 42px !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, .24) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .1) !important;
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 8px 20px rgba(17, 18, 15, .14) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

:root:not([data-theme="dark"]) body:not(:has(.ai-page)) .site-header .nav-search-toggle,
:root:not([data-theme="dark"]) body:not(:has(.ai-page)) .site-header .cart-toggle,
:root:not([data-theme="dark"]) body:has(.ai-page) .site-header .nav-search-toggle,
:root:not([data-theme="dark"]) body:has(.ai-page) .site-header .cart-toggle {
  border-color: rgba(17, 18, 15, .16) !important;
  background: rgba(255, 255, 255, .82) !important;
  color: var(--ink) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 8px 20px rgba(17, 18, 15, .12) !important;
}

@media (max-width: 820px) {
  body:not(:has(.ai-page)) .site-header .nav-search-toggle,
  body:not(:has(.ai-page)) .site-header .cart-toggle,
  body:has(.ai-page) .site-header .nav-search-toggle,
  body:has(.ai-page) .site-header .cart-toggle {
    width: 39px !important;
    height: 39px !important;
  }
}

/* Keep the hero edge clean if an older slide template still includes the fade node. */
.hero-slide-fade { display: none !important; }

/* Desktop hero: show the full product image instead of enlarging and cropping it. */
@media (min-width: 821px) {
  .hero-slideshow {
    height: min(620px, calc(100svh - 82px));
    min-height: min(620px, calc(100svh - 82px));
  }

  .hero-slide img {
    object-fit: contain;
    object-position: center;
    background: var(--surface);
  }

  .hero-slide-info {
    padding-bottom: clamp(42px, 7vh, 78px);
  }

.hero-slide-title {
    max-width: 600px;
    font-size: clamp(30px, 3vw, 42px);
  }
}

/* Product gallery polish */
.product-detail-image-frame {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-detail-image-frame img {
  padding: clamp(10px, 2vw, 22px);
  object-fit: contain;
  cursor: zoom-in;
  transition: transform .45s cubic-bezier(.22, .8, .25, 1), opacity .2s ease;
}

.product-detail-image-frame.is-hover-zoomed {
  cursor: zoom-out;
}

.product-detail-image-frame.is-hover-zoomed img {
  transform: scale(1.55);
  transition-duration: .18s;
}

.product-detail-thumbs {
  gap: 10px;
  padding: 2px;
}

.product-thumb {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-thumb img {
  padding: 5px;
  object-fit: contain;
}

.product-thumb.is-active {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--orange) 20%, transparent), 0 8px 18px rgba(17, 18, 15, .12);
}

/* Let the navbar scroll normally instead of staying pinned. */
body:not(:has(.ai-page)) .site-header,
body:has(.ai-page) .site-header {
  position: relative !important;
  top: auto !important;
}

@media (max-width: 820px) {
  body:not(:has(.ai-page)) .site-header {
    position: relative !important;
    top: auto;
    right: auto;
    left: auto;
    min-height: 70px;
    padding: 0 18px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    border-radius: 0 !important;
    background: var(--surface) !important;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body:has(.ai-page) .site-header {
    position: relative !important;
    top: auto;
    right: auto;
    left: auto;
    min-height: 70px;
    padding: 0 18px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 0 !important;
    background: var(--ink) !important;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Restore the original navbar form and spacing. */
@media (min-width: 821px) {
  body:not(:has(.ai-page)) .site-header {
    position: relative !important;
    top: auto;
    right: auto;
    left: auto;
    min-height: 82px;
    gap: 28px;
    padding: 0 clamp(24px, 5vw, 72px) !important;
    overflow: visible;
    border: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    border-radius: 0 !important;
    background: var(--surface) !important;
    color: var(--text);
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body:has(.ai-page) .site-header {
    position: relative !important;
    top: auto;
    right: auto;
    left: auto;
    min-height: 82px;
    gap: 28px;
    padding: 0 clamp(24px, 5vw, 72px) !important;
    overflow: visible;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 0 !important;
    background: var(--ink) !important;
    color: #fff;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body:not(:has(.ai-page)) .site-header .brand-image,
  body:not(:has(.ai-page)) .site-header .brand-image img,
  body:has(.ai-page) .site-header .brand-image,
  body:has(.ai-page) .site-header .brand-image img {
    width: 180px;
    height: 64px;
  }

  body:not(:has(.ai-page)) .site-nav,
  body:has(.ai-page) .site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
  }

  body:not(:has(.ai-page)) .site-nav a {
    padding: 11px 20px;
    border: 1px solid var(--line) !important;
    border-radius: 999px;
    background: var(--paper) !important;
    color: var(--text) !important;
    box-shadow: 0 4px 0 rgba(17, 18, 15, .1) !important;
    transform: none;
  }

  body:not(:has(.ai-page)) .site-nav a:hover,
  body:not(:has(.ai-page)) .site-nav a:focus-visible {
    border-color: var(--emphasis) !important;
    background: var(--emphasis) !important;
    color: var(--emphasis-text) !important;
    box-shadow: 0 6px 0 rgba(17, 18, 15, .1) !important;
    transform: translateY(-2px);
  }

  body:has(.ai-page) .site-nav a {
    padding: 11px 20px;
    border: 1px solid rgba(255, 255, 255, .32) !important;
    border-radius: 999px;
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
  }

  body:has(.ai-page) .site-nav a:hover,
  body:has(.ai-page) .site-nav a:focus-visible {
    border-color: var(--lime) !important;
    background: var(--lime) !important;
    color: var(--ink) !important;
  }

  body:not(:has(.ai-page)) .nav-search-toggle,
  body:has(.ai-page) .nav-search-toggle {
    width: 42px;
    height: 42px;
    margin-left: 4px;
    border-color: var(--line);
    background: var(--surface);
    color: var(--text);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body:not(:has(.ai-page)) .cart-toggle,
  body:has(.ai-page) .cart-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body:not(:has(.ai-page)) .login-link {
    padding: 13px 24px;
    border-color: var(--lime) !important;
    background: var(--lime) !important;
    color: var(--ink) !important;
    box-shadow: 0 5px 0 rgba(17, 18, 15, .13) !important;
  }

  body:has(.ai-page) .login-link {
    padding: 13px 24px;
    border-color: var(--lime) !important;
    background: var(--lime) !important;
    color: var(--ink) !important;
    box-shadow: 0 5px 0 rgba(0, 0, 0, .18) !important;
  }

  body:not(:has(.ai-page)) .theme-toggle,
  body:has(.ai-page) .theme-toggle {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    border-color: var(--line);
    background: var(--surface);
    color: var(--text);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 820px) {
  body:not(:has(.ai-page)) .site-header {
    position: relative !important;
    top: auto;
    right: auto;
    left: auto;
    min-height: 70px;
    padding: 0 18px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    border-radius: 0 !important;
    background: var(--surface) !important;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body:has(.ai-page) .site-header {
    position: relative !important;
    top: auto;
    right: auto;
    left: auto;
    min-height: 70px;
    padding: 0 18px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 0 !important;
    background: var(--ink) !important;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Premium glass direction for the unified navbar. */
@media (min-width: 821px) {
  body:not(:has(.ai-page)) .site-header,
  body:has(.ai-page) .site-header {
    min-height: 66px;
    top: 14px;
    right: 22px;
    left: 22px;
    gap: 14px;
    padding: 5px 10px 5px 14px !important;
    overflow: hidden;
    background: linear-gradient(110deg, rgba(14, 16, 17, .7), rgba(21, 25, 27, .46) 58%, rgba(14, 16, 17, .66)) !important;
    border-color: rgba(255, 255, 255, .2) !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .2), inset 0 -1px 0 rgba(255, 255, 255, .06) !important;
  }

  body:not(:has(.ai-page)) .site-header::before,
  body:has(.ai-page) .site-header::before {
    position: absolute;
    top: 0;
    right: 18%;
    left: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .52), transparent);
    content: "";
    opacity: .7;
    pointer-events: none;
  }

  body:not(:has(.ai-page)) .site-header .brand-image,
  body:not(:has(.ai-page)) .site-header .brand-image img,
  body:has(.ai-page) .site-header .brand-image,
  body:has(.ai-page) .site-header .brand-image img {
    width: 158px;
    height: 48px;
  }

  body:not(:has(.ai-page)) .site-header .nav-main-cluster,
  body:has(.ai-page) .site-header .nav-main-cluster { gap: 10px; }

  body:not(:has(.ai-page)) .nav-pill .site-nav,
  body:has(.ai-page) .nav-pill .site-nav { gap: 2px; }

  body:not(:has(.ai-page)) .nav-pill .site-nav a,
  body:has(.ai-page) .nav-pill .site-nav a {
    padding: 10px 17px;
    border-color: rgba(255, 255, 255, .12) !important;
    background: rgba(255, 255, 255, .045) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 4px 12px rgba(0, 0, 0, .08) !important;
  }

  body:not(:has(.ai-page)) .nav-pill .site-nav a:first-of-type,
  body:not(:has(.ai-page)) .nav-pill .site-nav a:hover,
  body:has(.ai-page) .nav-pill .site-nav a:first-of-type,
  body:has(.ai-page) .nav-pill .site-nav a:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, .2), rgba(255, 210, 213, .12)) !important;
    border-color: rgba(255, 255, 255, .28) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 5px 16px rgba(0, 0, 0, .12) !important;
  }

  body:not(:has(.ai-page)) .icon-group,
  body:has(.ai-page) .icon-group { gap: 10px; }

  body:not(:has(.ai-page)) .icon-group .nav-search-toggle,
  body:not(:has(.ai-page)) .icon-group .cart-toggle,
  body:not(:has(.ai-page)) .icon-group .theme-toggle,
  body:has(.ai-page) .icon-group .nav-search-toggle,
  body:has(.ai-page) .icon-group .cart-toggle,
  body:has(.ai-page) .icon-group .theme-toggle {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .24);
  }

  body:not(:has(.ai-page)) .icon-group .login-link,
  body:has(.ai-page) .icon-group .login-link {
    padding: 11px 18px;
    background: rgba(255, 210, 213, .78) !important;
    border-color: rgba(255, 255, 255, .58) !important;
    color: var(--ink) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7), 0 7px 18px rgba(0, 0, 0, .14) !important;
  }
}

@media (max-width: 820px) {
  body:not(:has(.ai-page)) .site-header,
  body:has(.ai-page) .site-header {
    background: linear-gradient(110deg, rgba(14, 16, 17, .76), rgba(21, 25, 27, .55)) !important;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .18) !important;
  }
}
@media (max-width: 560px) { .section-shell { width: min(100% - 36px, 1180px); }.site-header { min-height: 70px; padding: 0 18px; gap: 10px; }.brand-image { width: 145px; height: 55px; }.brand-image img { width: 145px; height: 55px; }.menu-toggle { font-size: 11px; }.login-link { font-size: 11px; }.hero-slideshow { min-height: 520px; }.hero-slide-fade { height: 70px; }.hero-intro-band { padding: 32px 18px 16px; }.hero-intro { font-size: 15px; }.hero-slide-title { font-size: 20px; }.hero-slide-desc { -webkit-line-clamp: 2; }.section-heading { display: block; }.section-note { margin-top: 22px; }.category-rail-heading { display: block; }.category-rail-heading p { margin-top: 6px; }.statement { padding-bottom: 95px; }.footer-columns { grid-template-columns: 1fr; gap: 32px; }.footer-bottom { flex-direction: column; gap: 27px; }.ai-orb-lg { width: 64px; height: 64px; }.ai-message { max-width: 94%; } }

@page { size: A4 portrait; margin: 12mm; }

/* Ask me sheet */
body:has(.ai-page) { background: #d8d8d6; }
body:has(.ai-page) .site-header { border-bottom-color: transparent; background: transparent; }
body:has(.ai-page) main { min-height: calc(100vh - 82px); display: flex; align-items: stretch; }
.ai-page { width: 100%; min-height: calc(100vh - 82px); margin: 0; padding: 0; border-radius: 0; background: #fbfaf7; box-shadow: none; overflow: hidden; display: flex; flex-direction: column; }
.ai-sheet-head { flex: none; display: grid; grid-template-columns: 40px 1fr 40px; align-items: center; gap: 12px; padding: 20px clamp(24px, 5vw, 72px) 12px; }
.ai-sheet-head > strong { font-family: var(--display); font-size: 28px; letter-spacing: -.05em; text-align: center; }
.ai-sheet-head > strong span { color: var(--orange); font-size: 19px; vertical-align: top; }
.ai-sheet-icon { display: grid; place-items: center; width: 34px; height: 34px; padding: 0; border: 0; border-radius: 50%; background: transparent; color: var(--text); font-size: 26px; line-height: 1; text-decoration: none; cursor: pointer; }
.ai-sheet-icon:hover { background: var(--paper); }
.ai-intro { flex: none; max-width: none; margin: 0; padding: clamp(28px, 4vw, 48px) clamp(24px, 5vw, 72px) 12px; text-align: left; }
.ai-intro h1 { max-width: none; margin: 0 0 14px; font-size: clamp(30px, 5vw, 42px); letter-spacing: -.06em; line-height: 1.02; }
.ai-intro h1 em { color: inherit; }
.ai-sub { max-width: 570px; margin: 0; color: #696965; font-size: 16px; line-height: 1.45; }
.ai-chat { display: flex; width: auto; max-width: none; min-height: 0; flex: 1 1 auto; flex-direction: column; padding: 0 clamp(24px, 5vw, 72px) 116px; }
.ai-messages { flex: 1 1 auto; min-height: 180px; max-height: none; margin: 0; padding: 18px 0 16px; }
.ai-message { max-width: 92%; gap: 0; }
.ai-message-avatar { display: none; }
.ai-message-bubble { font-size: 16px; line-height: 1.5; }
.ai-message.is-assistant .ai-message-bubble { padding: 8px 0; border: 0; background: transparent; }
.ai-message.is-user .ai-message-bubble { padding: 14px 18px; border-radius: 22px 22px 6px 22px; background: #eee8df; color: var(--text); }
.ai-message.is-thinking .ai-message-bubble { color: #777773; }
.ai-suggestions { justify-content: flex-end; margin: 4px 0 16px; }
.ai-chip { border-color: transparent; background: #eee8df; font-size: 14px; font-weight: 500; }
.ai-chip:hover { border-color: var(--line); background: #e7dfd4; }
.ai-compare-tools { margin: 4px 0 16px; padding: 0; border: 0; background: transparent; }
.ai-compare-heading { margin-bottom: 10px; }
.ai-compare-heading .ai-orb { display: none; }
.ai-compare-fields { gap: 8px; }
.ai-compare-fields select { border-color: transparent; border-radius: 999px; background: #eee8df; }
.ai-compare-fields .button { border-radius: 999px; }
.ai-input-row { flex: none; align-items: center; gap: 8px; margin-top: auto; padding: 8px 8px 8px 18px; border-radius: 999px; background: #e9dfd1; }
.ai-input-row input { padding: 10px 0; border: 0; background: transparent; font-size: 16px; }
.ai-input-row input:focus-visible { box-shadow: none; }
.ai-input-row button { padding: 0; }
@media (max-width: 820px) { body:has(.ai-page) main { min-height: calc(100vh - 70px); } .ai-page { min-height: calc(100vh - 70px); } }
@media (max-width: 560px) { .ai-page { width: 100%; border-radius: 0; } .ai-sheet-head { padding: 18px 18px 10px; } .ai-intro { padding: 22px 22px 8px; } .ai-chat { padding: 0 18px 96px; } .ai-intro h1 { font-size: 32px; } .ai-sub { font-size: 15px; } .ai-messages { min-height: 160px; } .ai-compare-fields { grid-template-columns: 1fr; } .ai-compare-vs { display: none; } }

/* Product image lightbox */
.product-detail-image-frame { position: relative; }
.product-image-zoom { position: absolute; right: 14px; bottom: 14px; padding: 9px 12px; border: 1px solid rgba(255, 255, 255, .72); background: rgba(17, 18, 15, .66); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .05em; cursor: pointer; backdrop-filter: blur(7px); }
.product-image-zoom:hover { background: var(--orange); border-color: var(--orange); }
.product-lightbox { width: min(92vw, 1100px); height: min(88vh, 820px); max-width: none; max-height: none; padding: 22px; border: 1px solid var(--line); background: var(--surface); box-shadow: 0 24px 80px rgba(17, 18, 15, .35); }
.product-lightbox::backdrop { background: rgba(17, 18, 15, .78); }
.product-lightbox img { display: block; width: 100%; height: 100%; object-fit: contain; }
.product-lightbox-close { position: absolute; z-index: 1; top: 12px; right: 12px; padding: 8px 11px; border: 1px solid rgba(255, 255, 255, .5); background: rgba(17, 18, 15, .72); color: #fff; font-size: 10px; font-weight: 700; cursor: pointer; }
.product-lightbox-close:hover { background: var(--orange); border-color: var(--orange); }
@media (max-width: 560px) { .product-lightbox { width: 100vw; height: 82vh; padding: 12px; border-right: 0; border-left: 0; } .product-image-zoom { right: 10px; bottom: 10px; } }

/* Product comparison */
.showcase-card { position: relative; }
.showcase-card-link { display: flex; min-width: 0; flex: 1 1 auto; flex-direction: column; color: inherit; }
.showcase-card-link:hover { color: inherit; }
.compare-toggle { align-self: flex-start; margin: 0 17px 16px; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; transition: background .18s ease, border-color .18s ease, color .18s ease; }
.compare-toggle:hover, .compare-toggle.is-selected { border-color: var(--orange); background: rgba(204, 51, 85, .08); color: var(--orange); }
.compare-toggle.is-selected::before { content: "✓ "; }
.compare-dock { position: sticky; z-index: 5; bottom: 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 28px; padding: 14px 16px; border: 1px solid var(--text); background: var(--ink); color: #fff; box-shadow: 0 12px 30px rgba(17, 18, 15, .2); }
.compare-dock > div { display: flex; align-items: baseline; gap: 12px; }
.compare-dock strong { font-size: 15px; }
.compare-dock > div > span { color: rgba(255, 255, 255, .65); font-size: 11px; }
.compare-dock .button { padding: 10px 13px 10px 16px; background: var(--lime); color: var(--ink); }
.compare-dock .button:hover { background: #fff; }
.compare-clear { padding: 8px 0; border: 0; background: transparent; color: rgba(255, 255, 255, .65); font-size: 11px; font-weight: 700; cursor: pointer; }
.compare-clear:hover { color: #fff; }
.compare-dock .button:disabled { opacity: .45; cursor: not-allowed; }
.compare-verdict { margin-bottom: 28px; padding: 18px; border: 1px solid var(--line); background: var(--paper); }
.compare-verdict-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.compare-verdict-title { display: flex; align-items: center; gap: 10px; }
.compare-verdict-title .ai-orb { width: 24px; height: 24px; }
.compare-verdict-title .eyebrow { margin: 0 0 3px; font-size: 9px; }
.compare-verdict-title strong { display: block; font-size: 15px; }
.compare-verdict-head > span { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.compare-verdict p { max-width: 780px; margin: 0; color: var(--text); font-size: 13px; line-height: 1.65; white-space: pre-line; }
.compare-dialog { width: min(94vw, 1000px); max-width: none; padding: 28px; border: 1px solid var(--line); background: var(--surface); color: var(--text); box-shadow: 0 24px 70px rgba(17, 18, 15, .28); }
.compare-dialog::backdrop { background: rgba(17, 18, 15, .58); }
.compare-dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.compare-dialog-head .eyebrow { margin-bottom: 8px; }
.compare-dialog-head h2 { font-size: clamp(30px, 5vw, 52px); }
.compare-dialog-close { padding: 8px 12px; border: 1px solid var(--line); background: transparent; color: var(--text); font-size: 11px; font-weight: 700; cursor: pointer; }
.compare-dialog-close:hover { border-color: var(--text); }
.compare-table-scroll { display: none; align-items: center; justify-content: space-between; gap: 12px; margin: 0 0 8px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--tint-weak); color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.compare-table-scroll span:last-child { color: var(--orange); font-size: 16px; line-height: 1; }
.compare-table-wrap { overflow-x: auto; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch; scrollbar-color: var(--orange) var(--tint); scrollbar-width: auto; }
.compare-table-wrap:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.compare-table-wrap::-webkit-scrollbar { height: 10px; }
.compare-table-wrap::-webkit-scrollbar-track { border-radius: 999px; background: var(--tint); }
.compare-table-wrap::-webkit-scrollbar-thumb { border: 2px solid var(--tint); border-radius: 999px; background: var(--orange); }
.compare-table-wrap::-webkit-scrollbar-thumb:hover { background: var(--lime); }
.compare-table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 13px; }
.compare-table th, .compare-table td { padding: 15px 14px; border-top: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare-table thead th { border-top: 0; font-family: var(--display); font-size: 15px; line-height: 1.1; }
.compare-table tbody th { width: 140px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.compare-table tbody td { min-width: 150px; font-weight: 700; }
@media (max-width: 560px) { .compare-dock { align-items: stretch; flex-direction: column; gap: 10px; } .compare-dock > div { justify-content: space-between; } .compare-dock .button { justify-content: center; } .compare-clear { align-self: center; } .compare-dialog { padding: 20px 16px; } .compare-dialog-head { margin-bottom: 16px; } .compare-toggle { margin-right: 12px; margin-left: 12px; } .compare-verdict-head { align-items: flex-start; flex-direction: column; gap: 10px; } .compare-table-scroll { display: flex; } .compare-table-wrap { margin: 0 -16px; padding: 0 16px 10px; } .compare-table { min-width: 760px; } }

/* Product detail showroom polish */
.product-main { padding-top: clamp(34px, 5vw, 64px); }
.product-detail { grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); gap: clamp(34px, 6vw, 88px); }
.product-detail-media { top: 96px; }
.product-detail-image-frame { aspect-ratio: 4 / 3; border-radius: 0; background: transparent; }
.product-detail-image-frame img { object-fit: contain; cursor: zoom-in; transition: opacity .2s ease, transform .45s cubic-bezier(.22, .8, .25, 1); }
.product-detail-image-frame.is-hover-zoomed { cursor: zoom-out; }
.product-detail-image-frame.is-hover-zoomed img { transform: scale(1.55); transition-duration: .18s; }
.product-thumb { width: 76px; height: 62px; border-radius: 0; }
.product-detail-info { padding-top: 8px; }
.product-detail-info h1 { max-width: 620px; margin-top: 10px; font-size: clamp(38px, 5vw, 68px); letter-spacing: -.06em; line-height: .93; }
.product-detail-price { margin-top: 22px; font-size: 30px; }
.product-detail-summary { max-width: 520px; margin-bottom: 22px; line-height: 1.55; }
.product-visual-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin: 0 0 28px; border: 1px solid var(--line); background: var(--line); }
.product-visual-fact { min-width: 0; padding: 13px 12px; background: var(--surface); }
.product-visual-fact span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.product-visual-fact strong { display: block; font-size: 12px; line-height: 1.2; overflow-wrap: anywhere; }
.product-detail-qty { margin-bottom: 14px; }
.product-detail-info > .auth-submit { min-width: 190px; justify-content: center; }
.product-purchase-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.product-purchase-actions .button { min-width: 180px; justify-content: center; }
.product-purchase-actions .auth-submit { width: auto; margin-top: 0; }
.whatsapp-product-button { width: fit-content; min-width: 180px; margin-top: 10px; justify-content: center; border-color: #159447; background: linear-gradient(180deg, #7af7a8 0%, #36df75 22%, #25d366 55%, #1cb85a 100%); color: #062a15; box-shadow: inset 0 1px 1px rgba(255, 255, 255, .8), inset 0 -2px 0 rgba(8, 112, 52, .35), inset 0 0 0 1px rgba(255, 255, 255, .18); transform: translateY(0); transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.whatsapp-product-button:hover, .whatsapp-product-button:focus-visible { border-color: #12813d; background: linear-gradient(180deg, #9bffc0 0%, #49e985 22%, #2bd96b 55%, #20c761 100%); color: #041f10; box-shadow: inset 0 1px 1px rgba(255, 255, 255, .9), inset 0 -2px 0 rgba(8, 112, 52, .3), inset 0 0 0 1px rgba(255, 255, 255, .24); transform: translateY(-1px); }
.whatsapp-product-button:active { box-shadow: inset 0 2px 2px rgba(8, 112, 52, .25), inset 0 -1px 0 rgba(255, 255, 255, .35); transform: translateY(1px); }
.product-demo-link { display: inline-flex; align-items: center; gap: 8px; margin: 14px 0 0 18px; color: var(--text); font-size: 12px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.product-demo-link span { color: var(--orange); font-size: 17px; text-decoration: none; transition: transform .18s ease; }
@media (max-width: 560px) {
  .product-purchase-actions { display: grid; grid-template-columns: 1fr; }
  .product-purchase-actions .button { width: 100%; }
  .whatsapp-product-button { width: 100%; }
}
.product-demo-link:hover span { transform: translateX(4px); }
.product-detail-section { margin-top: 42px; padding-top: 24px; }
.product-detail-section h2 { font-size: 18px; letter-spacing: -.03em; }
.product-detail-specs dl { gap: 10px 24px; }
.product-detail-specs dt { font-size: 11px; }
.product-detail-specs dd { font-size: 13px; }
@media (max-width: 820px) { .product-detail-info { padding-top: 0; } .product-detail-info h1 { font-size: clamp(38px, 10vw, 60px); } }
@media (max-width: 560px) { .product-visual-facts { grid-template-columns: 1fr; } .product-visual-fact { display: flex; align-items: center; justify-content: space-between; gap: 12px; } .product-visual-fact span { margin: 0; } .product-demo-link { margin-left: 0; } }

/* Product showroom refresh */
.showcase-hero { min-height: min(760px, calc(100vh - 82px)); background: #101311; }
@media (min-width: 821px) { .showcase-hero { height: min(760px, 52vw); min-height: 0; } }
.showcase-hero .hero-slide img { object-fit: cover; object-position: center; }
@media (max-width: 820px) { .showcase-hero .hero-slide img { object-fit: cover; background: var(--ink); } }
.showcase-hero .hero-slide-scrim { background: rgba(12, 15, 13, .34); }
.showcase-hero .hero-slide-info { max-width: 760px; padding-bottom: clamp(74px, 10vh, 120px); }
.showcase-hero .hero-slide-title { max-width: 680px; margin-bottom: 14px; font-size: clamp(32px, 4.5vw, 56px); letter-spacing: -.04em; line-height: .98; }
.showcase-hero .hero-slide-desc { margin-bottom: 20px; font-size: 15px; }
.showcase-hero .hero-slide-cta { padding: 13px 16px 13px 20px; }
.showcase-collection { padding-top: 20px; padding-bottom: 108px; }
.showcase-collection .section-heading, .room-showcase .section-heading { margin-bottom: 28px; }
.showcase-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.showcase-filter { padding: 10px 17px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); font-size: 12px; font-weight: 700; cursor: pointer; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease; }
.showcase-filter:hover { border-color: var(--text); color: var(--text); transform: translateY(-1px); }
.showcase-filter.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.showcase-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.showcase-grid .shop-rail-status { grid-column: 1 / -1; }
.showcase-card { width: auto; min-width: 0; border-radius: 4px; border-color: var(--line); box-shadow: none; }
.showcase-card:hover { border-color: var(--text); box-shadow: 0 12px 28px rgba(17, 18, 15, .12); transform: translateY(-4px); }
.showcase-card .product-card-media { aspect-ratio: 16 / 9; }
.showcase-card .product-card-media img { object-fit: cover; }
.showcase-card-label, .showcase-card-index { position: absolute; top: 12px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.showcase-card-label { left: 12px; padding: 5px 8px; background: var(--lime); color: var(--ink); }
.showcase-card-index { right: 14px; color: rgba(255, 255, 255, .85); text-shadow: 0 1px 4px rgba(0, 0, 0, .5); }
.showcase-card .product-card-body { gap: 9px; padding: 17px; }
.showcase-card-top, .showcase-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.showcase-card-brand { color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.showcase-card-arrow { color: var(--muted); font-size: 20px; line-height: 1; transition: color .18s ease, transform .18s ease; }
.showcase-card:hover .showcase-card-arrow { color: var(--orange); transform: translate(2px, -2px); }
.showcase-card h3 { min-height: 42px; font-size: 17px; }
.showcase-card .product-card-summary { display: none; }
.showcase-card-meta { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.showcase-card-meta strong { color: var(--text); font-size: 14px; }
.showcase-card .showcase-card-meta { justify-content: flex-start; }
.showcase-card .showcase-card-meta strong { color: var(--orange); font-size: 15px; }
.room-showcase { padding-top: 70px; padding-bottom: 112px; }
.room-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 14px; }
.room-tile { position: relative; display: flex; min-height: 300px; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 24px; background-color: #252a27; background-position: center; background-size: cover; color: #fff; }
.room-tile::before { position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(12, 15, 13, .08) 20%, rgba(12, 15, 13, .16) 42%, rgba(12, 15, 13, .86) 100%); content: ""; transition: background .25s ease; }
.room-tile::after { position: absolute; z-index: 0; inset: 0; background: inherit; background-position: center; background-size: cover; content: ""; pointer-events: none; transition: transform .55s cubic-bezier(.22, .8, .25, 1); }
.room-tile:hover::before { background: linear-gradient(180deg, rgba(12, 15, 13, .04) 20%, rgba(12, 15, 13, .12) 42%, rgba(12, 15, 13, .78) 100%); }
.room-tile:hover::after { transform: scale(1.06); }
.room-tile span, .room-tile strong { position: relative; z-index: 2; }
.room-tile span { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; color: var(--lime); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.room-tile span::before { width: 22px; height: 2px; border-radius: 99px; background: var(--orange); content: ""; }
.room-showcase .section-heading h2 { position: relative; display: inline-block; padding-bottom: .12em; font-family: "Times New Roman", Times, serif; font-size: clamp(48px, 7.5vw, 88px); letter-spacing: -.025em; line-height: .82; }
.room-showcase .section-heading h2::after { position: absolute; right: 4%; bottom: -.04em; left: 2%; height: 4px; border-radius: 99px; background: var(--orange); content: ""; transform: rotate(-1.5deg) skewX(-22deg); transform-origin: left center; }
.room-showcase .section-heading h2 em { font-family: "Times New Roman", Times, serif; font-style: italic; font-weight: 900; letter-spacing: -.08em; }
.room-tile strong { font-family: "Times New Roman", Times, serif; font-size: clamp(30px, 3.7vw, 48px); font-weight: 700; letter-spacing: -.015em; line-height: .88; text-wrap: balance; }
.room-tile-home { background-image: url("https://images.unsplash.com/photo-1548095115-45697e222a58?auto=format&fit=crop&q=82&w=1200"); }
.room-tile-office { background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&q=82&w=1000"); }
.room-tile-outdoor { background-image: url("assets/outdoor-cinema.jpg"); }
.showcase-contact { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 78px; padding-bottom: 108px; border-top: 1px solid var(--line); }
.showcase-contact h2 { font-size: clamp(36px, 5vw, 64px); }

/* Keep the complete product image visible in every product presentation. */
.product-card-media img,
.showcase-card .product-card-media img,
.product-detail-image-frame img,
.product-detail-image-frame video,
.product-thumb img,
.product-thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card-media,
.product-detail-image-frame,
.product-thumb {
  background: var(--paper);
}
.product-card-media picture { display: block; width: 100%; height: 100%; }
.product-detail-image-frame video { min-width: 0; padding: clamp(10px, 2vw, 22px); background: var(--paper); pointer-events: auto !important; }
.product-thumb { position: relative; }
.product-thumb-video-label { position: absolute; right: 4px; bottom: 4px; left: 4px; padding: 3px 4px; border-radius: 4px; background: rgba(17, 18, 15, .76); color: #fff; font-size: 9px; font-weight: 700; line-height: 1; text-align: center; }
.showcase-contact-actions { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 10px 14px; }
.showcase-contact-actions .button { flex: none; }
.button-outline { border: 1px solid var(--text); background: transparent; color: var(--text); }
.button-outline:hover { background: var(--text); color: var(--surface); }
.showcase-contact-call { flex-basis: 100%; color: var(--muted); font-size: 11px; text-align: right; }
.showcase-contact-call:hover { color: var(--orange); }
@media (max-width: 980px) { .showcase-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .room-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .room-tile-home { grid-row: span 2; } }
@media (max-width: 820px) { .showcase-hero { min-height: 620px; } .showcase-hero .hero-slide-info { padding-bottom: 72px; } .showcase-hero .hero-slide-title { font-size: clamp(28px, 7vw, 44px); } .showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } .showcase-card .product-card-body { padding: 14px; } .showcase-contact { align-items: flex-start; flex-direction: column; } .showcase-contact-actions { justify-content: flex-start; } .showcase-contact-call { text-align: left; } }
@media (max-width: 560px) { .showcase-collection { padding-top: 14px; padding-bottom: 80px; } .showcase-filters { flex-wrap: nowrap; margin-right: -18px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; } .showcase-filters::-webkit-scrollbar { display: none; } .showcase-filter { flex: 0 0 auto; } .showcase-grid { grid-template-columns: 1fr 1fr; gap: 9px; } .showcase-card .product-card-media { aspect-ratio: 1 / 1.12; } .showcase-card h3 { min-height: 48px; font-size: 15px; } .showcase-card .product-card-body { padding: 12px; } .showcase-card-meta { align-items: flex-start; flex-direction: column; gap: 4px; } .room-showcase { padding-top: 44px; padding-bottom: 76px; } .room-grid { grid-template-columns: 1fr; } .room-tile, .room-tile-home { min-height: 220px; grid-row: auto; } .showcase-contact { padding-top: 54px; padding-bottom: 80px; } }

@media print {
  body { background: #fff; color: #111; font-size: 14px; line-height: 1.5; }
  body > *:not(main) { display: none !important; }
  .cart-page { width: 100%; max-width: none; padding: 0; }
  .cart-page > .eyebrow, .cart-page > h1, .cart-layout { display: none !important; }
  .checkout-receipt { display: block !important; margin: 0; }
  .receipt-card { width: 100%; max-width: none; padding: 0; border: 0; box-shadow: none; }
  .receipt-head h2 { font-size: 32px; line-height: 1.05; }
  .receipt-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 24px; }
  .receipt-items { font-size: 14px; }
  .receipt-items td { padding: 10px 0; }
  .receipt-items small { font-size: 12px; }
  .receipt-total strong { font-size: 26px; }
  .receipt-actions { display: none; }
}

/* Vibecraft theme pass for the assistant sheet */
body:has(.ai-page) { background: var(--ink); }
body:has(.ai-page) .site-header { background: var(--ink); border-bottom-color: rgba(255, 255, 255, .16); color: #fff; }
body:has(.ai-page) .site-nav a, body:has(.ai-page) .login-link, body:has(.ai-page) .cart-toggle { color: #fff; }
body:has(.ai-page) main { background: var(--ink); }
.ai-page { background: var(--surface); border: 0; box-shadow: none; }
.ai-sheet-head { border-bottom: 1px solid var(--line); }
.ai-sheet-head > strong { color: var(--text); }
.ai-sheet-head > strong { display: flex; align-items: center; justify-content: center; gap: 8px; }
.ai-sheet-orb { width: 20px; height: 20px; }
.ai-sheet-head > strong span { color: var(--orange); }
.ai-sheet-head .ai-sheet-icon:first-child { background: var(--lime); color: var(--ink); }
.ai-sheet-head .ai-sheet-icon:last-child { border: 1px solid var(--line); font-size: 20px; }
.ai-sheet-head .ai-sheet-icon:last-child { position: relative; width: 40px; height: 40px; justify-self: end; font-size: 0; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .22s ease; }
.ai-sheet-head .ai-sheet-icon:last-child::before, .ai-sheet-head .ai-sheet-icon:last-child::after { position: absolute; width: 16px; height: 2px; border-radius: 99px; background: currentColor; content: ""; }
.ai-sheet-head .ai-sheet-icon:last-child::before { transform: rotate(45deg); }
.ai-sheet-head .ai-sheet-icon:last-child::after { transform: rotate(-45deg); }
.ai-sheet-head .ai-sheet-icon:last-child:hover, .ai-sheet-head .ai-sheet-icon:last-child:focus-visible { border-color: var(--orange); background: var(--orange); color: #fff; transform: rotate(90deg); outline: none; }
.ai-sheet-icon:hover { background: var(--tint-weak); }
.ai-sheet-head .ai-sheet-icon:first-child:hover { background: var(--orange); color: #fff; }
.ai-intro h1 em { color: var(--orange); }
.ai-sub { color: var(--muted); }
.ai-message.is-user .ai-message-bubble { background: var(--lime); color: var(--ink); }
.ai-chip { border-color: var(--line); background: var(--surface); color: var(--text); }
.ai-chip:hover { border-color: var(--orange); background: var(--lime); color: var(--ink); }
.ai-compare-fields select { border-color: var(--line); background: var(--tint-weak); color: var(--text); }
.ai-compare-fields select:focus-visible { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(204, 51, 85, .14); }
:root[data-theme="dark"] .ai-compare-fields select,
:root[data-theme="dark"] .ai-compare-fields select option { background-color: #2a2a2d; color: #f2f1ed; }
:root[data-theme="dark"] .ai-compare-fields select option:checked { background-color: #8f2944; color: #fff; }
.ai-input-row { border: 1px solid var(--line); background: var(--tint-weak); }
.ai-input-row:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(204, 51, 85, .14); }
.ai-input-row button { background: var(--ink); color: #fff; }
.ai-input-row button:hover { background: var(--orange); }
@media (max-width: 820px) { body:has(.ai-page) .site-nav a { color: var(--text); } body:has(.ai-page) .login-link, body:has(.ai-page) .cart-toggle { color: var(--text); } }

/* Assistant header contrast: the sheet owns a dark branded header in both themes. */
body:has(.ai-page) .brand-image .brand-logo-light { display: none !important; }
body:has(.ai-page) .brand-image .brand-logo-dark { display: block !important; }
body:has(.ai-page) .site-nav a { border-color: rgba(255, 255, 255, .32); background: transparent; color: #fff; box-shadow: none; }
body:has(.ai-page) .site-nav a:hover { border-color: var(--lime); background: var(--lime); color: var(--ink); }
body:has(.ai-page) .login-link { border-color: var(--lime); background: var(--lime); color: var(--ink) !important; box-shadow: 0 5px 0 rgba(0, 0, 0, .18); }
body:has(.ai-page) .login-link:hover { border-color: #fff; background: #fff; color: var(--ink) !important; }
body:has(.ai-page) .cart-toggle { color: #fff; }
body:has(.ai-page) .cart-toggle:hover, body:has(.ai-page) .cart-toggle:focus-visible { color: var(--lime); }
body:has(.ai-page) .theme-toggle { border-color: rgba(255, 255, 255, .55); background: #fff; color: var(--ink); }
body:has(.ai-page) .theme-toggle:hover { border-color: var(--lime); background: var(--lime); }
@media (max-width: 820px) {
  body:has(.ai-page) .site-nav { background: var(--surface); }
  body:has(.ai-page) .site-nav a { border-color: var(--line); background: var(--paper); color: var(--text); }
  body:has(.ai-page) .site-nav a:hover { border-color: var(--emphasis); background: var(--emphasis); color: var(--emphasis-text); }
}

/* Mobile layout pass: keep the page inside the viewport and let comparison data scroll
   inside its own region instead of pushing the whole document sideways. */
@media (max-width: 820px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  .showcase-hero .hero-slide-info { max-width: 100%; }
  .showcase-hero .hero-slide-title { max-width: 100%; overflow-wrap: anywhere; }
  .showcase-collection .section-heading, .room-showcase .section-heading { align-items: flex-start; gap: 18px; }
  .showcase-card, .showcase-card-link { min-width: 0; }
  .showcase-card h3 { overflow-wrap: anywhere; }
  .compare-dialog { width: min(calc(100vw - 24px), 1000px); max-width: calc(100vw - 24px); max-height: calc(100dvh - 24px); margin: 12px auto; overflow-x: hidden; overflow-y: auto; }
  .compare-dialog-body, #compareDialogBody { min-width: 0; }
  .compare-table-wrap { width: 100%; max-width: 100%; }
}

@media (max-width: 560px) {
  .site-header { min-width: 0; }
  .showcase-hero { min-height: 540px; }
  .showcase-hero .hero-slide-info { padding: 24px 18px 58px; }
  .showcase-hero .hero-slide-title { font-size: clamp(28px, 7vw, 44px); line-height: .98; }
  .showcase-hero .hero-slide-desc { font-size: 13px; }
  .showcase-collection .section-heading, .room-showcase .section-heading { display: block; }
  .showcase-collection .section-note, .room-showcase .section-note { max-width: 100%; margin-top: 14px; }
  .showcase-grid { grid-template-columns: 1fr; gap: 14px; }
  .showcase-card .product-card-media { aspect-ratio: 16 / 9; }
  .showcase-card h3 { min-height: 0; font-size: 18px; }
  .compare-dialog { width: 100vw; max-width: 100vw; max-height: calc(100dvh - 10px); margin: 10px 0 0; padding: 18px 16px 24px; border-right: 0; border-bottom: 0; border-left: 0; border-radius: 20px 20px 0 0; }
  .compare-dialog-head { align-items: center; gap: 12px; margin-bottom: 18px; }
  .compare-dialog-head h2 { font-size: clamp(28px, 8vw, 36px); }
  .compare-dialog-close { flex: none; padding: 8px 10px; }
  .compare-verdict { margin-bottom: 18px; padding: 14px; }
  .compare-verdict-head { gap: 8px; }
  .compare-verdict p { font-size: 12px; line-height: 1.5; }
  .compare-table { min-width: 700px; }
}

@media (max-width: 560px) {
  .showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .showcase-card .product-card-media { aspect-ratio: 4 / 5; }
  .showcase-card .product-card-body { gap: 7px; padding: 11px; }
  .showcase-card h3 { min-height: 44px; font-size: 14px; line-height: 1.08; }
  .showcase-card-meta { gap: 3px; font-size: 10px; }
  .showcase-card-meta strong { font-size: 12px; }
  .showcase-card .compare-toggle { margin: 0 11px 12px; padding: 6px 8px; font-size: 9px; }
}

/* Mobile room showcase: swipeable cards with snap-to-card movement. */
@media (max-width: 560px) {
  .room-grid { display: flex; gap: 12px; margin-right: -18px; padding: 0 18px 14px 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-x: contain; }
  .room-grid::-webkit-scrollbar { display: none; }
  .room-tile { flex: 0 0 min(82vw, 360px); min-height: 360px; scroll-snap-align: start; }
}

@media (max-width: 820px) {
  .nav-search-toggle { display: none; }
  .nav-search-popover { position: fixed; top: 78px; right: 18px; width: min(380px, calc(100vw - 36px)); }
}

/* Restore the rounded navigation buttons with a tighter editorial finish. */
@media (min-width: 821px) {
  body:not(:has(.ai-page)) .site-nav { gap: 12px; }
  body:not(:has(.ai-page)) .site-nav a { min-width: 108px; padding: 11px 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--text); box-shadow: 0 4px 0 rgba(17, 18, 15, .1); text-align: center; }
  body:not(:has(.ai-page)) .site-nav a:hover { border-color: var(--emphasis); background: var(--emphasis); color: var(--emphasis-text); box-shadow: 0 6px 0 rgba(17, 18, 15, .1); transform: translateY(-2px); }
}

/* Floating glass navbar over the storefront hero. */
@media (min-width: 821px) {
  body:not(:has(.ai-page)) .site-header { position: absolute; top: 18px; right: 18px; left: 18px; z-index: 40; display: flex; min-height: 72px; gap: 16px; padding: 6px 10px 6px 18px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px; background: rgba(17, 18, 15, .78); color: #fff; box-shadow: 0 18px 45px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .12); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
  body:not(:has(.ai-page)) .site-header .brand-image { width: 192px; height: 58px; }
  body:not(:has(.ai-page)) .site-header .brand-image img { width: 192px; height: 58px; }
  body:not(:has(.ai-page)) .site-nav { display: flex; align-items: center; gap: 4px; margin-left: 0; padding: 5px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 999px; background: rgba(0, 0, 0, .24); }
  body:not(:has(.ai-page)) .site-nav a { min-width: auto; padding: 12px 20px; border: 0; border-radius: 999px; background: transparent; color: rgba(255, 255, 255, .72); box-shadow: none; }
  body:not(:has(.ai-page)) .site-nav a:first-of-type, body:not(:has(.ai-page)) .site-nav a:hover { background: rgba(255, 255, 255, .16); color: #fff; box-shadow: none; transform: none; }
  body:not(:has(.ai-page)) .nav-search-toggle, body:not(:has(.ai-page)) .cart-toggle, body:not(:has(.ai-page)) .theme-toggle { width: 44px; height: 44px; margin-left: 0; border-color: rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .08); color: #fff; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 8px 18px rgba(0, 0, 0, .16); }
  body:not(:has(.ai-page)) .nav-search-toggle:hover, body:not(:has(.ai-page)) .cart-toggle:hover, body:not(:has(.ai-page)) .theme-toggle:hover { border-color: var(--lime); background: rgba(255, 210, 213, .75); color: var(--ink); }
  body:not(:has(.ai-page)) .cart-hover-wrap { margin-left: 0; }
  body:not(:has(.ai-page)) .login-link { padding: 12px 20px; box-shadow: 0 5px 0 rgba(0, 0, 0, .2); }
}

/* Keep the glass navbar visible and anchor its utility controls to the right. */
@media (min-width: 821px) {
  body:not(:has(.ai-page)) .site-header { position: fixed; }
  body:not(:has(.ai-page)) .nav-search-toggle { margin-left: auto; }
}

@media (max-width: 820px) {
  body:not(:has(.ai-page)) .site-header { position: fixed; top: 10px; right: 10px; left: 10px; z-index: 100; min-height: 64px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px; background: rgba(17, 18, 15, .78); box-shadow: 0 14px 34px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .12); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
  body:not(:has(.ai-page)) .nav-main-cluster { display: contents; }
  body:has(.ai-page) .nav-main-cluster { display: contents; }
  body:not(:has(.ai-page)) .theme-toggle { margin-left: auto; }
}

/* Split the storefront navbar into a left navigation capsule and standalone utility buttons. */
@media (min-width: 821px) {
  body:not(:has(.ai-page)) .site-header { display: flex; gap: 10px; padding: 0; border: 0; background: transparent; box-shadow: none; }
  body:not(:has(.ai-page)) .nav-main-cluster { display: flex; min-width: 0; align-items: center; gap: 12px; padding: 6px 10px 6px 18px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px; background: rgba(17, 18, 15, .8); box-shadow: 0 18px 45px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .12); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
  body:not(:has(.ai-page)) .nav-main-cluster .site-nav { margin-left: 0; border-color: transparent; background: transparent; }
  body:not(:has(.ai-page)) .nav-search-toggle { margin-left: auto; }
  body:not(:has(.ai-page)) .account-menu-wrap, body:not(:has(.ai-page)) .theme-toggle { flex: none; }
}

@media (min-width: 821px) {
  body:has(.ai-page) .site-header { position: fixed; top: 18px; right: 18px; left: 18px; z-index: 40; display: flex; gap: 10px; padding: 0; border: 0; background: transparent !important; box-shadow: none; }
  body:has(.ai-page) .nav-main-cluster { display: flex; min-width: 0; align-items: center; gap: 12px; padding: 6px 10px 6px 18px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px; background: rgba(17, 18, 15, .8); box-shadow: 0 18px 45px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .12); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
  body:has(.ai-page) .nav-main-cluster .site-nav { margin-left: 0; border-color: transparent; background: transparent; }
  body:has(.ai-page) .nav-main-cluster .site-nav a { border: 0; background: transparent; box-shadow: none; color: rgba(255, 255, 255, .72); }
  body:has(.ai-page) .nav-main-cluster .site-nav a:first-of-type, body:has(.ai-page) .nav-main-cluster .site-nav a:hover { background: rgba(255, 255, 255, .16); color: #fff; }
  body:has(.ai-page) .nav-search-toggle { margin-left: auto; }
  body:has(.ai-page) .nav-search-toggle, body:has(.ai-page) .cart-toggle, body:has(.ai-page) .theme-toggle { width: 44px; height: 44px; margin-left: 0; border-color: rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .08); color: #fff; }
  body:has(.ai-page) .nav-search-toggle:hover, body:has(.ai-page) .cart-toggle:hover, body:has(.ai-page) .theme-toggle:hover { border-color: var(--lime); background: rgba(255, 210, 213, .75); color: var(--ink); }
}

@media (max-width: 820px) {
  body:has(.ai-page) { overflow-x: hidden; }
  body:has(.ai-page) .ai-page, body:has(.ai-page) .ai-chat, body:has(.ai-page) .ai-comparison-result { width: 100%; max-width: 100%; min-width: 0; }
  body:has(.ai-page) .ai-comparison-scroll { width: 100%; max-width: 100%; min-width: 0; overflow-x: auto; }
  body:has(.ai-page) .ai-comparison-board { min-width: 720px; }
}

@media (max-width: 560px) {
  body:has(.ai-page) .ai-comparison-result { border-radius: 16px; }
  body:has(.ai-page) .ai-comparison-head { padding: 18px 18px 15px; }
  body:has(.ai-page) .ai-comparison-head strong { font-size: 21px; }
  body:has(.ai-page) .ai-comparison-board { min-width: 720px; padding: 0 18px; }
  body:has(.ai-page) .ai-comparison-products, body:has(.ai-page) .ai-comparison-row { grid-template-columns: 118px repeat(2, minmax(250px, 1fr)); gap: 18px; }
  body:has(.ai-page) .ai-comparison-products { padding: 16px 0 18px; }
  body:has(.ai-page) .ai-comparison-feature-title { font-size: 20px; }
  body:has(.ai-page) .ai-comparison-product { padding: 12px 13px; }
  body:has(.ai-page) .ai-comparison-product strong { font-size: 16px; }
  body:has(.ai-page) .ai-comparison-row { min-height: 76px; padding: 16px 0; }
  body:has(.ai-page) .ai-comparison-label { font-size: 15px; }
  body:has(.ai-page) .ai-comparison-cell { font-size: 15px; }
  body:has(.ai-page) .ai-comparison-summary { padding: 16px 18px 18px; }
  body:has(.ai-page) .ai-input-row { right: 18px; bottom: max(12px, env(safe-area-inset-bottom)); left: 18px; }
}

@media (max-width: 820px) {
  body:has(.ai-page) .menu-toggle { z-index: 80; }
  body:has(.ai-page) .site-nav { z-index: 70; border-left: 1px solid var(--line); }
  body:has(.ai-page) .menu-toggle { border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .04); }
  body:has(.ai-page) .menu-toggle::before, body:has(.ai-page) .menu-toggle::after { background: #fff; }
  body:has(.ai-page) .menu-toggle::before { box-shadow: 0 6px 0 #fff; }
  :root:not([data-theme="dark"]) body:has(.ai-page) .site-nav { background: #fff; color: #11120f; }
  :root:not([data-theme="dark"]) body:has(.ai-page) .site-nav a { border-color: #deddd8 !important; background: #fff !important; color: #11120f !important; }
  :root:not([data-theme="dark"]) body:has(.ai-page) .site-nav a.mobile-cart-link { border-color: var(--orange) !important; background: var(--lime) !important; color: var(--ink) !important; }
  :root[data-theme="dark"] body:has(.ai-page) .site-nav { background: var(--surface); }
  :root[data-theme="dark"] body:has(.ai-page) .site-nav a { border-color: var(--line) !important; background: var(--paper) !important; color: var(--text) !important; }
  :root[data-theme="dark"] body:has(.ai-page) .site-nav a.mobile-cart-link { border-color: var(--orange) !important; background: rgba(204, 51, 85, .16) !important; color: var(--orange) !important; }
}

/* Navbar finish: the navigation pill and utility controls are separate surfaces. */
@media (min-width: 821px) {
  body:not(:has(.ai-page)) .site-header,
  body:has(.ai-page) .site-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body:not(:has(.ai-page)) .nav-main-cluster,
  body:has(.ai-page) .nav-main-cluster {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body:not(:has(.ai-page)) .nav-pill,
  body:has(.ai-page) .nav-pill {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(20, 20, 20, .55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 14px 30px rgba(0, 0, 0, .16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  body:not(:has(.ai-page)) .nav-pill .site-nav,
  body:has(.ai-page) .nav-pill .site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
  }

  body:not(:has(.ai-page)) .nav-pill .site-nav a,
  body:has(.ai-page) .nav-pill .site-nav a {
    min-width: auto;
    padding: 10px 20px;
    border: 0 !important;
    border-radius: 999px;
    background: transparent !important;
    color: rgba(255, 255, 255, .72);
    box-shadow: none !important;
    transform: none;
  }

  body:not(:has(.ai-page)) .nav-pill .site-nav a:first-of-type,
  body:not(:has(.ai-page)) .nav-pill .site-nav a:hover,
  body:has(.ai-page) .nav-pill .site-nav a:first-of-type,
  body:has(.ai-page) .nav-pill .site-nav a:hover {
    background: rgba(255, 255, 255, .12) !important;
    color: #fff;
    transform: none;
  }

  body:not(:has(.ai-page)) .icon-group,
  body:has(.ai-page) .icon-group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }

  body:not(:has(.ai-page)) .icon-group .nav-search-toggle,
  body:not(:has(.ai-page)) .icon-group .cart-toggle,
  body:not(:has(.ai-page)) .icon-group .theme-toggle,
  body:has(.ai-page) .icon-group .nav-search-toggle,
  body:has(.ai-page) .icon-group .cart-toggle,
  body:has(.ai-page) .icon-group .theme-toggle {
    display: grid;
    flex: none;
    width: 44px;
    height: 44px;
    margin: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    background: rgba(20, 20, 20, .55);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 10px 22px rgba(0, 0, 0, .14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  body:not(:has(.ai-page)) .icon-group .cart-hover-wrap,
  body:not(:has(.ai-page)) .icon-group .account-menu-wrap,
  body:has(.ai-page) .icon-group .cart-hover-wrap,
  body:has(.ai-page) .icon-group .account-menu-wrap {
    flex: 0 0 auto;
    margin: 0;
  }

  body:not(:has(.ai-page)) .icon-group .login-link,
  body:has(.ai-page) .icon-group .login-link { margin: 0; }
}

@media (max-width: 820px) {
  body:not(:has(.ai-page)) .site-header,
  body:has(.ai-page) .site-header {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header .nav-main-cluster,
  .site-header .nav-pill,
  .site-header .icon-group { display: contents; }
}

/* Unified glass navbar: keep the header as one continuous surface. */
@media (min-width: 821px) {
  body:not(:has(.ai-page)) .site-header,
  body:has(.ai-page) .site-header {
    position: fixed;
    top: 18px;
    right: 18px;
    left: 18px;
    z-index: 40;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 6px 10px 6px 18px !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 999px !important;
    background: rgba(17, 18, 15, .78) !important;
    color: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .12) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  body:not(:has(.ai-page)) .nav-main-cluster,
  body:has(.ai-page) .nav-main-cluster {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body:not(:has(.ai-page)) .nav-pill,
  body:has(.ai-page) .nav-pill {
    display: flex;
    align-items: center;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body:not(:has(.ai-page)) .nav-pill .site-nav,
  body:has(.ai-page) .nav-pill .site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
  }

  body:not(:has(.ai-page)) .nav-pill .site-nav a,
  body:has(.ai-page) .nav-pill .site-nav a {
    padding: 12px 20px;
    border: 0 !important;
    border-radius: 999px;
    background: transparent !important;
    color: rgba(255, 255, 255, .72);
    box-shadow: none !important;
    transform: none;
  }

  body:not(:has(.ai-page)) .nav-pill .site-nav a:first-of-type,
  body:not(:has(.ai-page)) .nav-pill .site-nav a:hover,
  body:has(.ai-page) .nav-pill .site-nav a:first-of-type,
  body:has(.ai-page) .nav-pill .site-nav a:hover {
    background: rgba(255, 255, 255, .16) !important;
    color: #fff;
  }

  body:not(:has(.ai-page)) .icon-group,
  body:has(.ai-page) .icon-group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }
}

/* Softer product cards for the storefront collection. */
.showcase-card {
  border: 1px solid rgba(17, 18, 15, .1);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(17, 18, 15, .06);
  transition: border-color .3s ease, box-shadow .35s cubic-bezier(.22, .8, .25, 1), transform .35s cubic-bezier(.22, .8, .25, 1), background .3s ease;
}

.showcase-card .product-card-media {
  background: var(--paper);
}

.showcase-card .product-card-media img {
  transition: transform .55s cubic-bezier(.22, .8, .25, 1), filter .35s ease;
}

.showcase-card-label {
  border-radius: 999px;
}

.showcase-card .product-card-body {
  gap: 10px;
  padding: 18px;
}

.showcase-card h3 {
  line-height: 1.18;
}

.showcase-card-meta {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 0;
}

.showcase-card:hover,
.showcase-card:focus-within {
  border-color: rgba(204, 51, 85, .32);
  box-shadow: 0 16px 34px rgba(17, 18, 15, .12);
  transform: translateY(-5px);
}

.showcase-card:hover .product-card-media img,
.showcase-card:focus-within .product-card-media img {
  filter: saturate(1.04);
  transform: scale(1.045);
}

.showcase-card-link:focus-visible {
  border-radius: 20px;
  outline: 2px solid var(--orange);
  outline-offset: -3px;
}

@media (max-width: 560px) {
  .showcase-card { border-radius: 16px; }
  .showcase-card .product-card-body { padding: 12px; }
  .showcase-card-link:focus-visible { border-radius: 16px; }
}

/* Give light-theme cards enough definition against the pale page background. */
:root:not([data-theme="dark"]) .showcase-card {
  border-color: rgba(17, 18, 15, .2);
  box-shadow: 0 8px 24px rgba(17, 18, 15, .08);
}

:root:not([data-theme="dark"]) .showcase-card:hover,
:root:not([data-theme="dark"]) .showcase-card:focus-within {
  border-color: rgba(204, 51, 85, .46);
  box-shadow: 0 16px 34px rgba(17, 18, 15, .14);
}

/* Apply the glass treatment to every navbar control, not just the outer header. */
@media (min-width: 821px) {
  body:not(:has(.ai-page)) .nav-pill .site-nav a,
  body:has(.ai-page) .nav-pill .site-nav a,
  body:not(:has(.ai-page)) .icon-group .login-link,
  body:has(.ai-page) .icon-group .login-link {
    border: 1px solid rgba(255, 255, 255, .16) !important;
    background: rgba(255, 255, 255, .08) !important;
    color: rgba(255, 255, 255, .88) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 6px 16px rgba(0, 0, 0, .1) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  body:not(:has(.ai-page)) .nav-pill .site-nav a:first-of-type,
  body:not(:has(.ai-page)) .nav-pill .site-nav a:hover,
  body:has(.ai-page) .nav-pill .site-nav a:first-of-type,
  body:has(.ai-page) .nav-pill .site-nav a:hover,
  body:not(:has(.ai-page)) .icon-group .login-link:hover,
  body:has(.ai-page) .icon-group .login-link:hover {
    border-color: rgba(255, 210, 213, .62) !important;
    background: rgba(255, 210, 213, .2) !important;
    color: #fff !important;
  }
}

@media (max-width: 820px) {
  body:not(:has(.ai-page)) .menu-toggle,
  body:has(.ai-page) .menu-toggle,
  body:not(:has(.ai-page)) .login-link,
  body:has(.ai-page) .login-link,
  body:not(:has(.ai-page)) .theme-toggle,
  body:has(.ai-page) .theme-toggle {
    border-color: rgba(255, 255, 255, .24) !important;
    background: rgba(255, 255, 255, .1) !important;
    color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 8px 18px rgba(0, 0, 0, .14) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

@media (max-width: 820px) {
  body:not(:has(.ai-page)) .site-header,
  body:has(.ai-page) .site-header {
    position: fixed;
    top: 10px;
    right: 10px;
    left: 10px;
    z-index: 100;
    min-height: 64px;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 999px !important;
    background: rgba(17, 18, 15, .78) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .12) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
}

/* Final vertical fit override. */
@media (min-width: 821px) {
  body:not(:has(.ai-page)) .site-header,
  body:has(.ai-page) .site-header {
    min-height: 58px;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  body:not(:has(.ai-page)) .site-header .brand-image,
  body:not(:has(.ai-page)) .site-header .brand-image img,
  body:has(.ai-page) .site-header .brand-image,
  body:has(.ai-page) .site-header .brand-image img {
    width: 128px;
    height: 36px;
  }

  body:not(:has(.ai-page)) .nav-pill .site-nav a,
  body:has(.ai-page) .nav-pill .site-nav a {
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 1;
  }

  body:not(:has(.ai-page)) .icon-group .nav-search-toggle,
  body:not(:has(.ai-page)) .icon-group .cart-toggle,
  body:not(:has(.ai-page)) .icon-group .theme-toggle,
  body:has(.ai-page) .icon-group .nav-search-toggle,
  body:has(.ai-page) .icon-group .cart-toggle,
  body:has(.ai-page) .icon-group .theme-toggle {
    width: 38px;
    height: 38px;
  }

  body:not(:has(.ai-page)) .icon-group .login-link,
  body:has(.ai-page) .icon-group .login-link {
    padding-top: 9px;
    padding-bottom: 9px;
    line-height: 1;
  }
}

@media (max-width: 820px) {
  body:not(:has(.ai-page)) .site-header .brand-image,
  body:not(:has(.ai-page)) .site-header .brand-image img,
  body:has(.ai-page) .site-header .brand-image,
  body:has(.ai-page) .site-header .brand-image img {
    height: 44px;
  }
}

/* Final hosted match: restore the original single-row navbar. */
@media (min-width: 821px) {
  body:not(:has(.ai-page)) .site-header,
  body:has(.ai-page) .site-header {
    position: relative !important;
    top: 0;
    right: auto;
    left: auto;
    z-index: 40;
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 28px;
    padding: 0 clamp(24px, 5vw, 72px) !important;
    overflow: visible;
    border: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    border-radius: 0 !important;
    background: var(--surface) !important;
    color: var(--text);
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body:has(.ai-page) .site-header {
    background: var(--ink) !important;
    border-bottom-color: rgba(255, 255, 255, .16) !important;
    color: #fff;
  }

  body:not(:has(.ai-page)) .site-header .brand-image,
  body:not(:has(.ai-page)) .site-header .brand-image img,
  body:has(.ai-page) .site-header .brand-image,
  body:has(.ai-page) .site-header .brand-image img {
    width: 180px;
    height: 64px;
  }

  body:not(:has(.ai-page)) .site-nav,
  body:has(.ai-page) .site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body:not(:has(.ai-page)) .site-nav a {
    padding: 11px 20px;
    border: 1px solid var(--line) !important;
    border-radius: 999px;
    background: var(--paper) !important;
    color: var(--text) !important;
    box-shadow: 0 4px 0 rgba(17, 18, 15, .1) !important;
    transform: none;
  }

  body:not(:has(.ai-page)) .site-nav a:hover,
  body:not(:has(.ai-page)) .site-nav a:focus-visible {
    border-color: var(--emphasis) !important;
    background: var(--emphasis) !important;
    color: var(--emphasis-text) !important;
    box-shadow: 0 6px 0 rgba(17, 18, 15, .1) !important;
    transform: translateY(-2px);
  }

  body:has(.ai-page) .site-nav a {
    padding: 11px 20px;
    border: 1px solid rgba(255, 255, 255, .32) !important;
    border-radius: 999px;
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
  }

  body:has(.ai-page) .site-nav a:hover,
  body:has(.ai-page) .site-nav a:focus-visible {
    border-color: var(--lime) !important;
    background: var(--lime) !important;
    color: var(--ink) !important;
  }

  body:not(:has(.ai-page)) .cart-toggle,
  body:has(.ai-page) .cart-toggle {
    display: grid !important;
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, .24) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .1) !important;
    color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 8px 20px rgba(17, 18, 15, .14) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
  }

  body:has(.ai-page) .cart-toggle { color: #fff; }

  body:not(:has(.ai-page)) .login-link,
  body:has(.ai-page) .login-link {
    padding: 13px 24px;
    border: 1px solid var(--lime) !important;
    border-radius: 999px;
    background: var(--lime) !important;
    color: var(--ink) !important;
    box-shadow: 0 5px 0 rgba(17, 18, 15, .13) !important;
  }

  body:not(:has(.ai-page)) .theme-toggle,
  body:has(.ai-page) .theme-toggle {
    display: grid !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, .24) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .1) !important;
    color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 8px 20px rgba(17, 18, 15, .14) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
  }
}

@media (max-width: 820px) {
  body:not(:has(.ai-page)) .site-header,
  body:has(.ai-page) .site-header {
    position: relative !important;
    top: 0;
    right: auto;
    left: auto;
    min-height: 70px;
    padding: 0 18px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    border-radius: 0 !important;
    background: var(--surface) !important;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body:has(.ai-page) .site-header {
    background: var(--ink) !important;
    border-bottom-color: rgba(255, 255, 255, .16) !important;
  }
}

/* Final mobile product gallery override. */
@media (max-width: 820px) {
  .product-detail {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .product-detail-media {
    position: static !important;
    width: 100%;
    min-width: 0;
  }

  .product-detail-image-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .product-detail-thumbs {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    padding: 4px 0 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) transparent;
  }

  .product-thumb {
    flex: 0 0 76px;
  }
}

/* Final light-theme mobile navbar contrast. */
@media (max-width: 820px) {
  :root:not([data-theme="dark"]) body:not(:has(.ai-page)) .menu-toggle,
  :root:not([data-theme="dark"]) body:not(:has(.ai-page)) .cart-toggle,
  :root:not([data-theme="dark"]) body:not(:has(.ai-page)) .login-link,
  :root:not([data-theme="dark"]) body:not(:has(.ai-page)) .theme-toggle,
  :root:not([data-theme="dark"]) body:has(.ai-page) .menu-toggle,
  :root:not([data-theme="dark"]) body:has(.ai-page) .cart-toggle,
  :root:not([data-theme="dark"]) body:has(.ai-page) .login-link,
  :root:not([data-theme="dark"]) body:has(.ai-page) .theme-toggle {
    border-color: rgba(17, 18, 15, .16) !important;
    background: rgba(255, 255, 255, .86) !important;
    color: var(--ink) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 8px 18px rgba(17, 18, 15, .12) !important;
  }

  :root:not([data-theme="dark"]) body:not(:has(.ai-page)) .login-link,
  :root:not([data-theme="dark"]) body:has(.ai-page) .login-link {
    border-color: var(--lime) !important;
    background: var(--lime) !important;
    color: var(--ink) !important;
  }
}

@media (max-width: 820px) {
  html:root:not([data-theme="dark"]) body:has(.ai-page) .site-header .theme-toggle {
    border-color: rgba(17, 18, 15, .24) !important;
    background: #fff !important;
    color: #11120f !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 8px 18px rgba(0, 0, 0, .18) !important;
  }

  body:has(.ai-page).menu-open .menu-toggle {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  html:root:not([data-theme="dark"]) body:has(.ai-page) .site-nav {
    border: 1px solid var(--line) !important;
    border-right: 0 !important;
    background: var(--surface) !important;
    box-shadow: -18px 0 42px rgba(17, 18, 15, .16) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  html:root:not([data-theme="dark"]) body:has(.ai-page) .site-nav .nav-close {
    border-color: var(--line) !important;
    background: var(--paper) !important;
    color: var(--text) !important;
  }

  html:root:not([data-theme="dark"]) body:has(.ai-page) .site-nav > a {
    border-color: var(--line) !important;
    background: var(--paper) !important;
    color: var(--text) !important;
    box-shadow: 0 4px 14px rgba(17, 18, 15, .08) !important;
  }
}

/* Final utility override: keep both navbar icons visible and glassy after legacy navbar rules. */
.site-header .nav-search-toggle,
.site-header .cart-toggle {
  display: grid !important;
  width: 42px !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, .24) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .1) !important;
  color: var(--text) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 8px 20px rgba(17, 18, 15, .14) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

:root:not([data-theme="dark"]) .site-header .nav-search-toggle,
:root:not([data-theme="dark"]) .site-header .cart-toggle {
  border-color: rgba(17, 18, 15, .16) !important;
  background: rgba(255, 255, 255, .78) !important;
  color: var(--ink) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 8px 20px rgba(17, 18, 15, .12) !important;
}

@media (max-width: 820px) {
  .site-header .nav-search-toggle {
    display: grid !important;
    width: 39px !important;
    height: 39px !important;
  }

  :root:not([data-theme="dark"]) .site-header .nav-search-toggle,
  :root:not([data-theme="dark"]) .site-header .cart-toggle {
    border-color: rgba(17, 18, 15, .16) !important;
    background: rgba(255, 255, 255, .86) !important;
    color: var(--ink) !important;
  }
}
