:root {
  /* Color system */
  --color-bg:#0b0b0c;
  --color-bg-alt:#101113;
  --color-surface:#141517;
  --color-surface-alt:#1d1f22;
  --color-border:rgba(255,255,255,0.1);
  --color-border-strong:rgba(255,255,255,0.22);
  --color-border-focus:#3fa9f5;
  --color-text:#f5f7fa;
  --color-text-dim:#a6adb8;
  --color-accent:#3fa9f5;
  --color-accent-alt:#6dd6ff;
  --color-danger:#e55353;
  --color-warn:#e2b357;
  --gradient-accent:linear-gradient(135deg,#3fa9f5,#6dd6ff);

  /* Spacing scale */
  --space-2xs:0.25rem;
  --space-xs:0.375rem;
  --space-sm:0.5rem;
  --space-md:0.75rem;
  --space-lg:1rem;
  --space-xl:1.5rem;
  --space-2xl:2rem;
  --space-3xl:3rem;

  /* Typography scale */
  --font-size-xs:.7rem;
  --font-size-sm:.8rem;
  --font-size-base:1rem;
  --font-size-md:1.125rem;
  --font-size-lg:1.35rem;
  --font-size-xl:1.85rem;
  --font-size-2xl:2.25rem;
  --font-size-3xl:3.1rem;
  --line-height-tight:1.1;
  --line-height-base:1.45;

  /* Radii & elevation */
  --radius-xs:3px; --radius-sm:6px; --radius-md:10px; --radius-lg:18px;
  --shadow-sm:0 1px 2px -1px rgba(0,0,0,.5),0 0 0 1px rgba(255,255,255,.04) inset;
  --shadow-md:0 4px 12px -2px rgba(0,0,0,.6),0 0 0 1px rgba(255,255,255,.05) inset;
  --shadow-lg:0 10px 34px -6px rgba(0,0,0,.65),0 0 0 1px rgba(255,255,255,.04) inset;

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --transition-fast:160ms var(--ease);
  --transition-base:300ms var(--ease);

  --nav-height:70px;
  color-scheme: dark;
}
* { box-sizing:border-box; }
html,body { padding:0; margin:0; background:var(--color-bg) url('/assets/backdrop.png') center/cover no-repeat fixed; color:var(--color-text); font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif; -webkit-font-smoothing:antialiased; }
body { line-height:1.4; }
img { max-width:100%; display:block; }
a { color:var(--color-accent); text-decoration:none; }
a:hover { text-decoration:underline; }

/* Layout */
.site-header { position:sticky; top:0; z-index:40; -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); background:rgba(10,10,12,.72); border-bottom:1px solid var(--color-border); }
.nav { max-width:1200px; margin:0 auto; display:flex; align-items:center; gap:1.25rem; padding:.75rem 1.25rem; }
.nav .logo img { filter:drop-shadow(0 2px 4px rgba(0,0,0,.5)); }
.nav-links { list-style:none; margin:0; padding:0; display:flex; gap:.75rem; }
.nav-links a { display:inline-flex; align-items:center; padding:.55rem .95rem; border-radius:var(--radius-sm); font-size:.925rem; font-weight:500; letter-spacing:.25px; position:relative; color:var(--color-text-dim); transition:color .25s var(--ease), background .25s var(--ease); }
.nav-links a:hover { color:var(--color-text); background:rgba(255,255,255,.06); }
.nav-links a.is-active { color:var(--color-text); background:var(--gradient-accent); -webkit-background-clip:text; background-clip:text; filter:drop-shadow(0 0 12px rgba(80,170,255,.35)); }
.nav-toggle { display:none; }
@media (max-width:820px){
  .nav { flex-wrap:wrap; }
  .nav-toggle { display:inline-flex; margin-left:auto; background:var(--color-surface); color:var(--color-text); border:1px solid var(--color-border); padding:.5rem .85rem; border-radius:var(--radius-sm); cursor:pointer; }
  .nav-links { flex-basis:100%; flex-direction:column; align-items:flex-start; border-top:1px solid var(--color-border); padding-top:.5rem; display:none; }
  .nav-links[data-collapsed="false"] { display:flex; }
}
main { padding:var(--space-3xl) var(--space-xl) var(--space-3xl); max-width:1200px; margin:0 auto; width:100%; }
.container { width:100%; max-width:1200px; margin:0 auto; padding:0 var(--space-xl); }
.hero { padding: clamp(3rem,8vw,5.5rem) 0 clamp(2.25rem,5vw,3.25rem); text-align:left; position:relative; overflow:hidden; }
.hero::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,10,12,.25), rgba(10,10,12,.7)); pointer-events:none; z-index:1; }
.hero .hero-bg { position:absolute; inset:0; z-index:0; }
.hero-video { width:100%; height:100%; object-fit:cover; display:block; opacity:.35; filter:none; }
/* Ensure hero text/content sits above the overlay */
.hero .stack-sm, .hero .stack, .hero .container { position:relative; z-index:2; }
/* Remove hero-specific backdrop images; page-level backdrop is applied on body */
.hero h1 { font-size:clamp(var(--font-size-2xl),7vw,var(--font-size-3xl)); line-height:var(--line-height-tight); margin:0 0 var(--space-lg); letter-spacing:-.04em; font-weight:700; }
.hero p { font-size:var(--font-size-md); max-width:680px; margin:0 auto var(--space-xl); color:var(--color-text-dim); line-height:1.4; }
.hero .hero-left { margin-left:0; margin-right:auto; text-align:left; }
.hero .hero-left p { margin-left:0; margin-right:auto; }
/* Subtle light-blue shadow under hero to add depth */
.hero::after { content:""; position:absolute; left:0; right:0; bottom:-24px; height:48px; pointer-events:none; z-index:1; filter:blur(16px); background: radial-gradient(120% 70% at 50% -10%, rgba(111,200,255,.35), rgba(111,200,255,0)); }
.accent-gradient { background:var(--gradient-accent); -webkit-background-clip:text; background-clip:text; color:transparent; filter:drop-shadow(0 0 12px rgba(80,170,255,.25)); }
.hero-actions { display:flex; gap:.6rem; justify-content:center; flex-wrap:wrap; margin-top:.5rem; }
.btn[data-variant="primary"] { --btn-bg:var(--gradient-accent); color:#081018; border-color:rgba(255,255,255,.18); font-weight:800; }
.btn[data-variant="ghost"] { --btn-bg:transparent; border-color:var(--color-border-strong); background:transparent; }
.hero-stats { list-style:none; display:flex; gap:1rem; justify-content:center; padding:0; margin:1rem 0 0; color:var(--color-text-dim); font-size:.9rem; flex-wrap:wrap; }
.btn { --btn-bg:var(--color-surface-alt); --btn-border:var(--color-border); display:inline-flex; gap:.5rem; align-items:center; padding:.7rem 1.1rem; border-radius:var(--radius-sm); background:var(--btn-bg); color:var(--color-text); border:1px solid var(--btn-border); font-weight:500; font-size:var(--font-size-sm); position:relative; line-height:1.1; transition:background var(--transition-base), border-color var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base); }
.btn:hover { --btn-bg:var(--color-surface); border-color:var(--color-border-strong); text-decoration:none; box-shadow:0 0 0 1px rgba(255,255,255,.05), 0 4px 14px -4px rgba(0,0,0,.6); }
.btn:active { transform:translateY(2px); }
.btn:focus-visible { outline:2px solid var(--color-border-focus); outline-offset:2px; }
.grid { display:grid; gap:1.25rem; }
.cards-3 { grid-template-columns:repeat(auto-fit, minmax(260px,300px)); justify-content:center; align-items:start; }
.card { background:rgba(20,21,23,.55); border:1px solid var(--color-border); border-radius:var(--radius-md); padding:var(--space-lg) var(--space-lg) calc(var(--space-lg) + 4px); display:flex; flex-direction:column; gap:.65rem; position:relative; box-shadow:var(--shadow-sm); transition:box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base), background var(--transition-base); }
.card:hover { box-shadow:var(--shadow-lg); border-color:var(--color-border-strong); transform:translateY(-3px); }
.card:focus-within, .card:focus-visible { outline:2px solid var(--color-border-focus); outline-offset:2px; }
.card:focus-within::after, .card:hover::after { content:""; position:absolute; inset:0; border-radius:inherit; pointer-events:none; box-shadow:0 0 0 2px rgba(111,200,255,.35), 0 0 0 6px rgba(111,200,255,.12); opacity:0; transition:opacity var(--transition-base); }
.card:hover::after, .card:focus-within::after { opacity:1; }
.card h3 { margin:.15rem 0 .2rem; font-size:var(--font-size-md); letter-spacing:-.5px; }
.card p { margin:0; font-size:var(--font-size-sm); color:var(--color-text-dim); line-height:1.35; }
.card figure { margin:0; border-radius:var(--radius-sm); overflow:hidden; background:transparent; /* aspect removed for tighter wrap */ display:flex; align-items:center; justify-content:center; }
.staff-card figure { aspect-ratio:1/1; }
.staff-card img { width:100%; height:100%; object-fit:contain; }
.footer-main { display:grid; gap:2rem; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); padding:2.5rem 1.25rem 2rem; max-width:1200px; margin:0 auto; justify-content:center; text-align:center; }
.footer-main h4 { margin:.25rem 0 1rem; font-size:.9rem; font-weight:600; letter-spacing:.5px; text-transform:uppercase; color:var(--color-text-dim); text-align:center; }
.footer-main ul { list-style:none; margin:0; padding:0; display:grid; gap:.4rem; justify-items:center; }
.footer-main a { color:var(--color-text-dim); font-size:.85rem; }
.footer-main a:hover { color:var(--color-text); text-decoration:underline; }
.footer-bar { display:flex; justify-content:center; align-items:center; gap:.5rem; font-size:.75rem; padding:.9rem 1rem; background:rgba(0,0,0,.65); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); border-top:1px solid var(--color-border); }

/* Footer social links */
.footer-social { border-top:1px solid var(--color-border); padding:1rem .75rem 1.1rem; background:rgba(0,0,0,.35); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); }
.footer-social .inner { max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:center; }
.social-links { list-style:none; display:flex; gap:.65rem; padding:0; margin:0; flex-wrap:wrap; }
.social-link { display:inline-flex; align-items:center; justify-content:center; }
.social-icon { width:34px; height:34px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; background:var(--color-surface-alt); border:1px solid var(--color-border); color:var(--color-text); box-shadow:var(--shadow-sm); transition: transform var(--transition-fast), background var(--transition-base), border-color var(--transition-base), color var(--transition-base); }
.social-icon svg { width:18px; height:18px; display:block; }
.social-link:hover .social-icon { background:var(--color-surface); border-color:var(--color-border-strong); transform:translateY(-1px); }
.social-link:focus-visible .social-icon { outline:2px solid var(--color-border-focus); outline-offset:3px; }
.social-link[data-brand="facebook"]:hover .social-icon { color:#1877F2; }
.social-link[data-brand="tiktok"]:hover .social-icon { color:#25F4EE; }
.social-link[data-brand="youtube"]:hover .social-icon { color:#FF0033; }

/* Utilities */
.stack-sm > * + * { margin-top:.5rem; }
.text-center { text-align:center; }
.max-w-md { max-width:640px; }
.m-auto { margin-left:auto; margin-right:auto; }
.dim { color:var(--color-text-dim); }
.text-xs { font-size:var(--font-size-xs); }

/* Placeholder scaffolding for data-driven sections later */
.section { padding:3rem 0 2rem; }
.section h2 { font-size:clamp(var(--font-size-xl),4.5vw,var(--font-size-2xl)); margin:.15rem 0 var(--space-lg); letter-spacing:-.04em; font-weight:650; }
.whats-new { grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); }
.features-why { grid-template-columns:repeat(auto-fit, minmax(240px, 1fr)); }

/* Badges */
.badge { display:inline-flex; align-items:center; gap:.35rem; background:rgba(255,255,255,.08); color:var(--color-text); padding:.25rem .6rem; font-size:.625rem; letter-spacing:.75px; text-transform:uppercase; border-radius:50px; font-weight:600; border:1px solid var(--color-border); -webkit-backdrop-filter:blur(2px); backdrop-filter:blur(2px); }
.badge[data-variant="danger"] { background:rgba(229,83,83,.15); border-color:rgba(229,83,83,.35); color:var(--color-danger); }
.badge[data-variant="warn"] { background:rgba(226,179,87,.15); border-color:rgba(226,179,87,.4); color:var(--color-warn); }

/* Product specific tweaks */
.product-card figure { background:rgba(255,255,255,.03); }
.product-card .badge + .badge { margin-left:.35rem; }
/* Featured products (homepage) */
.product-feature figure { background:rgba(255,255,255,.03); border:1px solid var(--color-border); margin: calc(-1 * var(--space-lg)) calc(-1 * var(--space-lg)) var(--space-lg); border-radius: var(--radius-md) var(--radius-md) 0 0; }
/* Let the image be slightly larger and let the card wrap tight without fixed height */
.product-feature img { width:100%; height:auto; object-fit:contain; display:block; padding: .25rem; }
.feature-actions { margin-top:.6rem; }
.feature-details { margin-top:.75rem; border-top:1px solid var(--color-border); padding-top:.75rem; }
.feature-details[hidden] { display:none !important; }

/* Filters */
.filters { display:flex; gap:1rem; align-items:center; justify-content:center; margin-bottom:1.25rem; }
.filter-label { font-size:.85rem; text-transform:uppercase; letter-spacing:.6px; font-weight:700; color:var(--color-text); }
select[data-filter-category] { background:var(--color-surface); color:var(--color-text); border:1px solid var(--color-border-strong); border-radius:var(--radius-sm); padding:.6rem .85rem; min-width:220px; font-size:var(--font-size-md); box-shadow:var(--shadow-sm); }
select[data-filter-category]:hover { border-color:var(--color-border-focus); }
select[data-filter-category]:focus-visible { outline:2px solid var(--color-border-focus); outline-offset:2px; }

/* Focus ring helper */
:focus-visible { outline:2px solid var(--color-border-focus); outline-offset:2px; }

/* Cart overlay and drawer (Shop page) */
.shop-layout { display:grid; grid-template-columns: 220px 1fr; gap:1.25rem; align-items:start; }
.categories-nav { position:sticky; top:calc(var(--nav-height) + 1rem); align-self:start; background:rgba(20,21,23,.55); border:1px solid var(--color-border); border-radius:var(--radius-md); padding: .85rem; box-shadow:var(--shadow-sm); }
.categories-list { list-style:none; margin:0; padding:0; display:grid; gap:.25rem; }
.categories-list a { display:block; padding:.45rem .6rem; border-radius:var(--radius-sm); color:var(--color-text-dim); border:1px solid transparent; }
.categories-list a:hover { color:var(--color-text); background:rgba(255,255,255,.05); }
.categories-list a[aria-current="true"] { color:var(--color-text); border-color:var(--color-border-strong); background:rgba(255,255,255,.06); }
@media (max-width: 900px){ .shop-layout { grid-template-columns: 1fr; } .categories-nav { position:static; } }
.cart-overlay { position:fixed; inset:0; background:rgba(0,0,0,.6); -webkit-backdrop-filter:blur(2px); backdrop-filter:blur(2px); opacity:0; pointer-events:none; transition:opacity var(--transition-base); z-index:80; }
.cart-overlay.is-open { opacity:1; pointer-events:auto; }
.cart-drawer { position:fixed; top:0; right:0; height:100vh; width:min(420px, 92vw); background:var(--color-surface); border-left:1px solid var(--color-border); box-shadow: -8px 0 28px rgba(0,0,0,.55); transform:translateX(100%); transition:transform var(--transition-base); z-index:90; display:flex; flex-direction:column; }
.cart-drawer.is-open { transform:translateX(0); }
.drawer-header { display:flex; align-items:center; justify-content:space-between; gap:.75rem; padding:1rem; border-bottom:1px solid var(--color-border); background:var(--color-surface-alt); position:sticky; top:0; z-index:1; }
.drawer-lines { display:grid; gap:.75rem; padding:1rem; overflow:auto; }
.drawer-line { display:grid; grid-template-columns:56px 1fr auto; align-items:center; gap:.75rem; padding:.5rem .25rem; border-bottom:1px solid var(--color-border); }
.drawer-line:last-child { border-bottom:none; }
.drawer-line .thumb { width:56px; height:56px; border-radius:8px; overflow:hidden; background:rgba(255,255,255,.04); display:flex; align-items:center; justify-content:center; }
.drawer-line .thumb img { width:100%; height:100%; object-fit:contain; }
.drawer-line .meta { display:flex; flex-direction:column; gap:.35rem; }
.drawer-line .name { font-size:.95rem; }
.drawer-line .actions { display:flex; gap:.35rem; align-items:center; flex-wrap:wrap; }
.drawer-line .total { font-weight:600; }
.drawer-footer { margin-top:auto; padding:1rem; border-top:1px solid var(--color-border); background:var(--color-surface-alt); position:sticky; bottom:0; }
.drawer-subtotal { display:flex; justify-content:space-between; align-items:center; margin-bottom:.75rem; }
.drawer-actions { display:flex; justify-content:flex-end; }

/* Protruding cart tab */
.cart-tab { position:fixed; top:calc(var(--nav-height) + 40%); right:0; transform:translateX(35%); display:inline-flex; align-items:center; gap:.6rem; padding:.7rem .9rem .7rem 1rem; background:var(--color-surface-alt); border:1px solid var(--color-border-strong); border-right:none; border-radius: var(--radius-sm) 0 0 var(--radius-sm); color:var(--color-text); box-shadow: var(--shadow-md); z-index:95; cursor:pointer; transition: transform var(--transition-base), background var(--transition-base), box-shadow var(--transition-base); font-size:1rem; }
.cart-tab:hover { background:var(--color-surface); transform:translateX(0); }
.cart-tab:focus-visible { outline:2px solid var(--color-border-focus); outline-offset:3px; }
.cart-tab[hidden] { display:none; }
.cart-tab-icon { font-size:1.2rem; filter:drop-shadow(0 1px 1px rgba(0,0,0,.4)); }
.cart-tab-count { min-width:22px; height:22px; padding:0 .45rem; border-radius:999px; background:var(--gradient-accent); color:#071018; font-weight:800; font-size:.9rem; display:inline-flex; align-items:center; justify-content:center; box-shadow:0 0 0 1px rgba(255,255,255,.1) inset; }
.cart-tab-arrow { display:inline-block; font-size:1.25rem; line-height:1; transform:translateY(-1px); color:var(--color-text-dim); }

@media (max-width:720px){
  .cart-tab { top:unset; bottom:1rem; right:1rem; transform:translateX(0); border-right:1px solid var(--color-border-strong); border-radius: var(--radius-sm); padding:.8rem .9rem; font-size:1.05rem; }
  .cart-tab-arrow { display:none; }
  .cart-tab-count { min-width:24px; height:24px; font-size:1rem; }
}

/* Cart table */
.cart-table-wrapper { overflow-x:auto; }
.cart-table { width:100%; border-collapse:collapse; min-width:600px; font-size:var(--font-size-sm); }
.cart-table thead th { padding:.5rem .75rem; text-align:left; font-size:var(--font-size-xs); text-transform:uppercase; letter-spacing:.5px; font-weight:600; color:var(--color-text-dim); background:var(--color-surface-alt); position:sticky; top:0; }
.cart-table td { padding:.65rem .75rem; vertical-align:middle; }
.cart-table tfoot td { background:var(--color-surface-alt); font-size:var(--font-size-sm); }
.cart-table input[data-qty-input] { width:46px; text-align:center; background:var(--color-surface); color:var(--color-text); border:1px solid var(--color-border); border-radius:4px; padding:.35rem .25rem; font-size:var(--font-size-xs); }
.cart-table .btn[data-qty-inc],
.cart-table .btn[data-qty-dec] { --btn-bg:var(--color-surface); padding:.4rem .6rem; font-size:var(--font-size-xs); }
.cart-table .btn[data-remove-line] { --btn-bg:#290f0f; }
.cart-table tr:hover td { background:rgba(255,255,255,.02); }

/* Lightbox (moved from inline) */
.lightbox-overlay { position:fixed; inset:0; background:rgba(0,0,0,.85); display:none; justify-content:center; align-items:center; z-index:200; -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px); }
.lightbox-overlay.open { animation:fadeIn .25s var(--ease); }
.lightbox-inner { position:relative; max-width:85vw; max-height:85vh; }
.lightbox-inner img { max-width:100%; max-height:85vh; border-radius:10px; box-shadow:0 4px 30px rgba(0,0,0,.6); }
.lb-close { position:absolute; top:-14px; right:-14px; background:#222; color:#fff; border:1px solid rgba(255,255,255,.2); border-radius:50%; width:34px; height:34px; font-size:1.25rem; cursor:pointer; display:inline-flex; justify-content:center; align-items:center; }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* Checkout */
.checkout-actions { margin-top:1.5rem; display:flex; gap:1rem; flex-wrap:wrap; }
.checkout-status { margin-top:1rem; font-size:var(--font-size-xs); }
.subtotal-label { text-align:right; font-weight:600; }
.server-validated-label { text-align:right; font-size:var(--font-size-xs); }

@media (prefers-reduced-motion:reduce){
  * { animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

/* Accessibility helpers */
.skip-link { position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus { position:fixed; left:1rem; top:1rem; width:auto; height:auto; padding:.75rem 1rem; background:var(--color-surface-alt); border:1px solid var(--color-border-strong); border-radius:var(--radius-sm); z-index:500; width:auto; clip:auto; }
.visually-hidden { position:absolute !important; width:1px !important; height:1px !important; padding:0 !important; margin:-1px !important; overflow:hidden !important; clip:rect(0 0 0 0) !important; white-space:nowrap !important; border:0 !important; }

/* Lightbox (migrated later) focus outline override placeholder */
.lightbox-overlay button:focus { outline:2px solid var(--color-accent); outline-offset:2px; }

/* Video detail */
.video-embed-frame { max-width:960px; margin:0 auto; aspect-ratio:16/9; background:#000; position:relative; border-radius:10px; overflow:hidden; box-shadow:0 6px 28px -10px rgba(0,0,0,.7); }
.video-iframe { width:100%; height:100%; border:0; display:block; }

/* Carousel (gallery) */
.carousel { position:relative; max-width:1100px; margin: 0 auto; border-radius:14px; overflow:hidden; box-shadow:0 10px 34px -8px rgba(0,0,0,.6); border:1px solid var(--color-border-strong); background:var(--color-surface); padding:clamp(8px, 1vw, 12px); }
.carousel-track { position:relative; height: clamp(220px, 40vw, 420px); background:rgba(255,255,255,.03); border-radius:10px; overflow:hidden; }
.carousel-slide { position:absolute; inset:0; opacity:0; transition: opacity var(--transition-base); display:flex; align-items:center; justify-content:center; }
.carousel-slide.is-active { opacity:1; }
/* Show the entire image without cropping and letterbox inside the frame */
.carousel-slide img { width:100%; height:100%; object-fit:contain; object-position:center center; display:block; background:#000; }
.carousel-prev, .carousel-next { position:absolute; top:50%; transform:translateY(-50%); background:rgba(0,0,0,.4); color:#fff; border:1px solid rgba(255,255,255,.15); width:38px; height:38px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; cursor:pointer; z-index:5; }
.carousel-prev { left:12px; }
.carousel-next { right:12px; }
.carousel-prev:hover, .carousel-next:hover { background:rgba(0,0,0,.6); }
@media (max-width: 600px){
  .carousel { padding:8px; border-radius:12px; }
  .carousel-track { height: clamp(200px, 55vw, 340px); border-radius:8px; }
  .carousel-prev, .carousel-next { width:34px; height:34px; }
}

/* Mismatch & qty control styles (externalized checkout.js support) */
.subtotal-mismatch-client { color: var(--color-warn) !important; }
.subtotal-mismatch-server { color: var(--color-danger) !important; }
.qty-control { display:inline-flex; align-items:center; gap:.35rem; }
.qty-control input { width:42px; text-align:center; background:var(--color-surface); color:var(--color-text); border:1px solid var(--color-border); border-radius:4px; padding:.35rem .25rem; font-size:var(--font-size-xs); }
.btn-qty { --btn-bg:var(--color-surface); padding:.4rem .6rem; font-size:var(--font-size-xs); }
.btn-remove { --btn-bg:#290f0f; }

/* --- Utilities & small extensions (appended) --- */
.badge[data-variant="success"] { background:rgba(54,176,126,.18); border-color:rgba(54,176,126,.4); color:#68e3b2; }
.m-0 { margin:0 !important; }
.mt-xs { margin-top:var(--space-xs) !important; }
.text-2xs { font-size:.75rem !important; }
.video-embed { aspect-ratio:16/9; max-width:960px; margin:0 auto; }
.partner-card figure { background:transparent; }
.partner-card img { width:100%; height:100%; object-fit:contain; }
/* Make entire partner card content clickable without changing colors */
.partner-card a { display:block; color:inherit; text-decoration:none; }
.partner-card a:hover { text-decoration:none; }

/* River Cats story block */
.rivercats-story { padding:40px 16px; background:#111; color:#fff; text-align:center; border-top:1px solid var(--color-border); border-bottom:1px solid var(--color-border); }
.rivercats-story { position:relative; overflow:hidden; }
.story-bg { position:absolute; inset:0; z-index:0; }
.story-bg-video { width:100%; height:100%; object-fit:cover; opacity:.18; filter: grayscale(10%); }
.rivercats-story .story-inner { max-width:900px; margin:0 auto; }
.rivercats-story .story-inner { position:relative; z-index:1; }
.rivercats-story .story-title { font-size:clamp(1.6rem, 3.5vw, 2.1rem); margin:0 0 18px; color:#f44336; letter-spacing:-.02em; }
.rivercats-story .story-text { font-size:1.05rem; line-height:1.6; margin:.5rem 0 1rem; color:var(--color-text); }
.rivercats-story .story-image { max-width:100%; border-radius:12px; margin-top:20px; box-shadow:0 8px 34px -10px rgba(0,0,0,.7); border:1px solid rgba(255,255,255,.08); }
.rivercats-story .story-quote { font-size:.95rem; margin-top:14px; font-style:italic; color:#ccc; }

/* Trusted by bar */
.trusted-by { border-top:1px solid var(--color-border); border-bottom:1px solid var(--color-border); background:rgba(0,0,0,.35); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); padding:.75rem 1rem; }
.trusted-inner { max-width:1200px; margin:0 auto; display:flex; align-items:center; gap:1rem; justify-content:center; flex-wrap:wrap; }
.trusted-logos { list-style:none; display:flex; gap:1.5rem; align-items:center; margin:0; padding:0; flex-wrap:wrap; }
.trusted-logos img { height:36px; opacity:.85; filter:grayscale(100%); transition:opacity var(--transition-base), filter var(--transition-base), transform var(--transition-base); }
.trusted-logos img:hover { opacity:1; filter:grayscale(0%); transform:translateY(-2px); }

/* Pro Staff cards: collapsed by default (show only figure + header) */
.staff-card > :not(figure):not(header) { display:none; }
.staff-card header { cursor:pointer; }
.staff-card figure { cursor:pointer; }
body.modal-open { overflow:hidden; }

/* Pro Staff modal */
/* Ghost expanding card (FLIP) */
.staff-ghost { position:fixed; z-index:220; display:none; box-shadow:0 6px 20px -6px rgba(0,0,0,.55); border-radius:10px; overflow:hidden; border:1px solid var(--color-border); background:var(--color-surface); }
.staff-ghost-inner { width:100%; height:100%; display:grid; grid-template-columns: 1.2fr 1.3fr; }
.staff-ghost-figure { background:rgba(255,255,255,.03); display:flex; align-items:center; justify-content:center; }
.staff-ghost-figure img { width:100%; height:100%; object-fit:contain; padding:10px; }
.staff-ghost-body { padding:12px 16px 18px; overflow:auto; }
/* Keep body text from riding up too high relative to image */
.staff-ghost.open .staff-ghost-body { padding-top:12px; }
.staff-ghost-title { margin:0 0 .1rem; letter-spacing:-.3px; font-size:1.3rem; }
.staff-ghost-sub { margin:.25rem 0 1.1rem; }
.staff-ghost-bio { margin-top: 1.25rem; }
.staff-ghost-bio { max-width: 42ch; }
.staff-ghost-bio p { margin:.4rem 0; line-height:1.55; }
.staff-ghost-close { position:absolute; top:10px; right:10px; width:34px; height:34px; border-radius:50%; background:rgba(0,0,0,.45); color:#fff; border:1px solid rgba(255,255,255,.18); display:inline-flex; align-items:center; justify-content:center; cursor:pointer; }
.staff-ghost-close:hover { background:rgba(0,0,0,.6); }
@media (max-width: 720px){
  .staff-ghost-inner { grid-template-columns:1fr; }
  .staff-ghost-figure { max-height: 52vh; }
}

/* Backdrop for expanding card */
.staff-backdrop { position:fixed; inset:0; background:rgba(0,0,0,.6); -webkit-backdrop-filter:blur(3px); backdrop-filter:blur(3px); opacity:0; pointer-events:none; z-index:210; transition: opacity 250ms var(--ease); }
.staff-backdrop.open { opacity:1; pointer-events:auto; }

/* Pop-in micro spring for inner content */
@keyframes ghostPop {
  0% { transform: scale(0.995); }
  60% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* Store Coming Soon section */
.coming-soon-banner { text-align:center; padding:40px 16px; background:#111; color:#fff; border-top:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08); }
.coming-soon-logo { width: clamp(260px, 28vw, 360px); max-width:100%; margin: 0 auto 20px; display:block; filter: drop-shadow(0 6px 18px rgba(0,0,0,.45)); }
.coming-soon-title { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom:15px; }
.coming-soon-text { font-size: clamp(1.05rem, 1.8vw, 1.2rem); margin:0; color:#e8eaee; }

/* Site notice banner (below hero) */
.site-notice { padding: .9rem 1rem; }
.site-notice-inner { max-width: 960px; margin: 0 auto; background: rgba(111,200,255,.08); border:1px solid rgba(111,200,255,.28); color: var(--color-text); border-radius: 10px; box-shadow: var(--shadow-sm); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.site-notice p { margin: 0; padding: .85rem 1rem; text-align: center; font-size: .98rem; color: var(--color-text); }
