/* ============================================================
   VIRXL storefront — design system
   Bold, chunky, high-contrast. Hard shadows, thick outlines,
   one loud accent per surface. Built to feel fun without
   getting in the way of buying something.
   ============================================================ */

:root {
  /* brand */
  --ink: #0A1128;
  --ink-soft: #223052;
  --navy: #0B2C6B;
  --electric: #17A3E8;
  --lime: #C6FF3D;
  --hot: #FF3D8B;
  --sunny: #FFD23D;
  --mint: #4EE6A8;
  --grape: #8B5CF6;

  /* surfaces */
  --paper: #F5F6FB;
  --card: #FFFFFF;
  --muted: #6B7794;
  --line: #E4E7F2;
  --ink-05: rgba(10, 17, 40, 0.05);
  --ink-10: rgba(10, 17, 40, 0.10);

  /* type */
  --font-display: 'Bricolage Grotesque', 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* shape */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --pill: 999px;
  --border: 2.5px solid var(--ink);
  --pop: 5px 5px 0 var(--ink);
  --pop-sm: 3px 3px 0 var(--ink);
  --pop-lg: 9px 9px 0 var(--ink);
  --shadow-soft: 0 10px 30px rgba(10, 17, 40, 0.10);

  --wrap: 1240px;
  --header-h: 74px;
  --ease: cubic-bezier(0.2, 0.9, 0.25, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; margin: 0 0 .5em; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }
hr { border: 0; border-top: 2px dashed var(--line); margin: 2rem 0; }
:focus-visible { outline: 3px solid var(--electric); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--lime); color: var(--ink); }

.wrap { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 32px, 820px); margin-inline: auto; }
.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;
}
.stack > * + * { margin-top: var(--gap, 1rem); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 800; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: var(--pill);
  border: var(--border); background: var(--card); color: var(--ink);
  box-shadow: var(--pop-sm); transition: transform .14s var(--ease), box-shadow .14s var(--ease), background .14s;
  text-align: center; line-height: 1.2;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--pop); }
.btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }
.btn--primary { background: var(--lime); }
.btn--electric { background: var(--electric); color: #fff; }
.btn--hot { background: var(--hot); color: #fff; }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ghost { background: transparent; box-shadow: none; }
.btn--ghost:hover { background: var(--ink-05); box-shadow: none; transform: none; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.08rem; }
.btn--sm { padding: .5rem 1rem; font-size: .85rem; border-width: 2px; }
.btn--block { width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: .5; pointer-events: none; }
.btn__spinner { width: 16px; height: 16px; border: 2.5px solid currentColor; border-top-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.btn.is-loading .btn__spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- form fields ---------- */
.field { display: block; margin-bottom: 1rem; }
.field__label { display: block; font-weight: 700; font-size: .84rem; margin-bottom: .35rem; letter-spacing: .01em; }
.field__hint { font-size: .78rem; color: var(--muted); margin-top: .3rem; }
.input, .select, .textarea {
  width: 100%; padding: .8rem 1rem; border: 2px solid var(--line); border-radius: var(--r-sm);
  background: #fff; transition: border-color .15s, box-shadow .15s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--ink); box-shadow: 3px 3px 0 var(--ink-10);
}
.textarea { min-height: 110px; resize: vertical; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A1128' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px; padding-right: 2.4rem; }
.field--error .input { border-color: var(--hot); }
.field__error { color: var(--hot); font-size: .8rem; font-weight: 600; margin-top: .3rem; }
.checkline { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; margin-bottom: .8rem; }
.checkline input { width: 20px; height: 20px; accent-color: var(--electric); margin-top: 1px; flex: none; }

/* ---------- badges & tags ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--font-display); font-weight: 800; font-size: .68rem;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .3rem .6rem; border-radius: var(--pill); border: 2px solid var(--ink);
  background: var(--sunny); color: var(--ink); white-space: nowrap;
}
.badge--sale { background: var(--hot); color: #fff; }
.badge--new { background: var(--mint); }
.badge--hot { background: var(--sunny); }
.badge--soft { background: #fff; border-color: var(--line); color: var(--muted); font-weight: 700; }
.badge--ink { background: var(--ink); color: #fff; }
.tag {
  display: inline-block; font-size: .74rem; font-weight: 600; padding: .25rem .6rem;
  border-radius: var(--pill); background: var(--ink-05); color: var(--ink-soft);
}

/* ---------- stars ---------- */
.stars { display: inline-flex; gap: 2px; vertical-align: middle; }
.star { width: 14px; height: 14px; display: block; background: var(--line);
  -webkit-mask: var(--star-mask) center/contain no-repeat; mask: var(--star-mask) center/contain no-repeat;
  --star-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3 6.5 7 .9-5 4.9 1.2 7L12 18l-6.2 3.3L7 14.3 2 9.4l7-.9z'/%3E%3C/svg%3E"); }
.star.is-full { background: var(--sunny); }
.star.is-half { background: linear-gradient(90deg, var(--sunny) 50%, var(--line) 50%); }
.stars--md .star { width: 18px; height: 18px; }
.stars--lg .star { width: 24px; height: 24px; }

/* ============================================================
   Announcement ticker
   ============================================================ */
.ticker {
  background: var(--lime); border-bottom: 2.5px solid var(--ink);
  overflow: hidden; position: relative; height: 40px; display: flex; align-items: center;
}
.ticker__track { display: flex; gap: 3rem; white-space: nowrap; animation: ticker 32s linear infinite; padding-left: 3rem; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { font-family: var(--font-display); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   Header
   ============================================================ */
.header { position: sticky; top: 0; z-index: 60; background: var(--card); border-bottom: 2.5px solid var(--ink); }
.header__bar { display: flex; align-items: center; gap: 1.2rem; height: var(--header-h); }
.logo { display: flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; letter-spacing: -.03em; flex: none; }
.logo__mark { width: 34px; height: 34px; }
.logo em { font-style: normal; color: var(--electric); }
.nav { display: flex; gap: .2rem; margin-left: .6rem; }
.nav__link {
  font-weight: 700; font-size: .93rem; padding: .5rem .8rem; border-radius: var(--pill);
  transition: background .15s, color .15s; position: relative;
}
.nav__link:hover { background: var(--ink-05); }
.nav__link.is-active { background: var(--ink); color: #fff; }
.header__spacer { flex: 1; }
.header__actions { display: flex; align-items: center; gap: .4rem; }
.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: var(--pill);
  transition: background .15s, transform .15s; position: relative;
}
.icon-btn:hover { background: var(--ink-05); transform: translateY(-1px); }
.icon-btn svg { width: 21px; height: 21px; stroke: var(--ink); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn__count {
  position: absolute; top: 2px; right: 0; min-width: 19px; height: 19px; padding: 0 4px;
  background: var(--hot); color: #fff; border: 2px solid var(--ink); border-radius: var(--pill);
  font-size: .66rem; font-weight: 800; display: grid; place-items: center; font-family: var(--font-display);
}
.icon-btn__count[data-count="0"] { display: none; }
.burger { display: none; }

/* dropdown mega menu */
.has-menu { position: relative; }
.menu-panel {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 560px;
  background: var(--card); border: var(--border); border-radius: var(--r-lg); box-shadow: var(--pop);
  padding: 1rem; display: none; grid-template-columns: repeat(2, 1fr); gap: .3rem; z-index: 70;
}
.has-menu:hover .menu-panel, .has-menu:focus-within .menu-panel { display: grid; }
.menu-item { display: flex; gap: .7rem; align-items: center; padding: .6rem .7rem; border-radius: var(--r-sm); transition: background .15s; }
.menu-item:hover { background: var(--ink-05); }
.menu-item__emoji { font-size: 1.3rem; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--ink-05); flex: none; }
.menu-item__name { font-weight: 700; font-size: .92rem; }
.menu-item__count { font-size: .74rem; color: var(--muted); }

/* search */
.searchbar { position: relative; flex: 1; max-width: 420px; }
.searchbar .input { padding-left: 2.6rem; border-radius: var(--pill); border-width: 2.5px; border-color: var(--ink); }
.searchbar__icon { position: absolute; left: .9rem; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; stroke: var(--muted); fill: none; stroke-width: 2.2; }
.suggest {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff;
  border: var(--border); border-radius: var(--r); box-shadow: var(--pop); overflow: hidden; z-index: 80; display: none;
}
.suggest.is-open { display: block; }
.suggest__item { display: flex; gap: .7rem; padding: .6rem .8rem; align-items: center; border-bottom: 1px solid var(--line); }
.suggest__item:last-child { border-bottom: 0; }
.suggest__item:hover, .suggest__item.is-active { background: var(--paper); }
.suggest__img { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; background: var(--paper); flex: none; }
.suggest__title { font-weight: 600; font-size: .88rem; line-height: 1.25; }
.suggest__price { font-weight: 800; font-size: .85rem; margin-left: auto; font-family: var(--font-display); }
.suggest__empty { padding: 1rem; text-align: center; color: var(--muted); font-size: .9rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden; border-bottom: 2.5px solid var(--ink);
  background:
    radial-gradient(1000px 460px at 82% -8%, rgba(198, 255, 61, .35), transparent 60%),
    radial-gradient(760px 420px at 8% 108%, rgba(255, 61, 139, .28), transparent 62%),
    linear-gradient(150deg, #0A1128 0%, #0B2C6B 52%, #135C9E 100%);
  color: #fff;
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: center; padding: clamp(2.6rem, 6vw, 5rem) 0; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 800;
  font-size: .76rem; text-transform: uppercase; letter-spacing: .12em;
  background: var(--lime); color: var(--ink); padding: .38rem .85rem; border-radius: var(--pill);
  border: 2.5px solid var(--ink); box-shadow: var(--pop-sm); transform: rotate(-1.6deg); margin-bottom: 1.2rem;
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 mark { background: none; color: var(--lime); position: relative; white-space: nowrap; }
.hero h1 mark::after {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: .06em; height: .18em;
  background: var(--hot); border-radius: var(--pill); z-index: -1; transform: rotate(-.8deg);
}
.hero__sub { font-size: clamp(1rem, 1.5vw, 1.16rem); color: rgba(255,255,255,.86); max-width: 48ch; margin-bottom: 1.7rem; }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.hero__proof { display: flex; gap: 1.6rem; flex-wrap: wrap; align-items: center; font-size: .86rem; color: rgba(255,255,255,.8); }
.hero__proof strong { color: #fff; font-family: var(--font-display); font-size: 1.15rem; display: block; }
.hero__art { position: relative; aspect-ratio: 1/.92; }
.hero__card {
  position: absolute; border: 2.5px solid var(--ink); border-radius: var(--r-lg);
  box-shadow: var(--pop-lg); overflow: hidden; background: #fff;
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card--1 { width: 54%; left: 2%; top: 6%; transform: rotate(-5deg); z-index: 3; }
.hero__card--2 { width: 46%; right: 4%; top: 0; transform: rotate(4.5deg); z-index: 2; }
.hero__card--3 { width: 44%; right: 12%; bottom: 2%; transform: rotate(-2.5deg); z-index: 4; }
.hero__blob { position: absolute; inset: 12% 6%; background: var(--electric); filter: blur(60px); opacity: .45; border-radius: 50%; z-index: 1; }
.hero__sticker {
  position: absolute; right: -2%; top: 38%; z-index: 6; background: var(--sunny); color: var(--ink);
  border: 2.5px solid var(--ink); border-radius: var(--pill); box-shadow: var(--pop);
  font-family: var(--font-display); font-weight: 800; font-size: .84rem; padding: .55rem 1rem;
  transform: rotate(8deg); animation: wobble 5s ease-in-out infinite;
}
@keyframes wobble { 0%,100% { transform: rotate(8deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-7px); } }

/* ---------- USP strip ---------- */
.usps { background: var(--ink); color: #fff; border-bottom: 2.5px solid var(--ink); }
.usps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.12); }
.usp { background: var(--ink); padding: 1.15rem 1rem; display: flex; gap: .8rem; align-items: center; }
.usp__icon { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.09); font-size: 1.1rem; }
.usp__title { font-family: var(--font-display); font-weight: 800; font-size: .92rem; }
.usp__sub { font-size: .77rem; color: rgba(255,255,255,.65); }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: clamp(2.6rem, 5.5vw, 4.6rem) 0; }
.section--tight { padding: clamp(1.8rem, 3vw, 2.6rem) 0; }
.section--paper { background: var(--paper); }
.section--white { background: #fff; border-block: 2.5px solid var(--ink); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h2 { color: #fff; }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.8rem; flex-wrap: wrap; }
.section__title { margin: 0; }
.section__kicker {
  font-family: var(--font-display); font-weight: 800; font-size: .74rem; text-transform: uppercase;
  letter-spacing: .14em; color: var(--electric); margin-bottom: .4rem;
}
.section__sub { color: var(--muted); max-width: 56ch; margin: .4rem 0 0; }
.section--ink .section__sub { color: rgba(255,255,255,.7); }

/* ---------- category tiles ---------- */
.cats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.cat {
  position: relative; border: var(--border); border-radius: var(--r-lg); padding: 1.2rem 1rem;
  background: #fff; box-shadow: var(--pop-sm); overflow: hidden;
  transition: transform .16s var(--ease), box-shadow .16s var(--ease);
}
.cat:hover { transform: translate(-3px, -3px); box-shadow: var(--pop); }
.cat__blob { position: absolute; width: 120px; height: 120px; right: -34px; top: -34px; border-radius: 50%; opacity: .22; }
.cat__emoji { font-size: 1.9rem; margin-bottom: .5rem; position: relative; }
.cat__name { font-family: var(--font-display); font-weight: 800; font-size: 1rem; line-height: 1.15; position: relative; }
.cat__count { font-size: .78rem; color: var(--muted); position: relative; }

/* ---------- product grid & card ---------- */
.grid-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.grid-products--3 { grid-template-columns: repeat(3, 1fr); }
.grid-products--5 { grid-template-columns: repeat(5, 1fr); }

.pcard {
  position: relative; background: #fff; border: var(--border); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--pop-sm); display: flex; flex-direction: column;
  transition: transform .16s var(--ease), box-shadow .16s var(--ease);
}
.pcard:hover { transform: translate(-4px, -4px); box-shadow: var(--pop); }
.pcard__media { position: relative; aspect-ratio: 1; background: var(--paper); overflow: hidden; display: block; }
.pcard__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pcard:hover .pcard__img { transform: scale(1.06); }
.pcard__flags { position: absolute; top: .65rem; left: .65rem; display: flex; flex-direction: column; gap: .35rem; align-items: flex-start; z-index: 2; }
.pcard__wish {
  position: absolute; top: .6rem; right: .6rem; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.94); border: 2px solid var(--ink); display: grid; place-items: center; z-index: 2;
  transition: transform .15s, background .15s;
}
.pcard__wish svg { width: 17px; height: 17px; stroke: var(--ink); fill: none; stroke-width: 2.2; }
.pcard__wish:hover { transform: scale(1.12); }
.pcard__wish.is-on { background: var(--hot); }
.pcard__wish.is-on svg { stroke: #fff; fill: #fff; }
.pcard__quick {
  position: absolute; left: .65rem; right: .65rem; bottom: .65rem; z-index: 2;
  opacity: 0; transform: translateY(8px); transition: opacity .18s, transform .18s;
}
.pcard:hover .pcard__quick { opacity: 1; transform: translateY(0); }
.pcard__body { padding: .9rem 1rem 1.1rem; display: flex; flex-direction: column; flex: 1; gap: .35rem; }
.pcard__cat { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.pcard__title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1.22; margin: 0; }
.pcard__rating { display: flex; align-items: center; gap: .35rem; font-size: .78rem; color: var(--muted); }
.pcard__price { display: flex; align-items: baseline; gap: .5rem; margin-top: auto; padding-top: .5rem; }
.pcard__now { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; }
.pcard__was { font-size: .86rem; color: var(--muted); text-decoration: line-through; }
.pcard__off { font-size: .74rem; font-weight: 800; color: var(--hot); }
.pcard__stock { font-size: .74rem; font-weight: 700; color: var(--hot); }

/* ---------- deal of the day ---------- */
.deal {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 0; border: var(--border);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--pop-lg); background: #fff;
}
.deal__media { position: relative; background: var(--paper); }
.deal__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/.9; }
.deal__body { padding: clamp(1.5rem, 3vw, 2.6rem); display: flex; flex-direction: column; justify-content: center; }
.deal__flag { align-self: flex-start; margin-bottom: .9rem; }
.countdown { display: flex; gap: .5rem; margin: 1.1rem 0 1.4rem; }
.countdown__unit {
  background: var(--ink); color: #fff; border-radius: var(--r-sm); padding: .55rem .7rem; min-width: 62px; text-align: center;
}
.countdown__num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; line-height: 1; }
.countdown__label { font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; opacity: .65; }
.deal__price { display: flex; align-items: baseline; gap: .7rem; margin-bottom: 1.2rem; }
.deal__now { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); }
.deal__was { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.stockbar { height: 12px; background: var(--ink-05); border: 2px solid var(--ink); border-radius: var(--pill); overflow: hidden; margin-bottom: .4rem; }
.stockbar__fill { height: 100%; background: repeating-linear-gradient(45deg, var(--hot), var(--hot) 8px, #ff6ba6 8px, #ff6ba6 16px); }

/* ---------- marquee band ---------- */
.band { background: var(--hot); border-block: 2.5px solid var(--ink); overflow: hidden; padding: .7rem 0; }
.band__track { display: flex; gap: 2.5rem; white-space: nowrap; animation: ticker 26s linear infinite; }
.band__item { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: #fff; text-transform: uppercase; letter-spacing: .04em; display: flex; align-items: center; gap: 2.5rem; }
.band__item::after { content: '★'; color: var(--lime); }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.quote {
  background: #fff; border: var(--border); border-radius: var(--r-lg); padding: 1.4rem;
  box-shadow: var(--pop-sm); display: flex; flex-direction: column; gap: .6rem;
}
.quote:nth-child(2) { transform: rotate(-.8deg); }
.quote:nth-child(3) { transform: rotate(.7deg); }
.quote__text { font-size: .95rem; }
.quote__who { display: flex; align-items: center; gap: .6rem; margin-top: auto; }
.quote__avatar { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: .9rem; }
.quote__name { font-weight: 700; font-size: .87rem; }
.quote__meta { font-size: .75rem; color: var(--muted); }

/* ============================================================
   Collection page
   ============================================================ */
.collection { display: grid; grid-template-columns: 250px 1fr; gap: 2rem; align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 16px); background: #fff; border: var(--border); border-radius: var(--r-lg); padding: 1.1rem; box-shadow: var(--pop-sm); }
.filters__group { border-bottom: 2px dashed var(--line); padding-bottom: 1rem; margin-bottom: 1rem; }
.filters__group:last-of-type { border-bottom: 0; margin-bottom: .6rem; }
.filters__title { font-family: var(--font-display); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .6rem; }
.filters__row { display: flex; gap: .5rem; }
.filters__link { display: flex; justify-content: space-between; padding: .3rem 0; font-size: .9rem; }
.filters__link.is-active { font-weight: 800; color: var(--electric); }
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.toolbar__count { font-size: .9rem; color: var(--muted); }
.chips { display: flex; gap: .45rem; flex-wrap: wrap; }
.chip {
  font-size: .82rem; font-weight: 700; padding: .38rem .8rem; border-radius: var(--pill);
  border: 2px solid var(--line); background: #fff; transition: all .14s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 .7rem;
  border: 2px solid var(--line); border-radius: var(--r-sm); font-weight: 700; font-size: .9rem; background: #fff;
}
.pagination a:hover { border-color: var(--ink); }
.pagination .is-current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============================================================
   Product page
   ============================================================ */
.pdp { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.6rem; align-items: start; }
.gallery { position: sticky; top: calc(var(--header-h) + 16px); }
.gallery__main { position: relative; border: var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--pop); background: var(--paper); aspect-ratio: 1; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__flags { position: absolute; top: .8rem; left: .8rem; display: flex; flex-direction: column; gap: .4rem; align-items: flex-start; z-index: 2; }
.gallery__thumbs { display: flex; gap: .6rem; margin-top: .8rem; flex-wrap: wrap; }
.gallery__thumb { width: 74px; height: 74px; border: 2.5px solid var(--line); border-radius: var(--r-sm); overflow: hidden; background: var(--paper); }
.gallery__thumb.is-active { border-color: var(--ink); box-shadow: var(--pop-sm); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp__cat { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--electric); }
.pdp h1 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: .3rem 0 .6rem; }
.pdp__sub { color: var(--muted); font-size: 1.02rem; margin-bottom: .9rem; }
.pdp__ratingline { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.1rem; font-size: .88rem; flex-wrap: wrap; }
.pdp__price { display: flex; align-items: baseline; gap: .7rem; margin-bottom: .3rem; }
.pdp__now { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; }
.pdp__was { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.pdp__save { font-size: .95rem; color: var(--hot); font-weight: 800; }
.pdp__urgency { display: flex; align-items: center; gap: .45rem; font-size: .86rem; font-weight: 700; color: var(--hot); margin-bottom: 1.2rem; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--hot); animation: pulse 1.6s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,61,139,.6); } 70% { box-shadow: 0 0 0 9px rgba(255,61,139,0); } 100% { box-shadow: 0 0 0 0 rgba(255,61,139,0); } }

.opt { margin-bottom: 1.1rem; }
.opt__label { font-weight: 700; font-size: .86rem; margin-bottom: .5rem; }
.opt__label span { color: var(--muted); font-weight: 500; }
.swatches { display: flex; gap: .5rem; flex-wrap: wrap; }
.swatch {
  min-width: 46px; height: 42px; padding: 0 .8rem; border: 2.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; font-weight: 700; font-size: .85rem; display: inline-flex; align-items: center; gap: .45rem;
  transition: all .14s;
}
.swatch:hover { border-color: var(--ink); }
.swatch.is-active { border-color: var(--ink); box-shadow: var(--pop-sm); }
.swatch.is-out { opacity: .38; text-decoration: line-through; }
.swatch__dot { width: 17px; height: 17px; border-radius: 50%; border: 2px solid var(--ink); flex: none; }

.qtyrow { display: flex; gap: .7rem; align-items: stretch; margin-bottom: .9rem; }
.qty { display: inline-flex; align-items: center; border: var(--border); border-radius: var(--pill); overflow: hidden; background: #fff; flex: none; }
.qty button { width: 42px; height: 100%; font-size: 1.2rem; font-weight: 800; }
.qty button:hover { background: var(--ink-05); }
.qty input { width: 46px; text-align: center; border: 0; font-weight: 800; font-family: var(--font-display); -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.trustrow { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin: 1.2rem 0; }
.trust { text-align: center; padding: .8rem .4rem; border: 2px dashed var(--line); border-radius: var(--r-sm); }
.trust__icon { font-size: 1.2rem; }
.trust__text { font-size: .74rem; font-weight: 700; line-height: 1.25; margin-top: .2rem; }

.accordion { border-top: 2px solid var(--line); }
.acc { border-bottom: 2px solid var(--line); }
.acc__head { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; font-family: var(--font-display); font-weight: 800; font-size: 1rem; text-align: left; }
.acc__icon { transition: transform .2s; font-size: 1.3rem; line-height: 1; }
.acc.is-open .acc__icon { transform: rotate(45deg); }
.acc__body { display: none; padding-bottom: 1.1rem; font-size: .93rem; color: var(--ink-soft); }
.acc.is-open .acc__body { display: block; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.spec-table td { padding: .5rem 0; border-bottom: 1px solid var(--line); }
.spec-table td:first-child { color: var(--muted); width: 40%; }

/* bundle */
.bundle { border: var(--border); border-radius: var(--r-lg); padding: 1.2rem; background: #fff; box-shadow: var(--pop-sm); }
.bundle__items { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin-bottom: 1rem; }
.bundle__item { width: 84px; text-align: center; }
.bundle__item img { width: 84px; height: 84px; border: 2px solid var(--ink); border-radius: var(--r-sm); object-fit: cover; }
.bundle__item span { font-size: .7rem; display: block; margin-top: .3rem; line-height: 1.2; }
.bundle__plus { font-size: 1.5rem; font-weight: 800; color: var(--muted); }

/* reviews */
.rv-summary { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; align-items: center; padding: 1.4rem; border: var(--border); border-radius: var(--r-lg); background: #fff; box-shadow: var(--pop-sm); margin-bottom: 1.6rem; }
.rv-score { text-align: center; }
.rv-score__num { font-family: var(--font-display); font-weight: 800; font-size: 3.2rem; line-height: 1; }
.rv-bar { display: flex; align-items: center; gap: .6rem; font-size: .82rem; margin-bottom: .3rem; }
.rv-bar__track { flex: 1; height: 9px; background: var(--ink-05); border-radius: var(--pill); overflow: hidden; }
.rv-bar__fill { height: 100%; background: var(--sunny); }
.review { padding: 1.2rem 0; border-bottom: 2px dashed var(--line); }
.review__head { display: flex; align-items: center; gap: .7rem; margin-bottom: .5rem; flex-wrap: wrap; }
.review__avatar { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--ink); display: grid; place-items: center; font-weight: 800; font-family: var(--font-display); font-size: .85rem; }
.review__name { font-weight: 700; font-size: .9rem; }
.review__meta { font-size: .76rem; color: var(--muted); }
.review__title { font-family: var(--font-display); font-weight: 800; margin: .3rem 0; }

/* sticky mobile buy bar */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; background: #fff;
  border-top: 2.5px solid var(--ink); padding: .7rem 1rem; display: none;
  gap: .8rem; align-items: center; box-shadow: 0 -6px 20px rgba(10,17,40,.12);
}
.buybar__price { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; }
.buybar .btn { flex: 1; }

/* ============================================================
   Cart drawer
   ============================================================ */
.overlay { position: fixed; inset: 0; background: rgba(10,17,40,.55); backdrop-filter: blur(3px); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .22s; }
.overlay.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(430px, 100%); background: #fff; z-index: 95;
  border-left: 2.5px solid var(--ink); transform: translateX(100%); transition: transform .3s var(--ease);
  display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.2rem; border-bottom: 2.5px solid var(--ink); }
.drawer__title { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; margin: 0; }
.drawer__body { flex: 1; overflow-y: auto; padding: 1.1rem 1.2rem; }
.drawer__foot { border-top: 2.5px solid var(--ink); padding: 1.1rem 1.2rem; background: var(--paper); }
.freeship { margin-bottom: 1rem; }
.freeship__text { font-size: .82rem; font-weight: 700; margin-bottom: .4rem; }
.freeship__track { height: 11px; background: #fff; border: 2px solid var(--ink); border-radius: var(--pill); overflow: hidden; }
.freeship__fill { height: 100%; background: linear-gradient(90deg, var(--electric), var(--lime)); transition: width .4s var(--ease); }
.cart-line { display: grid; grid-template-columns: 74px 1fr auto; gap: .8rem; padding: .9rem 0; border-bottom: 2px dashed var(--line); }
.cart-line__img { width: 74px; height: 74px; border: 2px solid var(--ink); border-radius: var(--r-sm); object-fit: cover; background: var(--paper); }
.cart-line__title { font-weight: 700; font-size: .9rem; line-height: 1.25; }
.cart-line__variant { font-size: .77rem; color: var(--muted); }
.cart-line__price { font-family: var(--font-display); font-weight: 800; }
.cart-line__remove { font-size: .76rem; color: var(--muted); text-decoration: underline; }
.qty--sm { border-width: 2px; }
.qty--sm button { width: 30px; height: 30px; font-size: 1rem; }
.qty--sm input { width: 34px; font-size: .85rem; }
.totals { font-size: .92rem; }
.totals__row { display: flex; justify-content: space-between; padding: .28rem 0; }
.totals__row--big { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; padding-top: .7rem; margin-top: .5rem; border-top: 2px solid var(--ink); }
.totals__row--save { color: var(--hot); font-weight: 700; }
.empty-state { text-align: center; padding: 3rem 1rem; }
.empty-state__emoji { font-size: 3rem; margin-bottom: .6rem; }

/* ============================================================
   Checkout
   ============================================================ */
.checkout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.4rem; align-items: start; }
.co-steps { display: flex; gap: .5rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.co-step { display: flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .86rem; color: var(--muted); }
.co-step__num { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--line); display: grid; place-items: center; font-size: .78rem; }
.co-step.is-active { color: var(--ink); }
.co-step.is-active .co-step__num { background: var(--lime); border-color: var(--ink); }
.co-step.is-done .co-step__num { background: var(--ink); color: #fff; border-color: var(--ink); }
.panel { background: #fff; border: var(--border); border-radius: var(--r-lg); padding: 1.4rem; box-shadow: var(--pop-sm); margin-bottom: 1.2rem; }
.panel__title { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; margin: 0 0 1rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.summary { position: sticky; top: calc(var(--header-h) + 16px); }
.pay-option { display: flex; gap: .8rem; align-items: center; padding: .9rem 1rem; border: 2px solid var(--line); border-radius: var(--r-sm); margin-bottom: .6rem; cursor: pointer; transition: all .14s; }
.pay-option:hover { border-color: var(--ink); }
.pay-option.is-active { border-color: var(--ink); box-shadow: var(--pop-sm); }
.pay-option input { accent-color: var(--electric); width: 19px; height: 19px; }
.pay-option__label { font-weight: 700; font-size: .93rem; }
.pay-option__sub { font-size: .78rem; color: var(--muted); }
.ship-option { display: flex; gap: .8rem; align-items: center; padding: .85rem 1rem; border: 2px solid var(--line); border-radius: var(--r-sm); margin-bottom: .55rem; cursor: pointer; }
.ship-option.is-active { border-color: var(--ink); box-shadow: var(--pop-sm); }
.ship-option__price { margin-left: auto; font-family: var(--font-display); font-weight: 800; }
.bump {
  border: 2.5px dashed var(--hot); border-radius: var(--r); padding: 1rem; background: #FFF4F9;
  display: flex; gap: .8rem; align-items: center; margin-bottom: 1.2rem;
}
.bump img { width: 62px; height: 62px; border-radius: var(--r-sm); border: 2px solid var(--ink); object-fit: cover; }

/* ============================================================
   Account / order pages
   ============================================================ */
.acct { display: grid; grid-template-columns: 230px 1fr; gap: 2rem; align-items: start; }
.acct-nav { background: #fff; border: var(--border); border-radius: var(--r-lg); padding: .7rem; box-shadow: var(--pop-sm); }
.acct-nav a { display: block; padding: .6rem .8rem; border-radius: var(--r-sm); font-weight: 700; font-size: .92rem; }
.acct-nav a:hover { background: var(--ink-05); }
.acct-nav a.is-active { background: var(--ink); color: #fff; }
.order-card { background: #fff; border: var(--border); border-radius: var(--r-lg); padding: 1.2rem; box-shadow: var(--pop-sm); margin-bottom: 1rem; }
.order-card__head { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; flex-wrap: wrap; margin-bottom: .9rem; }
.status {
  font-family: var(--font-display); font-weight: 800; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em;
  padding: .3rem .65rem; border-radius: var(--pill); border: 2px solid var(--ink); background: var(--sunny);
}
.status.is-shipped { background: var(--electric); color: #fff; }
.status.is-delivered { background: var(--mint); }
.status.is-cancelled { background: var(--line); color: var(--muted); border-color: var(--line); }
.status.is-processing { background: var(--grape); color: #fff; }
.status.is-paid { background: var(--lime); }
.status.is-pending { background: #fff; }
.track-line { display: flex; gap: 0; margin: 1.4rem 0; }
.track-step { flex: 1; text-align: center; position: relative; font-size: .76rem; color: var(--muted); }
.track-step::before { content: ''; position: absolute; top: 13px; left: -50%; width: 100%; height: 3px; background: var(--line); z-index: 0; }
.track-step:first-child::before { display: none; }
.track-step__dot { width: 28px; height: 28px; border-radius: 50%; border: 2.5px solid var(--line); background: #fff; margin: 0 auto .4rem; display: grid; place-items: center; position: relative; z-index: 1; font-size: .8rem; }
.track-step.is-done .track-step__dot { background: var(--lime); border-color: var(--ink); }
.track-step.is-done::before { background: var(--ink); }
.track-step.is-done { color: var(--ink); font-weight: 700; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 3.2rem 0 1.4rem; }
.footer h4 { color: #fff; font-size: .92rem; text-transform: uppercase; letter-spacing: .09em; margin-bottom: .9rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.2rem; }
.footer a:hover { color: var(--lime); }
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: .45rem; font-size: .9rem; }
.footer__logo { display: flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff; margin-bottom: .8rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; }
.newsletter { display: flex; gap: .5rem; margin-top: .9rem; }
.newsletter .input { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.06); color: #fff; border-radius: var(--pill); }
.newsletter .input::placeholder { color: rgba(255,255,255,.45); }
.paycards { display: flex; gap: .4rem; flex-wrap: wrap; }
.paycard { height: 26px; padding: 0 .5rem; background: rgba(255,255,255,.1); border-radius: 5px; display: grid; place-items: center; font-size: .68rem; font-weight: 700; color: #fff; }

/* ============================================================
   Popups & toasts
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 1rem; }
.modal.is-open { display: grid; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(10,17,40,.62); backdrop-filter: blur(4px); }
.modal__box {
  position: relative; background: #fff; border: var(--border); border-radius: var(--r-xl);
  box-shadow: var(--pop-lg); max-width: 520px; width: 100%; overflow: hidden; animation: pop .28s var(--ease);
}
.modal__box--wide { max-width: 900px; }
@keyframes pop { from { transform: scale(.92) translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal__close { position: absolute; top: .8rem; right: .8rem; width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 2px solid var(--ink); display: grid; place-items: center; font-weight: 800; z-index: 2; }
.modal__pad { padding: 2rem; }
.promo-hero { background: linear-gradient(140deg, var(--navy), var(--electric)); color: #fff; padding: 2rem; text-align: center; }
.promo-hero h3 { color: #fff; font-size: 1.8rem; }

.toasts { position: fixed; left: 1rem; bottom: 1rem; z-index: 105; display: flex; flex-direction: column; gap: .6rem; max-width: 330px; }
.toast {
  background: #fff; border: var(--border); border-radius: var(--r); box-shadow: var(--pop);
  padding: .7rem .9rem; display: flex; gap: .7rem; align-items: center; animation: slidein .3s var(--ease);
}
.toast.is-out { animation: slideout .3s var(--ease) forwards; }
@keyframes slidein { from { transform: translateX(-120%); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes slideout { to { transform: translateX(-120%); opacity: 0; } }
.toast img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; border: 2px solid var(--ink); flex: none; }
.toast__title { font-weight: 700; font-size: .84rem; line-height: 1.25; }
.toast__meta { font-size: .74rem; color: var(--muted); }

.flash { padding: .85rem 1.1rem; border-radius: var(--r); border: var(--border); font-weight: 600; margin-bottom: 1rem; box-shadow: var(--pop-sm); }
.flash--success { background: #E9FFD4; }
.flash--error { background: #FFE4EF; }
.flash--info { background: #E1F3FF; }

/* confetti */
.confetti-piece { position: fixed; width: 10px; height: 14px; z-index: 120; pointer-events: none; border-radius: 2px; }

/* skeleton */
.skel { background: linear-gradient(90deg, var(--ink-05) 25%, rgba(10,17,40,.09) 50%, var(--ink-05) 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: var(--r-sm); }
@keyframes shimmer { to { background-position: -200% 0; } }

/* prose */
.prose { font-size: 1rem; line-height: 1.75; }
.prose h2 { font-size: 1.5rem; margin-top: 2rem; }
.prose h3 { font-size: 1.2rem; margin-top: 1.5rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--electric); text-decoration: underline; font-weight: 600; }

/* blog */
.post-card { background: #fff; border: var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--pop-sm); transition: transform .16s var(--ease), box-shadow .16s var(--ease); }
.post-card:hover { transform: translate(-3px,-3px); box-shadow: var(--pop); }
.post-card__img { aspect-ratio: 16/9; object-fit: cover; width: 100%; background: var(--paper); }
.post-card__body { padding: 1.1rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .cats { grid-template-columns: repeat(3, 1fr); }
  .grid-products, .grid-products--5 { grid-template-columns: repeat(3, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 520px; margin-inline: auto; }
  .usps__grid { grid-template-columns: repeat(2, 1fr); }
  .checkout, .pdp { grid-template-columns: 1fr; }
  .gallery, .summary, .filters { position: static; }
  .quotes { grid-template-columns: 1fr; }
  .deal { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav, .searchbar { display: none; }
  .burger { display: grid; }
  .collection, .acct { grid-template-columns: 1fr; }
  .filters { position: static; }
  .rv-summary { grid-template-columns: 1fr; gap: 1rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .buybar { display: flex; }
  body.has-buybar { padding-bottom: 76px; }
}
@media (max-width: 620px) {
  .grid-products, .grid-products--3, .grid-products--5 { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .trustrow { grid-template-columns: 1fr; }
  .pcard__body { padding: .7rem .8rem .9rem; }
  .pcard__title { font-size: .9rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .modal__pad { padding: 1.4rem; }
  .toasts { left: .6rem; right: .6rem; max-width: none; }
}

/* mobile nav sheet */
.mobilenav {
  position: fixed; inset: 0 auto 0 0; width: min(320px, 88%); background: #fff; z-index: 95;
  border-right: 2.5px solid var(--ink); transform: translateX(-100%); transition: transform .3s var(--ease);
  display: flex; flex-direction: column; padding: 1.2rem;
}
.mobilenav.is-open { transform: none; }
.mobilenav a { display: block; padding: .7rem 0; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; border-bottom: 2px dashed var(--line); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}


/* Supplier description cleanup */
.product-description { line-height: 1.7; overflow-wrap: anywhere; }
.product-description > :first-child { margin-top: 0; }
.product-description > :last-child { margin-bottom: 0; }
.product-description p { margin: 0 0 .8rem; }
.product-description h2,
.product-description h3,
.product-description h4 { margin: 1rem 0 .45rem; font-family: var(--font-display); color: var(--ink); line-height: 1.25; }
.product-description h2 { font-size: 1.08rem; }
.product-description h3,
.product-description h4 { font-size: 1rem; }
.product-description ul,
.product-description ol { margin: .45rem 0 .85rem; padding-left: 1.3rem; }
.product-description li + li { margin-top: .28rem; }

/* v1.0.3: live supplier category cards */
.cat { min-height: 132px; display: flex; flex-direction: column; justify-content: flex-end; }
.cat__emoji { margin-bottom: auto; }
.cat__name { overflow-wrap: anywhere; }

/* v1.0.7 variant UX */
.swatch--image { height: 58px; padding: .25rem .55rem .25rem .3rem; }
.swatch--image img { width: 42px; height: 42px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.swatch:disabled { cursor: not-allowed; }
.pdp__variant-stock { margin: -.35rem 0 1rem; font-size: .82rem; font-weight: 800; color: #18864b; }
.pdp__variant-stock.is-bad { color: var(--hot); }

/* v1.0.7 storefront polish */
.gallery__thumbs { flex-wrap:nowrap; overflow-x:auto; padding:0 2px .35rem; scrollbar-width:thin; }
.gallery__thumb { flex:0 0 74px; }
.pcard__new, .pdp__new-label { font-weight:800; color:var(--muted); letter-spacing:.01em; }
.pdp__new-label { color:var(--ink); }
@media (max-width:620px) {
  .gallery__thumb { flex-basis:62px; width:62px; height:62px; }
  .swatch--image { min-height:54px; }
}

/* ============================================================
   v1.0.11 — mobile storefront overhaul
   ============================================================ */
.pdp > *, .pdp__info, .qtyrow > *, .buybar > * { min-width: 0; }
.pdp__breadcrumb {
  font-size: .84rem; color: var(--muted); margin-bottom: 1.2rem;
  overflow-wrap: anywhere;
}
.buybar__meta { min-width: 0; }
.buybar__title { font-size: .72rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 34vw; }

@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .wrap, .wrap--narrow { width: min(100% - 24px, var(--wrap)); }
  .ticker { height: 32px; }
  .ticker__item { font-size: .72rem; }
  .header__bar { height: var(--header-h); gap: .55rem; }
  .burger { display: grid; flex: 0 0 40px; }
  .logo { font-size: 1.28rem; gap: .4rem; }
  .logo__mark { width: 29px; height: 29px; }
  .header__actions { gap: .12rem; }
  .icon-btn { width: 40px; height: 40px; }
  .section { padding: 2.25rem 0; }
  .section--tight { padding: 1rem 0 1.8rem; }

  .pdp { gap: 1.35rem; }
  .gallery { width: 100%; }
  .gallery__main { box-shadow: 3px 3px 0 var(--ink); }
  .pdp__info { width: 100%; }
  .pdp h1 { overflow-wrap: anywhere; hyphens: auto; }
  .pdp__price { flex-wrap: wrap; row-gap: .12rem; }
  .pdp__save { white-space: normal; }

  .collection { gap: 1rem; }
  .toolbar { margin-bottom: 1rem; }
  .filters { box-shadow: none; }
  .checkout { gap: 1.2rem; }
  .panel { padding: 1.05rem; }
}

@media (max-width: 620px) {
  html { scroll-padding-bottom: 92px; }
  body { font-size: 15px; }
  body.has-buybar { padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px)); }
  .wrap, .wrap--narrow { width: min(100% - 20px, var(--wrap)); }
  .section { padding: 1.75rem 0; }
  .section--tight { padding: .65rem 0 1.35rem; }

  /* compact mobile header */
  :root { --header-h: 58px; }
  .header__bar { gap: .25rem; }
  .burger { width: 38px; height: 38px; flex-basis: 38px; }
  .logo { font-size: 1.17rem; }
  .logo__mark { width: 27px; height: 27px; }
  .icon-btn { width: 38px; height: 38px; }
  .icon-btn svg { width: 20px; height: 20px; }
  .header__actions .icon-btn[aria-label="Wishlist"] { display: none; }
  .icon-btn__count { top: 0; right: -1px; }

  /* homepage / collections */
  .hero__inner { padding: 2rem 0; gap: 1.4rem; }
  .hero h1 { font-size: clamp(2.05rem, 11vw, 3rem); }
  .hero__sub { margin-bottom: 1.15rem; }
  .hero__cta { gap: .55rem; margin-bottom: 1.1rem; }
  .hero__cta .btn { flex: 1 1 150px; }
  .hero__proof { gap: .9rem 1.2rem; }
  .hero__art { max-height: 360px; }
  .section__head { margin-bottom: 1.1rem; align-items: flex-start; }
  .section__title { font-size: 1.75rem; }
  .cats { gap: .65rem; }
  .cat { min-height: 112px; padding: .85rem; border-radius: 18px; box-shadow: 2px 2px 0 var(--ink); }
  .cat__emoji { font-size: 1.6rem; }
  .cat__name { font-size: .92rem; }
  .cat__count { font-size: .7rem; }

  .grid-products, .grid-products--3, .grid-products--5 { gap: .65rem; }
  .pcard { border-radius: 17px; box-shadow: 2px 2px 0 var(--ink); }
  .pcard:hover { transform: none; box-shadow: 2px 2px 0 var(--ink); }
  .pcard__body { padding: .58rem .62rem .72rem; gap: .22rem; }
  .pcard__title { font-size: .84rem; line-height: 1.18; overflow-wrap: anywhere; }
  .pcard__cat { font-size: .61rem; }
  .pcard__rating { font-size: .68rem; }
  .pcard__price { gap: .35rem; flex-wrap: wrap; padding-top: .3rem; }
  .pcard__now { font-size: 1.02rem; }
  .pcard__was { font-size: .72rem; }
  .pcard__off, .pcard__stock { font-size: .66rem; }
  .pcard__wish { width: 34px; height: 34px; top: .45rem; right: .45rem; }
  .pcard__flags { top: .45rem; left: .45rem; }
  .pcard__flags .badge { font-size: .58rem; padding: .22rem .42rem; }
  .pcard__quick { display: none; }

  .toolbar { align-items: stretch; gap: .6rem; }
  .toolbar > * { min-width: 0; }
  .chips { flex-wrap: nowrap; overflow-x: auto; padding: 0 1px .25rem; scrollbar-width: none; }
  .chips::-webkit-scrollbar { display: none; }
  .chip { flex: 0 0 auto; }
  .filters { padding: .9rem; border-radius: 16px; }

  /* product page: stop any child from widening the viewport */
  .pdp { display: block; }
  .pdp__breadcrumb {
    margin-bottom: .55rem; font-size: .72rem; white-space: nowrap; overflow: hidden;
    text-overflow: ellipsis;
  }
  .gallery { margin-inline: -10px; width: calc(100% + 20px); }
  .gallery__main {
    aspect-ratio: 4 / 3; border-radius: 0 0 22px 22px; border-left-width: 0; border-right-width: 0;
    box-shadow: 0 3px 0 var(--ink); background: #fff;
  }
  .gallery__main img { object-fit: contain; }
  .gallery__flags { top: .6rem; left: .75rem; }
  .gallery__thumbs {
    gap: .45rem; margin-top: .65rem; padding: 0 10px .45rem; scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .gallery__thumbs::-webkit-scrollbar { display: none; }
  .gallery__thumb { flex: 0 0 58px; width: 58px; height: 58px; scroll-snap-align: start; border-width: 2px; }
  .pdp__info { margin-top: 1.25rem; }
  .pdp__cat { font-size: .7rem; }
  .pdp h1 { font-size: clamp(1.75rem, 8.4vw, 2.15rem); line-height: 1.03; margin: .35rem 0 .65rem; }
  .pdp__sub { font-size: .92rem; margin-bottom: .55rem; }
  .pdp__ratingline { margin-bottom: .8rem; }
  .pdp__price { gap: .45rem .65rem; margin-bottom: .65rem; align-items: baseline; }
  .pdp__now { font-size: clamp(2.1rem, 10vw, 2.65rem); line-height: 1; }
  .pdp__was { font-size: 1rem; }
  .pdp__save { flex-basis: auto; font-size: .9rem; }
  .pdp__urgency { margin-bottom: .85rem; font-size: .78rem; }

  .opt { margin-bottom: .9rem; }
  .opt__label { font-size: .82rem; margin-bottom: .4rem; }
  .swatches {
    flex-wrap: nowrap; overflow-x: auto; gap: .45rem; margin-inline: -10px; padding: 1px 10px .45rem;
    scroll-snap-type: x proximity; scrollbar-width: none;
  }
  .swatches::-webkit-scrollbar { display: none; }
  .swatch { flex: 0 0 auto; min-height: 46px; height: auto; padding: .35rem .72rem; scroll-snap-align: start; }
  .swatch--image { min-height: 58px; }
  .swatch--image img { width: 40px; height: 40px; }
  .pdp__variant-stock { margin: -.1rem 0 .65rem; }

  .qtyrow { display: grid; grid-template-columns: 118px minmax(0, 1fr); gap: .55rem; margin-bottom: .65rem; }
  .qty { width: 100%; justify-content: space-between; }
  .qty button { width: 38px; min-height: 48px; }
  .qty input { width: 38px; }
  .qtyrow .btn { width: 100%; min-width: 0; padding-inline: .65rem; }
  .btn--lg { min-height: 50px; padding: .75rem 1rem; font-size: 1rem; }

  .trustrow { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .35rem; margin: 1rem 0; }
  .trust { padding: .55rem .25rem; border-width: 1.5px; }
  .trust__icon { font-size: 1rem; }
  .trust__text { font-size: .62rem; }
  .bundle { padding: .9rem; border-radius: 17px; box-shadow: 2px 2px 0 var(--ink); }
  .bundle__items { flex-wrap: nowrap; overflow-x: auto; gap: .5rem; padding-bottom: .3rem; }
  .bundle__item, .bundle__item img { width: 68px; }
  .bundle__item img { height: 68px; }
  .accordion { margin-top: 1.1rem !important; }
  .acc__head { padding: .85rem 0; }
  .acc__body { font-size: .9rem; }
  .product-description { font-size: .92rem; line-height: 1.65; }

  .rv-summary { padding: .95rem; border-radius: 17px; box-shadow: 2px 2px 0 var(--ink); }
  .review { padding: .95rem 0; }

  /* checkout/cart/account */
  .panel { padding: .9rem; border-radius: 17px; box-shadow: 2px 2px 0 var(--ink); }
  .co-steps { gap: .35rem .65rem; margin-bottom: 1rem; }
  .co-step { font-size: .76rem; }
  .field { margin-bottom: .8rem; }
  .input, .select, .textarea { font-size: 16px; padding: .72rem .82rem; }
  .pay-option, .ship-option { padding: .75rem .8rem; }
  .cart-line { grid-template-columns: 58px minmax(0,1fr) auto !important; gap: .6rem; }
  .cart-line__img { width: 58px !important; height: 58px !important; }
  .cart-line__title { font-size: .82rem; overflow-wrap: anywhere; }
  .drawer__head, .drawer__body, .drawer__foot { padding-left: .9rem; padding-right: .9rem; }
  .acct-nav { box-shadow: 2px 2px 0 var(--ink); border-radius: 16px; display: flex; overflow-x: auto; padding: .45rem; }
  .acct-nav a { flex: 0 0 auto; white-space: nowrap; }
  .order-card { padding: .9rem; border-radius: 17px; box-shadow: 2px 2px 0 var(--ink); }
  .track-line { overflow-x: auto; padding-bottom: .3rem; }
  .track-step { min-width: 88px; }

  /* mobile sticky purchase bar — safe area aware and impossible to overflow */
  .buybar {
    display: grid; grid-template-columns: minmax(92px, .75fr) minmax(0, 1.25fr); gap: .55rem;
    padding: .55rem 10px calc(.55rem + env(safe-area-inset-bottom, 0px));
    min-height: 70px;
  }
  .buybar__meta { overflow: hidden; }
  .buybar__price { font-size: 1.05rem; line-height: 1.1; }
  .buybar__title { max-width: 100%; font-size: .64rem; margin-top: .12rem; }
  .buybar .btn { width: 100%; min-width: 0; min-height: 48px; padding: .65rem .7rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  .mobilenav { width: min(330px, 90vw); padding: 1rem; padding-top: calc(1rem + env(safe-area-inset-top, 0px)); }
  .mobilenav a { padding: .62rem 0; font-size: 1rem; }
  .footer { padding-top: 2.2rem; }
  .footer__grid { gap: 1.2rem; }
  .newsletter { flex-direction: column; }
  .newsletter .btn { width: 100%; }
}

@media (max-width: 390px) {
  .header__actions .icon-btn[aria-label="Account"] { display: none; }
  .grid-products, .grid-products--3, .grid-products--5 { gap: .5rem; }
  .pcard__body { padding: .5rem; }
  .pcard__title { font-size: .8rem; }
  .qtyrow { grid-template-columns: 104px minmax(0,1fr); }
  .trust__text { font-size: .58rem; }
  .pdp__now { font-size: 2.1rem; }
  .pdp__was { font-size: .9rem; }
  .pdp__save { font-size: .82rem; }
}

/* ============================================================
   v1.0.14 — homepage live-product hero
   Keeps the hero populated even before products earn trend flags.
   ============================================================ */
.hero__secondary {
  background: rgba(255,255,255,.12) !important;
  color: #fff !important;
  border-color: #fff !important;
  backdrop-filter: blur(10px);
}
.hero__secondary:hover { background: rgba(255,255,255,.2) !important; }

.hero__art.hero-live {
  aspect-ratio: auto;
  min-height: 470px;
  max-height: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75rem;
  padding: 1.1rem .9rem 1rem;
  isolation: isolate;
}
.hero-live .hero__blob {
  inset: 9% 0 5% 5%;
  opacity: .58;
  filter: blur(72px);
}
.hero-live__topline {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .48rem;
  width: min(100%, 610px);
  margin-inline: auto;
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-live__topline a {
  margin-left: auto;
  color: #fff;
  font-size: .78rem;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
}
.hero-live__topline a:hover { text-decoration: underline; }
.hero-live__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(198,255,61,.14);
  animation: hero-live-pulse 2.1s ease-in-out infinite;
}
@keyframes hero-live-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(198,255,61,.12); }
  50% { box-shadow: 0 0 0 9px rgba(198,255,61,0); }
}

.hero-live__grid {
  position: relative;
  z-index: 3;
  width: min(100%, 610px);
  min-height: 390px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}
.hero-live-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: 8px 9px 0 rgba(10,17,40,.28);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.hero-live-card:hover {
  transform: translateY(-4px);
  box-shadow: 10px 13px 0 rgba(10,17,40,.34);
}
.hero-live-card--1 { grid-row: 1 / span 2; transform: rotate(-1.4deg); }
.hero-live-card--1:hover { transform: rotate(-1.4deg) translateY(-4px); }
.hero-live-card--2 { transform: rotate(1.25deg); }
.hero-live-card--2:hover { transform: rotate(1.25deg) translateY(-4px); }
.hero-live-card--3 { transform: rotate(-.7deg); }
.hero-live-card--3:hover { transform: rotate(-.7deg) translateY(-4px); }
.hero-live-card__media {
  position: relative;
  height: 118px;
  background: var(--paper);
  overflow: hidden;
}
.hero-live-card--1 .hero-live-card__media {
  height: auto;
  min-height: 270px;
  flex: 1 1 auto;
}
.hero-live-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}
.hero-live-card:hover .hero-live-card__media img { transform: scale(1.035); }
.hero-live-card__sale {
  position: absolute;
  top: .65rem;
  left: .65rem;
  z-index: 2;
  padding: .28rem .55rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--hot);
  color: #fff;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--ink);
}
.hero-live-card__body {
  padding: .82rem .9rem .88rem;
  display: flex;
  flex-direction: column;
  gap: .26rem;
  min-width: 0;
}
.hero-live-card__category {
  color: var(--electric);
  font-size: .66rem;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-live-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .9rem;
  line-height: 1.15;
}
.hero-live-card--1 .hero-live-card__title { font-size: 1.05rem; }
.hero-live-card__meta {
  margin-top: .28rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
}
.hero-live-card__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: .96rem;
  color: var(--ink);
}
.hero-live-card__stock {
  color: #168554;
  font-size: .68rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero-live-card--promise {
  padding: 1rem;
  justify-content: center;
  align-items: flex-start;
  gap: .35rem;
  background: var(--lime);
  color: var(--ink);
  transform: rotate(-.8deg);
}
.hero-live-card--promise:hover { transform: rotate(-.8deg) translateY(-4px); }
.hero-live-card--promise strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.08;
}
.hero-live-card--promise > span:last-child { font-size: .76rem; font-weight: 750; }
.hero-live-card__promise-kicker {
  font-size: .65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-live-card__promise-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 2px solid var(--ink);
  background: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: .25rem;
}
.hero-live-card--empty { background: var(--sunny); }
.hero-live__grid--1 .hero-live-card--promise:not(.hero-live-card--empty) { grid-row: 1; grid-column: 2; }
.hero-live__grid--1 .hero-live-card--empty { grid-row: 2; grid-column: 2; }

.hero-live .hero__sticker {
  right: -1%;
  top: 48%;
  z-index: 5;
}

@media (max-width: 980px) {
  .hero__art.hero-live { min-height: 430px; padding-inline: 0; }
  .hero-live__grid { min-height: 350px; }
  .hero-live-card--1 .hero-live-card__media { min-height: 235px; }
}

@media (max-width: 700px) {
  .hero__art.hero-live {
    min-height: 0;
    max-height: none !important;
    padding: .3rem 0 .25rem;
    gap: .55rem;
  }
  .hero-live__topline { padding-inline: .1rem; }
  .hero-live__grid,
  .hero-live__grid--1,
  .hero-live__grid--2,
  .hero-live__grid--3 {
    width: 100%;
    min-height: 0;
    display: flex;
    gap: .75rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: .35rem .2rem .8rem;
  }
  .hero-live__grid::-webkit-scrollbar { display: none; }
  .hero-live-card,
  .hero-live-card--1,
  .hero-live-card--2,
  .hero-live-card--3,
  .hero-live-card--promise,
  .hero-live-card--empty {
    flex: 0 0 min(78vw, 330px);
    min-height: 285px;
    grid-row: auto;
    grid-column: auto;
    scroll-snap-align: start;
    transform: none;
    box-shadow: 6px 7px 0 rgba(10,17,40,.26);
  }
  .hero-live-card:hover,
  .hero-live-card--1:hover,
  .hero-live-card--2:hover,
  .hero-live-card--3:hover,
  .hero-live-card--promise:hover { transform: translateY(-2px); }
  .hero-live-card__media,
  .hero-live-card--1 .hero-live-card__media {
    height: 205px;
    min-height: 205px;
    flex: none;
  }
  .hero-live-card--promise { min-height: 285px; }
  .hero-live-card__title,
  .hero-live-card--1 .hero-live-card__title { font-size: .95rem; }
  .hero-live .hero__sticker { display: none; }
  .hero__proof > div { min-width: 90px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-live__pulse { animation: none; }
  .hero-live-card,
  .hero-live-card__media img { transition: none; }
}

/* ============================================================
   v1.0.16 — homepage mobile viewport rebuild
   Prevents hero content from widening/cropping the page and turns
   the live-product area into a compact touch-first mobile rail.
   ============================================================ */
.hero__copy,
.hero__art,
.hero__inner,
.hero-live__topline,
.hero-live__grid { min-width: 0; }

@media (max-width: 700px) {
  /* Never let intrinsic headline/card widths stretch the hero grid. */
  .hero { overflow: hidden; }
  .hero .wrap.hero__inner {
    width: min(100% - 24px, var(--wrap));
    grid-template-columns: minmax(0, 1fr);
    gap: 1.35rem;
    padding: 1.55rem 0 1.65rem;
  }
  .hero__copy,
  .hero__art.hero-live {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
  }

  .hero__eyebrow {
    max-width: 100%;
    margin-bottom: .9rem;
    padding: .38rem .72rem;
    font-size: .68rem;
    line-height: 1.2;
    white-space: normal;
  }
  .hero h1 {
    max-width: 100%;
    margin: 0 0 .8rem;
    font-size: clamp(2.15rem, 10.4vw, 2.85rem);
    line-height: .98;
    letter-spacing: -.035em;
    overflow-wrap: normal;
    word-break: normal;
  }
  .hero h1 mark {
    white-space: normal;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
  .hero__sub {
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem;
    font-size: .98rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .hero__cta {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
    margin-bottom: 1rem;
  }
  .hero__cta .btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: .72rem .7rem;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.12;
    font-size: .92rem;
  }

  .hero__proof {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .45rem;
    align-items: stretch;
    margin: 0;
    font-size: .69rem;
    line-height: 1.28;
    color: rgba(255,255,255,.72);
  }
  .hero__proof > div {
    min-width: 0 !important;
    padding: .62rem .58rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(5px);
    overflow-wrap: anywhere;
  }
  .hero__proof strong {
    margin-bottom: .12rem;
    font-size: .98rem;
    line-height: 1.05;
  }

  /* The live area stays inside the viewport and behaves like a native card rail. */
  .hero__art.hero-live {
    min-height: 0;
    max-height: none !important;
    padding: .15rem 0 0;
    gap: .55rem;
  }
  .hero-live .hero__blob {
    inset: 10% 2% 4%;
    filter: blur(54px);
    opacity: .42;
  }
  .hero-live__topline {
    width: 100%;
    padding: 0 .1rem;
    font-size: .7rem;
  }
  .hero-live__topline a { font-size: .72rem; }
  .hero-live__grid,
  .hero-live__grid--1,
  .hero-live__grid--2,
  .hero-live__grid--3 {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin: 0;
    display: flex;
    gap: .65rem;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    scrollbar-width: none;
    padding: .28rem 2px .7rem;
  }
  .hero-live__grid::-webkit-scrollbar { display: none; }

  .hero-live-card,
  .hero-live-card--1,
  .hero-live-card--2,
  .hero-live-card--3,
  .hero-live-card--promise,
  .hero-live-card--empty {
    flex: 0 0 min(82vw, 310px);
    width: min(82vw, 310px);
    min-width: 0;
    min-height: 0;
    height: 248px;
    grid-row: auto;
    grid-column: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transform: none;
    border-radius: 18px;
    box-shadow: 4px 5px 0 rgba(10,17,40,.3);
  }
  .hero-live-card:hover,
  .hero-live-card--1:hover,
  .hero-live-card--2:hover,
  .hero-live-card--3:hover,
  .hero-live-card--promise:hover { transform: none; }
  .hero-live-card__media,
  .hero-live-card--1 .hero-live-card__media {
    height: 158px;
    min-height: 158px;
    flex: 0 0 158px;
  }
  .hero-live-card__body {
    padding: .65rem .72rem .7rem;
    gap: .18rem;
  }
  .hero-live-card__category { font-size: .58rem; }
  .hero-live-card__title,
  .hero-live-card--1 .hero-live-card__title {
    font-size: .86rem;
    line-height: 1.12;
  }
  .hero-live-card__meta { margin-top: .12rem; gap: .4rem; }
  .hero-live-card__price { font-size: .9rem; }
  .hero-live-card__stock {
    min-width: 0;
    max-width: 52%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: .61rem;
  }
  .hero-live-card--promise {
    height: 248px;
    min-height: 248px;
    padding: .85rem;
  }
  .hero-live-card--promise strong { font-size: 1rem; }
  .hero-live-card__promise-icon { width: 31px; height: 31px; }
  .hero-live .hero__sticker { display: none; }

  /* Homepage sections should never inherit a wide child. */
  .section__head > *,
  .cats > *,
  .grid-products > *,
  .usps__grid > * { min-width: 0; }
  .section__head {
    gap: .65rem;
    align-items: flex-start;
  }
  .section__head .btn { flex: 0 0 auto; }
  .usps__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .usp { min-width: 0; padding: .82rem .7rem; gap: .55rem; }
  .usp__icon { width: 30px; height: 30px; }
  .usp__title { font-size: .78rem; }
  .usp__sub { font-size: .66rem; line-height: 1.25; }
}

@media (max-width: 460px) {
  .hero .wrap.hero__inner { width: calc(100% - 20px); padding-top: 1.35rem; }
  .hero h1 { font-size: clamp(2rem, 10.6vw, 2.55rem); }
  .hero__cta { grid-template-columns: 1fr; }
  .hero__cta .btn { min-height: 48px; }
  .hero__proof { gap: .35rem; }
  .hero__proof > div { padding: .55rem .42rem; font-size: .63rem; }
  .hero__proof strong { font-size: .9rem; }
  .hero-live-card,
  .hero-live-card--1,
  .hero-live-card--2,
  .hero-live-card--3,
  .hero-live-card--promise,
  .hero-live-card--empty {
    flex-basis: min(86vw, 300px);
    width: min(86vw, 300px);
  }
  .section__head .btn { padding-inline: .7rem; }
}

@media (max-width: 360px) {
  .hero__proof { grid-template-columns: 1fr 1fr; }
  .hero__proof > div:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .usps__grid { grid-template-columns: 1fr; }
}
