/*
 * TORQUE — motorbike accessories storefront (personal experiment).
 * Premium, dark, racing feel. Hand-written CSS on a token layer so the whole
 * page is build-free (no Tailwind step, no CDN) and iterates by editing one file.
 *
 * Direction: near-black warm charcoal + ignition orange, one electric accent
 * spent sparingly. Everything resolves to a token — change direction here, not
 * in the markup.
 */

/* ------------------------------------------------------------ tokens */
:root {
  /* Surfaces — warm near-black, never pure #000 */
  --bg:        oklch(16.5% .014 264);
  --bg-2:      oklch(19.5% .016 264);
  --card:      oklch(21.5% .017 264);
  --card-2:    oklch(25% .018 264);
  --border:    oklch(31% .02 264);
  --border-2:  oklch(38% .022 262);

  /* Text */
  --fg:        oklch(96.5% .008 250);
  --fg-soft:   oklch(74% .018 256);
  --fg-mute:   oklch(60% .02 258);

  /* Brand — ignition orange */
  --primary:      oklch(71% .195 47);
  --primary-2:    oklch(78% .17 66);     /* glow / gradient end */
  --primary-ink:  oklch(20% .03 55);     /* text on an orange fill */
  --primary-soft: oklch(30% .10 47);     /* tinted tile on dark */

  /* Accent — electric blue, used in tiny doses only */
  --accent:      oklch(80% .13 224);

  /* Feedback */
  --good:        oklch(78% .15 155);

  --radius:   1.15rem;
  --radius-sm: .7rem;

  /* Faces */
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body:    "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  --grad-mesh:
    radial-gradient(55% 55% at 15% 12%, color-mix(in oklab, var(--primary) 40%, transparent) 0%, transparent 68%),
    radial-gradient(45% 50% at 88% 6%,  color-mix(in oklab, var(--accent) 26%, transparent) 0%, transparent 66%),
    radial-gradient(65% 60% at 70% 108%, color-mix(in oklab, var(--primary-2) 24%, transparent) 0%, transparent 70%);

  /* Shadows — a glow tinted with the brand hue is the "expensive" tell on dark */
  --shadow-soft: 0 1px 2px oklch(0% 0 0/.4), 0 18px 40px -20px oklch(0% 0 0/.6);
  --shadow-lift: 0 30px 60px -22px color-mix(in oklab, var(--primary) 55%, transparent),
                 0 8px 24px -12px oklch(0% 0 0/.6);
  --shadow-glow: 0 0 0 1px color-mix(in oklab, var(--primary) 40%, transparent),
                 0 16px 44px -14px color-mix(in oklab, var(--primary) 60%, transparent);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;              /* clip, not hidden — keeps sticky alive */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  font-weight: 600;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

section[id] { scroll-margin-top: 6rem; }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 4px; }

.wrap { width: min(100% - 2.5rem, 1200px); margin-inline: auto; }
.mono { font-family: var(--font-mono); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary-2);
}
.text-grad {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.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;
}

/* ------------------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .82rem 1.4rem; border-radius: .8rem;
  font-weight: 600; font-size: .95rem; line-height: 1;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, background .25s ease, border-color .25s ease;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--grad-primary); color: var(--primary-ink); box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 50px -14px color-mix(in oklab, var(--primary) 72%, transparent); }
.btn-ghost { background: color-mix(in oklab, white 6%, transparent); color: var(--fg); border-color: var(--border-2); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--primary); background: color-mix(in oklab, var(--primary) 12%, transparent); }
.btn-sm { padding: .6rem 1rem; font-size: .85rem; }

/* ------------------------------------------------ demo concept bar (showcase) */
.demo-bar { background: #0B0F14; color: #fff; font-family: var(--font-body); }
.demo-bar-inner { width: min(100% - 1.6rem, 1200px); margin-inline: auto; display: flex; align-items: center; gap: .75rem; height: 40px; overflow-x: auto; }
.demo-concepts { display: flex; align-items: center; gap: .3rem; }
.demo-concepts a { white-space: nowrap; font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.55); padding: .25rem .6rem; border-radius: .35rem; }
.demo-concepts a:hover { background: rgba(255,255,255,.1); color: #fff; }
.demo-concepts a.is-active { background: #fff; color: #0B0F14; font-weight: 600; }
.demo-credit { margin-left: auto; display: flex; align-items: center; gap: .9rem; font-size: .72rem; color: rgba(255,255,255,.6); white-space: nowrap; }
.demo-credit b { color: #fff; font-weight: 600; }
.demo-credit a:hover { color: #fff; }
@media (max-width: 720px) { .demo-credit { display: none; } }

/* ------------------------------------------------------------ utility bar */
.utility {
  background: oklch(12% .012 264);
  border-bottom: 1px solid var(--border);
  font-size: .78rem; color: var(--fg-soft);
}
.utility .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 40px; }
.utility strong { color: var(--fg); font-weight: 600; }
.utility .u-right { display: flex; align-items: center; gap: 1.1rem; flex: none; }
.utility .u-right a { color: var(--fg-soft); transition: color .2s; white-space: nowrap; }
.utility .u-right a:hover { color: var(--primary-2); }
.utility .u-msg { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
/* On small screens keep the rotating promo and just the WhatsApp number;
   drop the lower-value Track order / Help links so nothing crowds. */
@media (max-width: 620px) { .utility .u-right a:not(:last-child) { display: none; } }

/* ------------------------------------------------------------ nav */
.nav-outer { position: sticky; top: 0; z-index: 50; padding-top: .8rem; padding-bottom: .9rem; }
.nav {
  width: min(100% - 1.6rem, 1200px); margin-inline: auto;
  display: flex; align-items: center; gap: 1.4rem;
  padding: .7rem .8rem .7rem 1.2rem; border-radius: 1rem;
  background: color-mix(in oklab, oklch(18% .014 264) 82%, transparent);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.32rem; letter-spacing: -.04em; }
.brand-mark {
  display: grid; place-items: center; width: 2.1rem; height: 2.1rem; border-radius: .6rem;
  background: var(--grad-primary); color: var(--primary-ink); box-shadow: var(--shadow-glow);
}
.brand-mark svg { width: 1.25rem; height: 1.25rem; }
.brand em { color: var(--primary-2); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; margin-left: .5rem; }
.nav-links a { font-size: .92rem; color: var(--fg-soft); font-weight: 500; transition: color .2s; position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad-primary); border-radius: 2px; transition: width .3s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after { width: 100%; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.icon-btn {
  position: relative; display: grid; place-items: center; width: 2.5rem; height: 2.5rem;
  border-radius: .7rem; background: color-mix(in oklab, white 5%, transparent);
  border: 1px solid var(--border); color: var(--fg-soft); transition: color .2s, border-color .2s, background .2s;
}
.icon-btn:hover { color: var(--fg); border-color: var(--border-2); background: color-mix(in oklab, white 9%, transparent); }
.icon-btn svg { width: 1.25rem; height: 1.25rem; }
.cart-count {
  position: absolute; top: -6px; right: -6px; min-width: 1.15rem; height: 1.15rem; padding: 0 .3rem;
  display: grid; place-items: center; border-radius: 999px; font-family: var(--font-mono);
  font-size: .68rem; font-weight: 600; background: var(--primary); color: var(--primary-ink);
  border: 2px solid var(--bg);
}
.nav-toggle { display: none; }
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-cta-text { display: none; }
  .nav-toggle { display: grid; }
}

/* ------------------------------------------------------------ hero */
.hero { position: relative; padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem); overflow: clip; }
.hero-mesh { position: absolute; inset: -20% 0 auto 0; height: 130%; background-image: var(--grad-mesh); opacity: .9; pointer-events: none; z-index: 0; }
.hero-grid-tex {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(color-mix(in oklab, white 4%, transparent) 1px, transparent 1px),
                    linear-gradient(90deg, color-mix(in oklab, white 4%, transparent) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(70% 60% at 50% 30%, black, transparent 80%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0; animation: orb 17s ease-in-out infinite; }
.orb-1 { width: 30rem; height: 30rem; left: -6rem; top: -6rem; background: color-mix(in oklab, var(--primary) 42%, transparent); }
.orb-2 { width: 26rem; height: 26rem; right: -5rem; top: 2rem; background: color-mix(in oklab, var(--accent) 30%, transparent); animation-delay: -6s; }
@keyframes orb {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(30px,-32px) scale(1.08); }
  66%     { transform: translate(-24px,22px) scale(.94); }
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .8rem; border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 14%, transparent);
  border: 1px solid color-mix(in oklab, var(--primary) 40%, transparent);
  font-size: .78rem; color: var(--primary-2); font-weight: 500; margin-bottom: 1.4rem;
}
.hero-badge .dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--primary); box-shadow: 0 0 10px var(--primary); }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.7rem); font-weight: 700; }
.hero h1 .word { display: inline-block; }
.hero-sub { margin-top: 1.4rem; font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--fg-soft); max-width: 34rem; }
.hero-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-stats { margin-top: 2.6rem; display: flex; gap: 2.4rem; flex-wrap: wrap; }
.hero-stat .n { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; }
.hero-stat .l { font-size: .78rem; color: var(--fg-mute); letter-spacing: .04em; }

/* hero visual — layered product showcase card */
.hero-visual { position: relative; }
.showcase {
  position: relative; border-radius: 1.6rem; overflow: hidden; aspect-ratio: 5 / 6;
  background:
    radial-gradient(120% 80% at 50% 0%, color-mix(in oklab, var(--primary) 24%, transparent), transparent 60%),
    linear-gradient(160deg, var(--card-2), oklch(14% .012 264));
  border: 1px solid var(--border-2); box-shadow: var(--shadow-lift);
}
.showcase-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.showcase::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, oklch(10% .01 264/.6), transparent 52%); }
.showcase-tag {
  position: absolute; padding: .5rem .8rem; border-radius: .7rem; backdrop-filter: blur(10px);
  background: color-mix(in oklab, oklch(16% .01 264) 72%, transparent); border: 1px solid var(--border-2);
  font-family: var(--font-mono); font-size: .72rem; box-shadow: var(--shadow-soft);
}
.showcase-tag .p { color: var(--primary-2); font-weight: 600; }
.tag-1 { top: 1.1rem; left: 1.1rem; }
.tag-2 { bottom: 1.1rem; right: 1.1rem; }
.tag-3 { bottom: 1.1rem; left: 1.1rem; color: var(--good); }
.hero-float {
  position: absolute; right: -1rem; top: 22%; padding: .7rem .9rem; border-radius: .9rem;
  background: color-mix(in oklab, var(--card) 88%, transparent); backdrop-filter: blur(12px);
  border: 1px solid var(--border-2); box-shadow: var(--shadow-lift); display: flex; align-items: center; gap: .6rem;
  animation: bob 5s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-float .fi { display: grid; place-items: center; width: 2.2rem; height: 2.2rem; border-radius: .6rem; background: var(--primary-soft); color: var(--primary-2); }
.hero-float .ft { font-size: .78rem; color: var(--fg-mute); }
.hero-float .fv { font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
@media (max-width: 900px) { .hero-float { display: none; } }

/* ------------------------------------------------------------ category strip (tight under hero) */
.cat-strip { position: relative; z-index: 3; margin-top: -1rem; }
.cat-strip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 760px) { .cat-strip .wrap { grid-template-columns: 1fr; } }
.cat-tile {
  position: relative; overflow: hidden; padding: 1.4rem; border-radius: var(--radius);
  background: linear-gradient(150deg, var(--card), var(--bg-2)); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 1rem; transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .3s;
}
.cat-tile:hover { transform: translateY(-4px); border-color: var(--primary); }
.cat-tile .ci { display: grid; place-items: center; width: 2.7rem; height: 2.7rem; border-radius: .7rem; background: var(--primary-soft); color: var(--primary-2); flex: none; }
.cat-tile .ci svg { width: 1.4rem; height: 1.4rem; }
.cat-tile h4 { font-size: 1.05rem; }
.cat-tile p { font-size: .8rem; color: var(--fg-mute); }
.cat-tile .arrow { margin-left: auto; color: var(--fg-mute); transition: transform .3s, color .3s; }
.cat-tile:hover .arrow { transform: translateX(4px); color: var(--primary); }

/* ------------------------------------------------------------ section frame */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-head { max-width: 40rem; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-top: .8rem; }
.section-head p { margin-top: .9rem; color: var(--fg-soft); }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.4rem; flex-wrap: wrap; }
.head-row .section-head { margin-bottom: 0; }

/* ------------------------------------------------------------ category grid (6-up) */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 860px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-card {
  position: relative; overflow: hidden; border-radius: var(--radius); padding: 1.4rem;
  min-height: 15rem; display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--border); background: var(--card);
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1), border-color .4s ease;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); border-color: color-mix(in oklab, var(--primary) 60%, var(--border)); }
.cc-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.cat-card:hover .cc-img { transform: scale(1.07); }
.cc-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, oklch(9% .01 264/.94) 6%, oklch(9% .01 264/.35) 46%, transparent 78%); }
.cat-card .cc-body, .cat-card .cc-link { position: relative; z-index: 2; }
.cc-body h3 { font-size: 1.25rem; }
.cc-body .cc-count { font-family: var(--font-mono); font-size: .74rem; color: var(--fg-soft); margin-top: .3rem; }
.cc-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; font-size: .85rem; font-weight: 600; color: var(--primary-2); }
.cc-link svg { transition: transform .3s; } .cat-card:hover .cc-link svg { transform: translateX(4px); }

/* ------------------------------------------------------------ products */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 1000px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .prod-grid { grid-template-columns: 1fr; } }
.product {
  position: relative; display: flex; flex-direction: column; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border); overflow: hidden;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1), border-color .4s ease;
}
.product:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); border-color: var(--border-2); }
/* Equal-height cards: the wrapper fills the grid row, the card fills the wrapper,
   the body grows and the price row pins to the bottom so prices align across a row. */
.prod-grid > .reveal { height: 100%; }
.prod-grid .product { height: 100%; }
.p-media { position: relative; aspect-ratio: 4/3.4; display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(80% 70% at 50% 30%, color-mix(in oklab, var(--primary) 14%, transparent), transparent 70%), linear-gradient(160deg, var(--card-2), oklch(15% .012 264)); }
.p-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.product:hover .p-img { transform: scale(1.07); }
.p-media::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, oklch(11% .01 264/.6), transparent 42%); }
.p-media .p-badge, .p-media .p-fav, .p-media .p-add { z-index: 3; }
.p-badge { position: absolute; top: .7rem; left: .7rem; padding: .28rem .6rem; border-radius: .5rem; font-family: var(--font-mono); font-size: .64rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.p-badge.new { background: color-mix(in oklab, var(--accent) 22%, transparent); color: var(--accent); border: 1px solid color-mix(in oklab, var(--accent) 45%, transparent); }
.p-badge.sale { background: color-mix(in oklab, var(--primary) 22%, transparent); color: var(--primary-2); border: 1px solid color-mix(in oklab, var(--primary) 45%, transparent); }
.p-badge.sold { background: color-mix(in oklab, white 10%, transparent); color: var(--fg-mute); border: 1px solid var(--border-2); }
.p-fav { position: absolute; top: .7rem; right: .7rem; display: grid; place-items: center; width: 2rem; height: 2rem; border-radius: .5rem; background: color-mix(in oklab, oklch(14% .01 264) 60%, transparent); border: 1px solid var(--border); color: var(--fg-soft); opacity: 0; transform: translateY(-4px); transition: opacity .35s ease, transform .35s ease, color .2s; }
.product:hover .p-fav { opacity: 1; transform: none; }
.p-fav:hover { color: var(--primary); }
.p-add {
  position: absolute; left: .7rem; right: .7rem; bottom: .7rem; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .65rem; border-radius: .7rem; background: var(--grad-primary); color: var(--primary-ink); font-weight: 600; font-size: .85rem;
  border: 0; opacity: 0; transform: translateY(1.4rem); transition: opacity .4s ease, transform .4s cubic-bezier(.16,1,.3,1), box-shadow .3s;
}
.product:hover .p-add, .product:focus-within .p-add { opacity: 1; transform: none; }
.p-add:hover { box-shadow: 0 12px 30px -10px color-mix(in oklab, var(--primary) 70%, transparent); }
@media (hover: none) { .p-add { opacity: 1; transform: none; } .p-fav { opacity: 1; transform: none; } }
.p-body { padding: 1rem 1.05rem 1.15rem; display: flex; flex-direction: column; gap: .55rem; flex: 1 1 auto; }
.p-cat { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-mute); }
.p-name { font-family: var(--font-display); font-weight: 500; font-size: .98rem; line-height: 1.25; color: var(--fg); }
.p-swatches { display: flex; gap: .35rem; margin-top: .1rem; }
.p-swatches span { width: 1rem; height: 1rem; border-radius: 50%; border: 2px solid color-mix(in oklab, white 18%, transparent); box-shadow: 0 0 0 1px oklch(0% 0 0/.4); }
.p-foot { display: flex; align-items: baseline; justify-content: space-between; margin-top: auto; padding-top: .35rem; }
.p-price { font-family: var(--font-mono); font-weight: 600; font-size: 1.05rem; color: var(--fg); }
.p-price .was { font-size: .78rem; color: var(--fg-mute); text-decoration: line-through; margin-left: .4rem; font-weight: 400; }
.p-rate { font-family: var(--font-mono); font-size: .74rem; color: var(--fg-soft); display: inline-flex; align-items: center; gap: .25rem; }
.p-rate svg { width: .85rem; height: .85rem; color: var(--primary-2); }
.product.is-sold .p-media { filter: grayscale(.6) brightness(.8); }

/* ------------------------------------------------------------ trust band */
.trust { border-block: 1px solid var(--border); background: var(--bg-2); }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 2.2rem 0; }
@media (max-width: 820px) { .trust .wrap { grid-template-columns: repeat(2, 1fr); } }
.trust-item { display: flex; align-items: center; gap: .9rem; }
.trust-item .ti { display: grid; place-items: center; width: 2.8rem; height: 2.8rem; border-radius: .8rem; background: var(--primary-soft); color: var(--primary-2); flex: none; }
.trust-item .ti svg { width: 1.4rem; height: 1.4rem; }
.trust-item h4 { font-size: .95rem; }
.trust-item p { font-size: .78rem; color: var(--fg-mute); }

/* ------------------------------------------------------------ counters */
.counters { position: relative; overflow: hidden; background: oklch(13% .012 264); border-block: 1px solid var(--border); }
.counters .hero-mesh { opacity: .5; }
.counters .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: clamp(3rem,5vw,4.2rem) 0; text-align: center; }
@media (max-width: 720px) { .counters .wrap { grid-template-columns: repeat(2, 1fr); } }
.counter .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.1rem); }
.counter .n .u { color: var(--primary-2); }
.counter .l { margin-top: .3rem; font-size: .82rem; color: var(--fg-soft); letter-spacing: .03em; }

/* ------------------------------------------------------------ brand marquee */
.brands { padding: 2.6rem 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.brands .lead { text-align: center; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--fg-mute); margin-bottom: 1.6rem; }
.marquee-mask { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.marquee { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee span { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em; color: var(--fg-mute); padding: 0 2.2rem; white-space: nowrap; transition: color .3s; }
.marquee span:hover { color: var(--fg); }

/* ------------------------------------------------------------ cta band */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  position: relative; z-index: 2; border-radius: 1.8rem; padding: clamp(2.6rem, 5vw, 4rem);
  background: linear-gradient(150deg, var(--card-2), var(--bg-2)); border: 1px solid var(--border-2);
  box-shadow: var(--shadow-soft); display: grid; grid-template-columns: 1.3fr .7fr; gap: 2rem; align-items: center; overflow: hidden;
}
.cta-inner .cta-mesh { position: absolute; inset: 0; background-image: var(--grad-mesh); opacity: .8; z-index: -1; }
@media (max-width: 780px) { .cta-inner { grid-template-columns: 1fr; text-align: center; } }
.cta-inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; }
.cta-inner p { margin-top: .8rem; color: var(--fg-soft); }
.newsletter { display: flex; gap: .6rem; background: color-mix(in oklab, oklch(12% .01 264) 70%, transparent); border: 1px solid var(--border-2); border-radius: .9rem; padding: .4rem; }
.newsletter input { flex: 1; min-width: 0; background: transparent; border: 0; color: var(--fg); padding: .6rem .8rem; font: inherit; }
.newsletter input::placeholder { color: var(--fg-mute); }
.newsletter input:focus { outline: none; }

/* ------------------------------------------------------------ footer */
.footer { background: oklch(12.5% .012 264); border-top: 1px solid var(--border); padding: clamp(3rem,5vw,4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-mute); margin-bottom: 1.1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.footer a { font-size: .9rem; color: var(--fg-soft); transition: color .2s; }
.footer a:hover { color: var(--primary-2); }
.footer .about p { font-size: .9rem; color: var(--fg-soft); margin-top: 1rem; max-width: 22rem; }
.foot-pay { display: flex; gap: .5rem; margin-top: 1.2rem; flex-wrap: wrap; }
.foot-pay span { font-family: var(--font-mono); font-size: .68rem; padding: .35rem .6rem; border-radius: .45rem; border: 1px solid var(--border-2); color: var(--fg-mute); }
.foot-bottom { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: var(--fg-mute); }

/* ------------------------------------------------ rotating announcement */
.u-msg { display: inline-flex; align-items: center; gap: .5rem; }
.u-rotate { position: relative; display: inline-block; min-width: 1px; transition: opacity .4s ease, transform .4s ease; }
.u-msg.is-swapping .u-rotate { opacity: 0; transform: translateY(-5px); }

/* ------------------------------------------------------ deals + countdown */
.deal-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.2rem; flex-wrap: wrap; }
.deal-badge {
  display: inline-flex; align-items: center; gap: .4rem; padding: .3rem .7rem; border-radius: 999px; margin-bottom: .7rem;
  background: color-mix(in oklab, var(--primary) 16%, transparent); border: 1px solid color-mix(in oklab, var(--primary) 42%, transparent);
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--primary-2);
}
.deal-badge .pulse { width: .5rem; height: .5rem; border-radius: 50%; background: var(--primary); box-shadow: 0 0 8px var(--primary); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.countdown { display: inline-flex; align-items: center; gap: .35rem; }
.cd-label { font-size: .8rem; color: var(--fg-soft); margin-right: .4rem; }
.cd-box { background: var(--card-2); border: 1px solid var(--border-2); border-radius: .55rem; padding: .45rem .5rem; min-width: 3rem; text-align: center; }
.cd-box b { display: block; font-family: var(--font-mono); font-size: 1.15rem; font-weight: 600; line-height: 1; color: var(--fg); }
.cd-box small { font-size: .55rem; color: var(--fg-mute); letter-spacing: .12em; text-transform: uppercase; }
.cd-sep { font-family: var(--font-mono); color: var(--primary-2); font-weight: 700; }

/* ---------------------------------------------- popular categories hub */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 900px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hub-grid { grid-template-columns: 1fr; } }
.hub-card {
  background: linear-gradient(160deg, var(--card), var(--bg-2)); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem;
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .35s ease, box-shadow .4s ease;
}
.hub-card:hover { transform: translateY(-5px); border-color: color-mix(in oklab, var(--primary) 55%, var(--border)); box-shadow: var(--shadow-soft); }
.hub-head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.1rem; }
.hub-head .hi { display: grid; place-items: center; width: 2.8rem; height: 2.8rem; border-radius: .8rem; background: var(--primary-soft); color: var(--primary-2); font-size: 1.4rem; flex: none; }
.hub-head h3 { font-size: 1.08rem; }
.hub-head p { font-size: .74rem; color: var(--fg-mute); }
.hub-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.hub-chips a {
  font-family: var(--font-mono); font-size: .72rem; padding: .38rem .68rem; border-radius: 999px;
  background: color-mix(in oklab, white 5%, transparent); border: 1px solid var(--border); color: var(--fg-soft);
  transition: color .2s, border-color .2s, background .2s;
}
.hub-chips a:hover { color: var(--primary-2); border-color: var(--primary); background: color-mix(in oklab, var(--primary) 12%, transparent); }

/* --------------------------------------------------------- flagship store */
.flagship .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (max-width: 820px) { .flagship .wrap { grid-template-columns: 1fr; } }
.flagship-card {
  position: relative; overflow: hidden; aspect-ratio: 16 / 11; border-radius: var(--radius); border: 1px solid var(--border-2);
  display: grid; place-items: center; box-shadow: var(--shadow-lift);
  background: radial-gradient(90% 70% at 50% 20%, color-mix(in oklab, var(--primary) 22%, transparent), transparent 65%), linear-gradient(160deg, var(--card-2), oklch(14% .012 264));
}
.flagship-card .fc-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.flagship-card::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, oklch(10% .01 264/.62), transparent 60%); }
.flagship-card .fc-pin { position: absolute; z-index: 2; bottom: 1rem; left: 1rem; padding: .5rem .8rem; border-radius: .7rem; backdrop-filter: blur(10px); background: color-mix(in oklab, oklch(16% .01 264) 72%, transparent); border: 1px solid var(--border-2); font-family: var(--font-mono); font-size: .72rem; }
.flagship-info h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; }
.store-meta { list-style: none; margin: 1.4rem 0 1.8rem; padding: 0; }
.store-meta li { display: flex; gap: .8rem; align-items: flex-start; padding: .75rem 0; border-bottom: 1px solid var(--border); }
.store-meta .mi { display: grid; place-items: center; width: 2.1rem; height: 2.1rem; border-radius: .55rem; background: var(--primary-soft); color: var(--primary-2); flex: none; }
.store-meta .mi svg { width: 1.15rem; height: 1.15rem; }
.store-meta .mt { font-size: .78rem; color: var(--fg-mute); }
.store-meta .mv { font-family: var(--font-display); font-weight: 500; font-size: .98rem; color: var(--fg); }

/* ============================================================ shop listing */
.nav-links a.is-active { color: var(--fg); }
.nav-links a.is-active::after { width: 100%; }

.shop-hero { position: relative; padding: 2.4rem 0 1.8rem; border-bottom: 1px solid var(--border); background: var(--bg-2); }
.crumbs { font-size: .8rem; color: var(--fg-mute); margin-bottom: .7rem; }
.crumbs a { color: var(--fg-soft); } .crumbs a:hover { color: var(--primary-2); }
.crumbs b { color: var(--fg); font-weight: 500; } .crumbs span { margin: 0 .4rem; }
.shop-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
.shop-hero p { margin-top: .55rem; color: var(--fg-soft); max-width: 40rem; font-size: .95rem; }

.shop-layout { display: grid; grid-template-columns: 264px minmax(0, 1fr); gap: 2.2rem; padding-top: 2.2rem; padding-bottom: 4rem; align-items: start; }
.shop-sidebar { position: sticky; top: 5.5rem; }

.filter-panel { display: flex; flex-direction: column; gap: 1.5rem; }
.filter-topbar { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.filter-topbar h2 { font-size: 1.1rem; }
.clear-filters { background: none; border: 0; color: var(--primary-2); font: inherit; font-size: .8rem; cursor: pointer; margin-left: auto; }
.clear-filters:hover { text-decoration: underline; }
.filter-close { display: none; }
.filter-group { padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: 0; padding-bottom: 0; }
.filter-group h3 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-mute); margin: 0 0 .9rem; }

.cat-filter, .color-filter, .recent-list { list-style: none; margin: 0; padding: 0; }
.cat-filter { display: flex; flex-direction: column; gap: .12rem; }
.cat-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .55rem .7rem; border-radius: .55rem; background: transparent; border: 0; color: var(--fg-soft); font: inherit; font-size: .9rem; text-align: left; cursor: pointer; transition: background .2s, color .2s; }
.cat-btn span { font-family: var(--font-mono); font-size: .72rem; color: var(--fg-mute); }
.cat-btn:hover { background: color-mix(in oklab, white 5%, transparent); color: var(--fg); }
.cat-btn.is-active { background: var(--primary-soft); color: var(--primary-2); }
.cat-btn.is-active span { color: var(--primary-2); }

.price-range { -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: 999px; background: var(--border-2); outline: none; margin: .3rem 0 .7rem; }
.price-range::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--grad-primary); border: 2px solid var(--bg); box-shadow: var(--shadow-glow); cursor: pointer; }
.price-range::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--primary); border: 2px solid var(--bg); cursor: pointer; }
.price-readout { font-size: .84rem; color: var(--fg-soft); margin: 0; }
.price-readout b { color: var(--fg); font-family: var(--font-mono); }

.color-filter { display: flex; flex-direction: column; gap: .1rem; }
.color-opt { display: flex; align-items: center; gap: .6rem; padding: .42rem .5rem; border-radius: .5rem; cursor: pointer; font-size: .88rem; color: var(--fg-soft); transition: background .2s; }
.color-opt:hover { background: color-mix(in oklab, white 5%, transparent); }
.color-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.color-opt .sw { width: 1.1rem; height: 1.1rem; border-radius: 50%; border: 2px solid color-mix(in oklab, white 22%, transparent); box-shadow: 0 0 0 1px oklch(0% 0 0/.4); flex: none; transition: box-shadow .2s; }
.color-opt input:checked + .sw { box-shadow: 0 0 0 2px var(--primary); }
.color-opt .cn { flex: 1; }
.color-opt input:checked ~ .cn { color: var(--fg); font-weight: 500; }
.color-opt .cc { font-family: var(--font-mono); font-size: .72rem; color: var(--fg-mute); }

.recent-list { display: flex; flex-direction: column; gap: .8rem; }
.recent-list li { display: flex; gap: .7rem; align-items: center; }
.recent-list img { width: 3rem; height: 3rem; border-radius: .5rem; object-fit: cover; border: 1px solid var(--border); flex: none; }
.recent-list .rn { display: block; font-size: .8rem; color: var(--fg-soft); line-height: 1.3; }
.recent-list .rp { font-family: var(--font-mono); font-size: .78rem; color: var(--primary-2); }

.shop-toolbar { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.result-count { font-size: .88rem; color: var(--fg-soft); margin: 0; }
.result-count b { color: var(--fg); }
.toolbar-right { margin-left: auto; display: flex; align-items: center; gap: 1rem; }
.sort-wrap { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--fg-mute); }
.sort-wrap select { background: var(--card); color: var(--fg); border: 1px solid var(--border-2); border-radius: .6rem; padding: .5rem .7rem; font: inherit; font-size: .85rem; cursor: pointer; }
.sort-wrap select:focus { outline: none; border-color: var(--primary); }
.view-toggle { display: inline-flex; border: 1px solid var(--border-2); border-radius: .6rem; overflow: hidden; }
.vt { display: grid; place-items: center; width: 2.3rem; height: 2.3rem; background: transparent; border: 0; color: var(--fg-mute); cursor: pointer; transition: background .2s, color .2s; }
.vt.is-active { background: var(--primary-soft); color: var(--primary-2); }
.filter-open { display: none; }

.shop-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .shop-grid { grid-template-columns: 1fr; } }

/* list view */
.shop-grid.is-list { grid-template-columns: 1fr; gap: 1rem; }
.shop-grid.is-list .product { flex-direction: row; }
.shop-grid.is-list .p-media { width: 15rem; flex: none; aspect-ratio: auto; }
.shop-grid.is-list .p-body { flex: 1; justify-content: center; }
@media (max-width: 560px) { .shop-grid.is-list .product { flex-direction: column; } .shop-grid.is-list .p-media { width: auto; aspect-ratio: 4/3.4; } }

.no-results { text-align: center; padding: 3.5rem 1rem; color: var(--fg-soft); }
.link-btn { background: none; border: 0; color: var(--primary-2); font: inherit; cursor: pointer; text-decoration: underline; }

.pagination { display: flex; align-items: center; justify-content: center; gap: .4rem; margin-top: 2.6rem; }
.pg { min-width: 2.4rem; height: 2.4rem; padding: 0 .6rem; display: grid; place-items: center; border-radius: .55rem; border: 1px solid var(--border-2); background: var(--card); color: var(--fg-soft); font: inherit; font-size: .85rem; cursor: pointer; transition: border-color .2s, color .2s, background .2s; }
.pg:hover { border-color: var(--primary); color: var(--fg); }
.pg.is-active { background: var(--grad-primary); color: var(--primary-ink); border-color: transparent; font-weight: 600; }
.pg-dots { color: var(--fg-mute); padding: 0 .2rem; }

.filter-scrim { position: fixed; inset: 0; background: oklch(0% 0 0/.6); z-index: 89; }

@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: fixed; top: 0; left: 0; height: 100dvh; width: min(88%, 350px); z-index: 90;
    background: var(--bg); border-right: 1px solid var(--border); padding: 1.4rem; overflow-y: auto;
    transform: translateX(-100%); transition: transform .35s cubic-bezier(.16,1,.3,1);
    box-shadow: 24px 0 60px -20px oklch(0% 0 0/.7); }
  .shop-sidebar.is-open { transform: none; }
  .filter-close { display: grid; place-items: center; width: 2rem; height: 2rem; border: 0; background: none; color: var(--fg-soft); font-size: 1.7rem; line-height: 1; cursor: pointer; }
  .filter-open { display: inline-flex; }
}

/* ================================================================= PDP */
.pdp .crumbs { padding-top: 1.6rem; }
.pdp-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3rem); padding-top: 1rem; padding-bottom: 1rem; align-items: start; }
@media (max-width: 880px) { .pdp-layout { grid-template-columns: 1fr; } }

.pdp-gallery { position: sticky; top: 5.5rem; }
@media (max-width: 880px) { .pdp-gallery { position: static; } }
.pdp-main { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; border: 1px solid var(--border-2); background: var(--card); }
.pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-main .p-badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; margin-top: .7rem; }
.pdp-thumb { padding: 0; border: 1px solid var(--border); border-radius: .7rem; overflow: hidden; aspect-ratio: 1/1; background: var(--card); cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.is-active { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }

.pdp-info h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin: .55rem 0 .8rem; }
.pdp-rating { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--fg-soft); margin-bottom: 1rem; }
.pdp-stars { display: inline-flex; color: var(--primary-2); }
.pdp-rating b { color: var(--fg); }
.pdp-rating a { color: var(--fg-mute); text-decoration: underline; cursor: pointer; }
.pdp-price { display: flex; align-items: center; gap: .7rem; font-family: var(--font-mono); font-size: 1.7rem; font-weight: 600; color: var(--fg); margin-bottom: 1.1rem; }
.pdp-price .was { font-size: 1rem; color: var(--fg-mute); text-decoration: line-through; font-weight: 400; }
.pdp-price .save { font-family: var(--font-body); font-size: .72rem; font-weight: 600; color: var(--primary-2); background: color-mix(in oklab, var(--primary) 16%, transparent); border: 1px solid color-mix(in oklab, var(--primary) 40%, transparent); padding: .22rem .55rem; border-radius: 999px; }
.pdp-lead { color: var(--fg-soft); font-size: .95rem; margin-bottom: 1.6rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--border); }

.pdp-opt { margin-bottom: 1.3rem; }
.opt-head { font-size: .85rem; color: var(--fg-soft); margin-bottom: .6rem; display: flex; align-items: baseline; gap: .5rem; }
.opt-head b { color: var(--fg); font-weight: 600; }
.opt-head .size-guide { margin-left: auto; font-size: .78rem; color: var(--primary-2); text-decoration: underline; }
.pdp-swatches { display: flex; gap: .6rem; }
.pdp-sw { width: 2.1rem; height: 2.1rem; border-radius: 50%; background: var(--sw); border: 2px solid var(--border-2); cursor: pointer; box-shadow: inset 0 0 0 1px oklch(0% 0 0/.4); transition: box-shadow .2s, transform .2s; }
.pdp-sw:hover { transform: scale(1.06); }
.pdp-sw.is-active { box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--primary); }
.pdp-sizes { display: flex; gap: .5rem; flex-wrap: wrap; }
.size-btn { min-width: 3rem; height: 2.6rem; padding: 0 .8rem; border-radius: .6rem; border: 1px solid var(--border-2); background: var(--card); color: var(--fg-soft); font: inherit; font-weight: 500; cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.size-btn:hover { border-color: var(--primary); color: var(--fg); }
.size-btn.is-active { background: var(--primary-soft); border-color: var(--primary); color: var(--primary-2); }

.pdp-buy { display: flex; align-items: center; gap: .8rem; margin: 1.6rem 0; flex-wrap: wrap; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--border-2); border-radius: .7rem; overflow: hidden; }
.qty button { width: 2.6rem; height: 2.9rem; background: var(--card); border: 0; color: var(--fg); font-size: 1.15rem; cursor: pointer; transition: background .2s; }
.qty button:hover { background: color-mix(in oklab, white 6%, transparent); }
.qty input { width: 2.6rem; height: 2.9rem; text-align: center; background: transparent; border: 0; color: var(--fg); font: inherit; font-family: var(--font-mono); }
.pdp-add { flex: 1; min-width: 12rem; justify-content: center; height: 2.9rem; transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, background .25s ease, color .25s ease; }
.pdp-add.is-added { background: var(--good); color: #05230f; box-shadow: none; }
.pdp-wish { width: 2.9rem; height: 2.9rem; }

.pdp-trust { list-style: none; display: flex; gap: 1.4rem; flex-wrap: wrap; padding: 1.2rem 0; margin: 0; border-block: 1px solid var(--border); font-size: .82rem; color: var(--fg-soft); }
.pdp-trust li { display: flex; align-items: center; gap: .4rem; }
.pdp-trust .ck { display: grid; place-items: center; width: 1.1rem; height: 1.1rem; border-radius: 50%; background: color-mix(in oklab, var(--good) 22%, transparent); color: var(--good); font-size: .7rem; }
.pdp-meta { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .5rem; font-size: .85rem; color: var(--fg-soft); }
.pdp-meta span { color: var(--fg-mute); display: inline-block; width: 5.5rem; }
.pdp-meta a { color: var(--primary-2); }

.pdp-tabs-wrap { margin-top: clamp(2.5rem, 5vw, 4rem); }
.pdp-tabs { display: flex; gap: .2rem; border-bottom: 1px solid var(--border); overflow-x: auto; }
.tab { padding: .9rem 1.2rem; background: none; border: 0; border-bottom: 2px solid transparent; color: var(--fg-mute); font: inherit; font-weight: 500; font-size: .92rem; cursor: pointer; white-space: nowrap; transition: color .2s, border-color .2s; }
.tab:hover { color: var(--fg); }
.tab.is-active { color: var(--fg); border-bottom-color: var(--primary); }
.pdp-panels { padding-top: 1.8rem; }
.panel { display: none; max-width: 52rem; color: var(--fg-soft); line-height: 1.75; }
.panel.is-active { display: block; }
.panel h4 { color: var(--fg); margin: 1.3rem 0 .5rem; font-size: 1rem; }
.panel ul { padding-left: 1.1rem; margin: .5rem 0; }
.panel li { margin: .35rem 0; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.spec-table td { padding: .7rem .3rem; border-bottom: 1px solid var(--border); }
.spec-table td:first-child { color: var(--fg-mute); width: 13rem; font-family: var(--font-mono); font-size: .8rem; }
.rev-summary { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.rev-big { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--fg); line-height: 1; }
.rev-sub { font-size: .78rem; color: var(--fg-mute); margin-top: .3rem; }
.rev-bars { flex: 1; min-width: 15rem; display: flex; flex-direction: column; gap: .4rem; }
.rev-bar { display: flex; align-items: center; gap: .7rem; font-size: .78rem; color: var(--fg-mute); font-family: var(--font-mono); }
.rev-bar span { width: 1.8rem; }
.rev-bar i { flex: 1; height: 6px; border-radius: 999px; background: var(--border-2); position: relative; overflow: hidden; }
.rev-bar i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--w); background: var(--grad-primary); border-radius: inherit; }
.rev-bar b { width: 2.4rem; text-align: right; color: var(--fg-soft); }
.rev-empty { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; color: var(--fg-soft); }
.pdp-related { padding-top: clamp(3rem, 5vw, 4.5rem); }
.p-name a { color: inherit; } .p-name a:hover { color: var(--primary-2); }

/* ============================================================ cart page */
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 2.2rem; padding-top: 2rem; padding-bottom: 4rem; align-items: start; }
@media (max-width: 880px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-items { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cart-head { display: grid; grid-template-columns: 1fr 7rem 7rem 7rem; gap: 1rem; padding: .9rem 1.2rem; background: var(--bg-2); border-bottom: 1px solid var(--border); font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-mute); }
.cart-head span:not(:first-child) { text-align: center; }
.cart-row { display: grid; grid-template-columns: 1fr 7rem 7rem 7rem; gap: 1rem; align-items: center; padding: 1.1rem 1.2rem; border-bottom: 1px solid var(--border); }
.cart-row:last-child { border-bottom: 0; }
.cart-prod { display: flex; gap: 1rem; align-items: center; }
.cart-thumb { width: 4.5rem; height: 4.5rem; border-radius: .7rem; overflow: hidden; border: 1px solid var(--border-2); flex: none; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-name { font-family: var(--font-display); font-weight: 500; font-size: .95rem; color: var(--fg); }
.cart-name:hover { color: var(--primary-2); }
.cart-variant { font-family: var(--font-mono); font-size: .74rem; color: var(--fg-mute); margin-top: .2rem; }
.cart-remove { background: none; border: 0; color: var(--fg-mute); font: inherit; font-size: .78rem; cursor: pointer; padding: 0; margin-top: .5rem; text-decoration: underline; }
.cart-remove:hover { color: var(--primary-2); }
.cart-unit, .cart-line { text-align: center; font-family: var(--font-mono); font-size: .9rem; }
.cart-unit { color: var(--fg-soft); }
.cart-line { font-weight: 600; color: var(--fg); }
.qty-sm { justify-self: center; }
.qty-sm button { width: 2.1rem; height: 2.3rem; font-size: 1rem; }
.qty-sm input { width: 2.1rem; height: 2.3rem; }
@media (max-width: 620px) {
  .cart-head { display: none; }
  .cart-row { grid-template-columns: 1fr; gap: .55rem; }
  .cart-unit, .cart-line { text-align: left; }
  .cart-unit::before, .cart-line::before { content: attr(data-label) ": "; color: var(--fg-mute); font-family: var(--font-body); }
  .qty-sm { justify-self: start; }
}
.cart-empty { text-align: center; padding: 4rem 1rem; border: 1px dashed var(--border-2); border-radius: var(--radius); color: var(--fg-soft); }
.cart-empty p { margin-bottom: 1rem; }

.cart-summary, .checkout-summary { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: 1.5rem; position: sticky; top: 5.5rem; }
.cart-summary h2, .checkout-summary h2 { font-size: 1.1rem; margin-bottom: 1.2rem; }
.sum-row { display: flex; justify-content: space-between; align-items: center; padding: .55rem 0; font-size: .9rem; color: var(--fg-soft); }
.sum-row b { color: var(--fg); font-family: var(--font-mono); }
.sum-row.total { border-top: 1px solid var(--border); margin-top: .4rem; padding-top: 1rem; font-size: 1.05rem; color: var(--fg); }
.sum-row.total b { font-size: 1.15rem; }
.cart-checkout { width: 100%; justify-content: center; margin-top: 1.2rem; }
.cart-continue { display: block; text-align: center; margin-top: .9rem; font-size: .85rem; color: var(--fg-soft); }
.cart-continue:hover { color: var(--primary-2); }
.cod-note { margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--border); font-size: .78rem; color: var(--fg-mute); display: flex; gap: .4rem; align-items: center; }
.cod-note .ck { color: var(--good); }

/* ============================================================ checkout */
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 2.2rem; padding-top: 2rem; padding-bottom: 4rem; align-items: start; }
@media (max-width: 880px) { .checkout-layout { grid-template-columns: 1fr; } .checkout-summary { order: -1; position: static; } }
.checkout-form { display: flex; flex-direction: column; gap: 1.6rem; }
.co-section { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; margin: 0; }
.co-section legend { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; padding: 0 .5rem; margin-left: -.5rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field:last-child { margin-bottom: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field label { font-size: .82rem; color: var(--fg-soft); }
.field .opt { color: var(--fg-mute); }
.field input, .field textarea { background: var(--bg-2); border: 1px solid var(--border-2); border-radius: .6rem; padding: .7rem .8rem; color: var(--fg); font: inherit; font-size: .9rem; width: 100%; }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-mute); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary) 20%, transparent); }
.field .is-invalid { border-color: #d64545; box-shadow: 0 0 0 3px color-mix(in oklab, #d64545 22%, transparent); }
.checkout-form textarea { resize: vertical; }
.pay-opt { display: flex; align-items: center; gap: .9rem; padding: 1rem; border: 1px solid var(--border-2); border-radius: .8rem; cursor: pointer; margin-bottom: .8rem; transition: border-color .2s, background .2s; }
.pay-opt:last-child { margin-bottom: 0; }
.pay-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.pay-mark { width: 1.2rem; height: 1.2rem; border-radius: 50%; border: 2px solid var(--border-2); flex: none; position: relative; transition: border-color .2s; }
.pay-opt.is-active { border-color: var(--primary); background: color-mix(in oklab, var(--primary) 8%, transparent); }
.pay-opt.is-active .pay-mark { border-color: var(--primary); }
.pay-opt.is-active .pay-mark::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--primary); }
.pay-body { flex: 1; display: flex; flex-direction: column; }
.pay-body b { font-size: .92rem; }
.pay-body small { font-size: .78rem; color: var(--fg-mute); }
.pay-ico { font-size: 1.4rem; }
.checkout-place { width: 100%; justify-content: center; height: 3rem; font-size: 1rem; }
.co-fineprint { font-size: .76rem; color: var(--fg-mute); text-align: center; }
.co-items { list-style: none; margin: 0 0 1rem; padding: 0 0 1rem; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 1rem; }
.co-items li { display: flex; align-items: center; gap: .8rem; }
.co-thumb { position: relative; width: 3rem; height: 3rem; border-radius: .5rem; overflow: hidden; border: 1px solid var(--border-2); flex: none; }
.co-thumb img { width: 100%; height: 100%; object-fit: cover; }
.co-thumb b { position: absolute; top: -6px; right: -6px; min-width: 1.1rem; height: 1.1rem; padding: 0 .25rem; display: grid; place-items: center; border-radius: 999px; background: var(--primary); color: var(--primary-ink); font-family: var(--font-mono); font-size: .62rem; border: 2px solid var(--card); }
.co-nm { flex: 1; font-size: .82rem; color: var(--fg-soft); display: flex; flex-direction: column; }
.co-nm small { color: var(--fg-mute); font-family: var(--font-mono); font-size: .7rem; }
.co-pr { font-family: var(--font-mono); font-size: .85rem; color: var(--fg); }
.checkout-done { padding: 3rem 0 5rem; }
.done-card { max-width: 34rem; margin: 0 auto; text-align: center; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: clamp(2rem, 5vw, 3rem); }
.done-ico { width: 3.5rem; height: 3.5rem; margin: 0 auto 1.2rem; display: grid; place-items: center; border-radius: 50%; background: color-mix(in oklab, var(--good) 20%, transparent); color: var(--good); font-size: 1.6rem; }
.done-card h2 { font-size: 1.6rem; margin-bottom: .8rem; }
.done-card p { color: var(--fg-soft); margin-bottom: .6rem; }
.done-card b { color: var(--fg); }
.done-wa a { color: var(--primary-2); }
.done-actions { display: flex; gap: .8rem; justify-content: center; margin-top: 1.6rem; flex-wrap: wrap; }

/* ============================================================ account */
.account-page .crumbs { padding-top: 1.6rem; }

/* auth */
.auth-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 2.2rem; padding-top: 2rem; padding-bottom: 4rem; align-items: start; }
@media (max-width: 820px) { .auth-wrap { grid-template-columns: 1fr; } .auth-aside { order: -1; } }
.auth-card { max-width: 30rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: 1.6rem; }
.auth-tabs { display: flex; gap: .3rem; border-bottom: 1px solid var(--border); margin-bottom: 1.4rem; }
.atab { flex: 1; padding: .7rem; background: none; border: 0; border-bottom: 2px solid transparent; color: var(--fg-mute); font: inherit; font-weight: 500; cursor: pointer; transition: color .2s, border-color .2s; }
.atab:hover { color: var(--fg); }
.atab.is-active { color: var(--fg); border-bottom-color: var(--primary); }
.auth-form { display: none; flex-direction: column; gap: 1rem; }
.auth-form.is-active { display: flex; }
.auth-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: .84rem; }
.check { display: inline-flex; align-items: center; gap: .5rem; color: var(--fg-soft); cursor: pointer; }
.check input { width: 1rem; height: 1rem; accent-color: var(--primary); }
.auth-link { color: var(--primary-2); }
.auth-submit { width: 100%; justify-content: center; height: 2.9rem; margin-top: .2rem; }
.auth-note { font-size: .76rem; color: var(--fg-mute); text-align: center; }
.auth-aside { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-2); padding: 1.5rem; }
.auth-aside h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.auth-aside ul { list-style: none; margin: 0 0 1.2rem; padding: 0; display: flex; flex-direction: column; gap: .8rem; }
.auth-aside li { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--fg-soft); }
.auth-aside .ck, .auth-aside-note + * .ck { color: var(--good); }
.auth-aside li .ck { display: grid; place-items: center; width: 1.1rem; height: 1.1rem; border-radius: 50%; background: color-mix(in oklab, var(--good) 20%, transparent); color: var(--good); font-size: .68rem; flex: none; }
.auth-aside-note { font-size: .76rem; color: var(--fg-mute); border-top: 1px solid var(--border); padding-top: 1rem; }

/* dashboard */
.account-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 2.2rem; padding-top: 2rem; padding-bottom: 4rem; align-items: start; }
@media (max-width: 780px) { .account-layout { grid-template-columns: 1fr; } }
.account-nav { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: 1.2rem; position: sticky; top: 5.5rem; }
@media (max-width: 780px) { .account-nav { position: static; } }
.acct-user { display: flex; align-items: center; gap: .8rem; padding-bottom: 1.1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--border); }
.acct-avatar { display: grid; place-items: center; width: 2.8rem; height: 2.8rem; border-radius: 50%; background: var(--grad-primary); color: var(--primary-ink); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; flex: none; }
.acct-id b { display: block; font-size: .95rem; }
.acct-id small { color: var(--fg-mute); font-size: .78rem; }
.account-nav nav { display: flex; flex-direction: column; gap: .15rem; }
.anav { text-align: left; padding: .6rem .7rem; border-radius: .55rem; background: none; border: 0; color: var(--fg-soft); font: inherit; font-size: .9rem; cursor: pointer; transition: background .2s, color .2s; }
.anav:hover { background: color-mix(in oklab, white 5%, transparent); color: var(--fg); }
.anav.is-active { background: var(--primary-soft); color: var(--primary-2); font-weight: 500; }
.anav-out { color: var(--fg-mute); margin-top: .3rem; border-top: 1px solid var(--border); border-radius: 0; padding-top: .8rem; }
.anav-out:hover { color: #e06666; background: none; }
.asec { display: none; }
.asec.is-active { display: block; }
.asec h2 { font-size: 1.4rem; margin-bottom: 1.2rem; }
.acct-sub { font-size: .95rem; color: var(--fg-soft); margin: 1.6rem 0 .8rem; }
.acct-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 520px) { .acct-tiles { grid-template-columns: 1fr; } }
.acct-tile { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: 1.2rem; text-align: center; }
.at-n { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--fg); }
.at-l { font-size: .8rem; color: var(--fg-mute); }
.recent-order { display: flex; align-items: center; gap: 1rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: 1.1rem 1.3rem; }
.recent-order b { display: block; }
.recent-order small { color: var(--fg-mute); font-size: .8rem; }
.recent-order .ro-total { margin-left: auto; font-family: var(--font-mono); color: var(--fg); }
.badge-ok { font-size: .72rem; font-weight: 600; padding: .25rem .6rem; border-radius: 999px; background: color-mix(in oklab, var(--good) 18%, transparent); color: var(--good); border: 1px solid color-mix(in oklab, var(--good) 40%, transparent); white-space: nowrap; }
.orders-scroll { overflow-x: auto; }
.orders-table { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 34rem; }
.orders-table th { text-align: left; padding: .7rem .6rem; border-bottom: 1px solid var(--border); font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-mute); font-weight: 500; }
.orders-table td { padding: .85rem .6rem; border-bottom: 1px solid var(--border); color: var(--fg-soft); }
.orders-table td:first-child { font-family: var(--font-mono); color: var(--fg); }
.addr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 560px) { .addr-grid { grid-template-columns: 1fr; } }
.addr-card { position: relative; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: 1.3rem; }
.addr-card.is-default { border-color: color-mix(in oklab, var(--primary) 45%, var(--border)); }
.addr-tag { position: absolute; top: 1.1rem; right: 1.1rem; font-size: .66rem; font-weight: 600; padding: .2rem .5rem; border-radius: 999px; background: var(--primary-soft); color: var(--primary-2); }
.addr-card b { display: block; margin-bottom: .5rem; }
.addr-card p { font-size: .88rem; color: var(--fg-soft); line-height: 1.6; }
.addr-actions { display: flex; gap: 1rem; margin-top: 1rem; font-size: .82rem; }
.addr-actions a { color: var(--primary-2); }
.addr-add { border: 1px dashed var(--border-2); border-radius: var(--radius); background: none; color: var(--fg-soft); font: inherit; font-size: .9rem; cursor: pointer; min-height: 8rem; transition: border-color .2s, color .2s; }
.addr-add:hover { border-color: var(--primary); color: var(--primary-2); }

/* ========================================================= search overlay */
.search-overlay { position: fixed; inset: 0; z-index: 100; }
.search-scrim { position: absolute; inset: 0; background: oklch(0% 0 0/.7); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.search-panel { position: relative; max-width: 640px; margin: 8vh auto 0; background: var(--card); border: 1px solid var(--border-2); border-radius: var(--radius); box-shadow: var(--shadow-lift); overflow: hidden; animation: search-in .25s cubic-bezier(.16,1,.3,1); }
@keyframes search-in { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
.search-bar { display: flex; align-items: center; gap: .7rem; padding: 1rem 1.1rem; border-bottom: 1px solid var(--border); }
.search-bar > svg { width: 1.3rem; height: 1.3rem; color: var(--fg-mute); flex: none; }
.search-input { flex: 1; min-width: 0; background: transparent; border: 0; color: var(--fg); font: inherit; font-size: 1.05rem; }
.search-input:focus { outline: none; }
.search-input::placeholder { color: var(--fg-mute); }
.search-close { background: var(--bg-2); border: 1px solid var(--border-2); border-radius: .4rem; color: var(--fg-mute); font-family: var(--font-mono); font-size: .68rem; padding: .3rem .55rem; cursor: pointer; flex: none; }
.search-close:hover { color: var(--fg); border-color: var(--primary); }
.search-results { max-height: min(60vh, 26rem); overflow-y: auto; padding: .4rem; }
.search-hint { padding: .6rem .7rem .3rem; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-mute); }
.search-result { display: flex; align-items: center; gap: .9rem; padding: .65rem .7rem; border-radius: .7rem; transition: background .15s; }
.search-result:hover, .search-result:focus-visible { background: color-mix(in oklab, white 5%, transparent); }
.search-result img { width: 3rem; height: 3rem; border-radius: .5rem; object-fit: cover; border: 1px solid var(--border-2); flex: none; }
.sr-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.sr-main b { font-family: var(--font-display); font-weight: 500; font-size: .92rem; color: var(--fg); }
.sr-main mark { background: color-mix(in oklab, var(--primary) 30%, transparent); color: var(--primary-2); border-radius: 2px; padding: 0 1px; }
.sr-main small { font-family: var(--font-mono); font-size: .68rem; color: var(--fg-mute); text-transform: uppercase; letter-spacing: .06em; margin-top: .15rem; }
.sr-price { font-family: var(--font-mono); font-size: .88rem; color: var(--fg); flex: none; }
.search-chips { display: flex; flex-wrap: wrap; gap: .5rem; padding: .2rem .7rem .8rem; }
.search-chip { font-size: .8rem; padding: .4rem .8rem; border-radius: 999px; background: color-mix(in oklab, white 5%, transparent); border: 1px solid var(--border); color: var(--fg-soft); cursor: pointer; transition: color .2s, border-color .2s, background .2s; }
.search-chip:hover { border-color: var(--primary); color: var(--primary-2); background: color-mix(in oklab, var(--primary) 12%, transparent); }
.search-empty { padding: 2.2rem 1rem; text-align: center; color: var(--fg-soft); font-size: .92rem; }
.search-empty span { font-size: .82rem; color: var(--fg-mute); }
@media (max-width: 560px) { .search-panel { margin-top: 4vh; max-width: none; width: calc(100% - 1.4rem); } }
@media (prefers-reduced-motion: reduce) { .search-panel { animation: none; } }

/* ------------------------------------------------------------ motion: reveal + hero words */
.reveal { transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1), filter .8s cubic-bezier(.16,1,.3,1); }
.js .reveal:not(.is-in) { opacity: 0; transform: translateY(30px); filter: blur(10px); }
.js .reveal.is-in { opacity: 1; transform: none; filter: blur(0); }

.word { transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1), filter .85s cubic-bezier(.16,1,.3,1); }
.js .word:not(.is-in) { opacity: 0; transform: translateY(26px); filter: blur(10px); }
.js .word.is-in { opacity: 1; transform: none; filter: blur(0); }

/* ------------------------------------------------------------ reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .js .reveal:not(.is-in), .js .word:not(.is-in), .js .word {
    opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important;
  }
  .orb, .marquee, .hero-float, .deal-badge .pulse { animation: none !important; }
  .product:hover, .cat-card:hover, .cat-tile:hover, .hub-card:hover { transform: none !important; }
  .product:hover .p-img, .cat-card:hover .cc-img { transform: none !important; }
}
