/* ═══════════════════════════════════════════════
   LOOMORA — bright commerce design system
   ═══════════════════════════════════════════════ */
:root {
  --paper: #faf7f1;
  --card: #ffffff;
  --ink: #191714;
  --muted: #8a857c;
  --line: #e8e2d6;
  --accent: #ff4d24;
  --accent-ink: #d4340f;
  --lilac: #b9a7ff;
  --good: #1d9d5f;
  --display: "Syne", "Arial Black", sans-serif;
  --body: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 14px 40px rgba(25, 23, 20, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body[data-loading] { overflow: hidden; }
::selection { background: var(--accent); color: #fff; }
button { font-family: inherit; }

/* ═══════ PRELOADER ═══════ */
.preloader {
  position: fixed; inset: 0; z-index: 400;
  background: var(--paper);
  display: grid; place-items: center; align-content: center; gap: 22px;
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}
.preloader__logo {
  font-family: var(--display); font-weight: 800; font-size: clamp(30px, 5vw, 44px);
  letter-spacing: 0.04em;
  animation: pre-pulse 1.4s ease-in-out infinite;
}
.preloader__dot { color: var(--accent); }
@keyframes pre-pulse { 50% { opacity: 0.55; } }
.preloader__bar {
  width: min(280px, 60vw); height: 3px; border-radius: 3px;
  background: var(--line); overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%; width: 0;
  background: var(--accent);
  transition: width 0.2s linear;
}
.preloader--done { opacity: 0; visibility: hidden; }

/* ═══════ CURSOR ═══════ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 500;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  pointer-events: none; will-change: transform;
  transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.25s;
  mix-blend-mode: multiply;
}
.cursor--big { width: 34px; height: 34px; opacity: 0.45; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ═══════ PROMO BAR ═══════ */
.promo {
  background: var(--ink); color: var(--paper);
  overflow: hidden; white-space: nowrap;
  padding: 9px 0;
}
.promo__track { display: inline-flex; align-items: center; gap: 34px; will-change: transform; padding-right: 34px; }
.promo__item { font-size: 11px; letter-spacing: 0.18em; font-weight: 500; }
.promo__timer { color: var(--accent); font-variant-numeric: tabular-nums; }
.promo__sep { color: var(--accent); font-size: 7px; }

/* ═══════ HEADER ═══════ */
.hdr {
  position: sticky; top: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 16px clamp(16px, 4vw, 48px);
  background: rgba(250, 247, 241, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: padding 0.35s var(--ease), border-color 0.35s, transform 0.5s var(--ease);
}
.hdr--scrolled { padding-top: 10px; padding-bottom: 10px; border-color: var(--line); }
.hdr--hidden { transform: translateY(-110%); }
.hdr__logo {
  font-family: var(--display); font-weight: 800; font-size: 22px;
  letter-spacing: 0.03em; color: var(--ink); text-decoration: none;
}
.hdr__logo-dot { color: var(--accent); }
.hdr__nav { display: flex; gap: clamp(14px, 2.5vw, 30px); }
.hdr__link {
  position: relative; color: var(--ink); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 0;
}
.hdr__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.hdr__link:hover::after { transform: scaleX(1); transform-origin: left; }
.hdr__tools { display: flex; align-items: center; gap: 6px; }
.hdr__icon {
  position: relative; display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: none; background: none; color: var(--ink); cursor: pointer;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.hdr__icon:hover { background: rgba(25, 23, 20, 0.06); }
.hdr__icon--pop { animation: pop 0.5s var(--ease); }
@keyframes pop { 40% { transform: scale(1.35) rotate(-6deg); } }
.hdr__badge {
  position: absolute; top: 2px; right: 0;
  min-width: 17px; height: 17px; border-radius: 99px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 600;
  display: grid; place-items: center; padding: 0 4px;
}
.search { display: flex; align-items: center; }
.search__btn {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  border: none; background: none; color: var(--ink); cursor: pointer;
  transition: background 0.3s;
}
.search__btn:hover { background: rgba(25, 23, 20, 0.06); }
.search__input {
  width: 0; opacity: 0; border: none; border-bottom: 2px solid var(--ink);
  background: none; font-family: var(--body); font-size: 14px; padding: 6px 2px;
  outline: none; transition: width 0.45s var(--ease), opacity 0.3s;
}
.search--open .search__input { width: min(180px, 30vw); opacity: 1; }

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 99px; padding: 15px 30px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 2px solid var(--ink);
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--accent); border-color: var(--accent); box-shadow: 0 10px 26px rgba(255, 77, 36, 0.35); }
.btn--ghost { background: none; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--wide { width: 100%; justify-content: center; }
.btn--busy { pointer-events: none; opacity: 0.75; }
.btn__pill {
  background: var(--accent); color: #fff; border-radius: 99px;
  font-size: 11px; padding: 2px 8px;
}

/* ═══════ HERO ═══════ */
.hero { position: relative; overflow: hidden; }
.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55;
  animation: blob-drift 14s ease-in-out infinite alternate;
}
.hero__blob--1 { width: 480px; height: 480px; background: #ffd9cc; top: -120px; right: -80px; }
.hero__blob--2 { width: 420px; height: 420px; background: #e4dcff; bottom: -140px; left: -100px; animation-delay: -7s; }
@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-60px, 40px) scale(1.15); }
}
.hero__inner {
  position: relative; display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(20px, 4vw, 60px);
  max-width: 1240px; margin: 0 auto;
  padding: clamp(40px, 7vh, 90px) clamp(16px, 4vw, 48px);
  align-items: center;
}
.hero__kicker {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-ink); margin-bottom: 16px;
}
.hero__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(38px, 5.6vw, 74px); line-height: 1.02;
  letter-spacing: -0.01em; margin-bottom: 20px; max-width: 13ch;
}
.hero__sub { color: var(--muted); font-size: 16px; max-width: 46ch; margin-bottom: 28px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__stats { display: flex; gap: clamp(20px, 4vw, 48px); list-style: none; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats b { font-family: var(--display); font-size: 26px; font-weight: 700; }
.hero__stats span { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }
.hero__stage {
  position: relative; height: clamp(360px, 52vw, 560px);
}
.hero__garment { position: absolute; }
.hero__garment--main { width: 62%; height: 88%; left: 19%; top: 4%; z-index: 2; }
.hero__garment--left { width: 42%; height: 60%; left: -6%; top: 26%; opacity: 0.9; }
.hero__garment--right { width: 44%; height: 62%; right: -7%; top: 18%; opacity: 0.9; }
.hero__sticker {
  position: absolute; top: 4%; right: 8%; z-index: 3;
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; text-align: center;
  font-family: var(--display); font-weight: 700; font-size: 13px; line-height: 1.15;
  animation: sticker-spin 9s linear infinite;
  box-shadow: 0 10px 24px rgba(255, 77, 36, 0.4);
}
@keyframes sticker-spin { to { transform: rotate(360deg); } }

/* ═══════ TEXT REVEALS ═══════ */
.line-mask { display: block; overflow: hidden; }
.line { display: block; transform: translateY(115%); transition: transform 0.9s var(--ease); }
.reveal.in-view .line { transform: translateY(0); }
[data-words] .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
[data-words] .word > span {
  display: inline-block; transform: translateY(115%);
  transition: transform 0.8s var(--ease);
  transition-delay: calc(var(--i) * 50ms);
}
[data-words].in-view .word > span { transform: translateY(0); }

/* ═══════ SHOP ═══════ */
.shop { max-width: 1240px; margin: 0 auto; padding: clamp(30px, 6vh, 70px) clamp(16px, 4vw, 48px); }
.shop__head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.shop__title { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 4.5vw, 54px); }
.shop__hint { color: var(--muted); font-size: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.chip {
  border: 1.5px solid var(--line); background: var(--card); border-radius: 99px;
  padding: 9px 20px; font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.chip:hover { border-color: var(--ink); transform: translateY(-2px); }
.chip--on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip--sale { color: var(--accent-ink); border-color: rgba(255, 77, 36, 0.4); }
.chip--sale.chip--on { background: var(--accent); border-color: var(--accent); color: #fff; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}
.grid__none { text-align: center; color: var(--muted); padding: 50px 0; }

/* ═══════ PRODUCT CARD ═══════ */
.p-card {
  opacity: 0; transform: translateY(46px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(min(var(--i), 7) * 60ms);
}
.p-card.in-view { opacity: 1; transform: translateY(0); }
.p-card--hide { display: none; }
.p-card--added .p-card__stage { animation: added 0.55s var(--ease); }
@keyframes added { 35% { transform: scale(0.96); } 70% { transform: scale(1.02); } }
.p-card__stage {
  position: relative; aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, #ffffff, #f1ece1 78%);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s;
}
.p-card:hover .p-card__stage {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  border-color: #ddd3bf;
}
.p-card__garment { position: absolute; inset: 6% 10% 10%; }
.p-card__shadow {
  position: absolute; bottom: 7%; left: 30%; width: 40%; height: 14px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(25, 23, 20, 0.22), transparent 70%);
  animation: shadow-breathe 3.2s ease-in-out infinite;
}
@keyframes shadow-breathe { 50% { transform: scaleX(0.82); opacity: 0.7; } }
.p-card__badges { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; gap: 6px; }
.badge {
  border-radius: 99px; padding: 4px 11px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
}
.badge--sale { background: var(--accent); color: #fff; }
.badge--new { background: var(--ink); color: var(--paper); }
.heart {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  border: none; background: rgba(255, 255, 255, 0.85); cursor: pointer;
  color: var(--ink);
  transition: transform 0.3s var(--ease), color 0.3s;
}
.heart svg { fill: none; stroke: currentColor; transition: fill 0.25s; }
.heart:hover { transform: scale(1.12); }
.heart--on { color: var(--accent); }
.heart--on svg { fill: var(--accent); stroke: var(--accent); }
.heart--burst { animation: burst 0.5s var(--ease); }
@keyframes burst { 40% { transform: scale(1.5); } 65% { transform: scale(0.9); } }
.quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3;
  border: none; border-radius: 12px; padding: 12px 0;
  background: rgba(25, 23, 20, 0.92); color: var(--paper);
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.3s;
  backdrop-filter: blur(4px);
}
.p-card:hover .quick { opacity: 1; transform: translateY(0); }
.quick:hover { background: var(--accent); }
.sizes {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 4;
  display: flex; gap: 6px; justify-content: center;
  background: rgba(255, 255, 255, 0.95); border-radius: 12px; padding: 8px;
  opacity: 0; pointer-events: none; transform: translateY(14px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: var(--shadow);
}
.sizes--open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.size {
  flex: 1; border: 1.5px solid var(--line); border-radius: 8px; background: #fff;
  padding: 8px 0; font-size: 12px; font-weight: 600; cursor: pointer;
  transition: all 0.25s var(--ease);
}
.size:hover, .size--on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.size--lg { flex: none; padding: 10px 16px; }
.p-card__meta { padding: 14px 4px 0; }
.p-card__row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.p-card__row--sub { margin-top: 4px; }
.p-card__name { font-size: 16px; font-weight: 600; }
.price { font-size: 15px; }
.price--sale { color: var(--accent-ink); }
.price__was { color: var(--muted); font-size: 13px; font-weight: 400; }
.p-card__rating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.p-card__rating i { font-style: normal; }
.stars { position: relative; display: inline-block; font-size: 12px; letter-spacing: 1px; color: #ddd3bf; line-height: 1; }
.stars__fill { position: absolute; inset: 0; overflow: hidden; white-space: nowrap; color: #f5a623; }
.dots { display: flex; gap: 6px; }
.dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--c); border: 2px solid #fff; outline: 1.5px solid var(--line);
  cursor: pointer; transition: transform 0.25s var(--ease), outline-color 0.25s;
}
.dot:hover { transform: scale(1.25); }
.dot--on { outline-color: var(--ink); }
.dot--lg { width: 26px; height: 26px; }

/* shared garment canvas */
.garment-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 5; pointer-events: none;
}
body.qv-open .garment-canvas { z-index: 130; }

/* ═══════ WHY ═══════ */
.why {
  max-width: 1240px; margin: 0 auto;
  padding: clamp(30px, 6vh, 80px) clamp(16px, 4vw, 48px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.why__item {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 26px; display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), box-shadow 0.4s;
}
.why__item.in-view { opacity: 1; transform: translateY(0); }
.why__item:hover { box-shadow: var(--shadow); }
.why__icon { color: var(--accent-ink); margin-bottom: 6px; }
.why__item b { font-size: 16px; }
.why__item span:last-child { color: var(--muted); font-size: 14px; }

/* ═══════ FOOTER ═══════ */
.footer { background: var(--ink); color: var(--paper); padding: clamp(50px, 9vh, 100px) clamp(16px, 4vw, 48px) 30px; }
.footer__cta {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 30px;
}
.footer__title { font-family: var(--display); font-weight: 800; font-size: clamp(28px, 4.5vw, 58px); max-width: 14ch; }
.footer__form { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__input {
  background: none; border: none; border-bottom: 2px solid rgba(250, 247, 241, 0.35);
  color: var(--paper); font-family: var(--body); font-size: 16px;
  padding: 12px 2px; min-width: 240px; outline: none;
  transition: border-color 0.3s;
}
.footer__input:focus { border-color: var(--accent); }
.footer__input::placeholder { color: rgba(250, 247, 241, 0.4); }
.footer .btn--solid { background: var(--accent); border-color: var(--accent); }
.footer .btn--solid:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.footer__meta {
  max-width: 1240px; margin: clamp(40px, 7vh, 70px) auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(250, 247, 241, 0.5);
  border-top: 1px solid rgba(250, 247, 241, 0.12); padding-top: 22px;
}

/* ═══════ SCRIMS ═══════ */
.scrim {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(25, 23, 20, 0.45);
  backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.scrim--open { opacity: 1; pointer-events: auto; }

/* ═══════ QUICK VIEW ═══════ */
.qv {
  position: fixed; z-index: 120; inset: 0; margin: auto;
  width: min(880px, 94vw); height: min(560px, 88vh);
  background: var(--paper); border-radius: 22px;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  opacity: 0; pointer-events: none; transform: scale(0.94) translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  box-shadow: 0 30px 80px rgba(25, 23, 20, 0.3);
}
.qv--open { opacity: 1; pointer-events: auto; transform: scale(1) translateY(0); }
.qv__close {
  position: absolute; top: 14px; right: 14px; z-index: 140;
  width: 38px; height: 38px; border-radius: 50%;
  border: none; background: var(--card); box-shadow: var(--shadow);
  cursor: pointer; transition: transform 0.35s var(--ease);
}
.qv__close:hover { transform: rotate(90deg); }
.qv__stage {
  position: relative;
  background: radial-gradient(110% 90% at 50% 10%, #ffffff, #efe9db 80%);
}
.qv__stage .garment-slot { position: absolute; inset: 6% 8%; }
.qv__info { padding: clamp(20px, 4vw, 40px); overflow-y: auto; }
.qv__cat { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-ink); font-weight: 600; }
.qv__name { font-family: var(--display); font-weight: 800; font-size: clamp(24px, 3vw, 34px); margin: 6px 0 8px; }
.qv__rating { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.qv__rating i { font-style: normal; }
.qv__price { font-size: 22px; margin-bottom: 14px; }
.qv__desc { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.qv__label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin: 14px 0 8px; }
.qv__colors, .qv__sizes { display: flex; gap: 10px; flex-wrap: wrap; }
.qv .btn--wide { margin-top: 22px; }

/* ═══════ CART ═══════ */
.cart {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 150;
  width: min(420px, 94vw);
  background: var(--paper);
  display: flex; flex-direction: column;
  padding: 22px;
  transform: translateX(105%);
  transition: transform 0.55s var(--ease);
  box-shadow: -20px 0 60px rgba(25, 23, 20, 0.15);
}
.cart--open { transform: translateX(0); }
.cart__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
  font-family: var(--display); font-size: 20px;
}
.cart__close {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line);
  background: none; cursor: pointer; transition: transform 0.35s var(--ease), border-color 0.3s;
}
.cart__close:hover { transform: rotate(90deg); border-color: var(--ink); }
.ship { padding: 16px 0 6px; }
.ship__label { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.ship__label b { color: var(--accent-ink); }
.ship__bar { height: 6px; border-radius: 6px; background: var(--line); overflow: hidden; }
.ship__bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), #ffb199);
  border-radius: 6px;
  transition: width 0.7s var(--ease);
}
.cart__list { list-style: none; flex: 1; overflow-y: auto; padding: 8px 0; }
.cart__item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  animation: item-in 0.45s var(--ease) both;
}
@keyframes item-in { from { opacity: 0; transform: translateX(24px); } }
.cart__thumb {
  width: 52px; height: 64px; border-radius: 10px; flex: none;
  background: linear-gradient(160deg, var(--c), color-mix(in srgb, var(--c) 55%, #241f1a));
  border: 1px solid var(--line);
}
.cart__info { display: flex; flex-direction: column; gap: 2px; font-size: 14px; }
.cart__info small { color: var(--muted); }
.qty { display: inline-flex; align-items: center; gap: 10px; margin-top: 4px; }
.qty__btn {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--line); background: #fff; cursor: pointer;
  font-size: 14px; line-height: 1;
  transition: all 0.25s var(--ease);
}
.qty__btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cart__line { margin-left: auto; font-size: 14px; }
.cart__empty { color: var(--muted); text-align: center; padding: 40px 0; }
.cart__foot { border-top: 1px solid var(--line); padding-top: 16px; display: flex; flex-direction: column; gap: 14px; }
.cart__row { display: flex; justify-content: space-between; font-size: 16px; }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__stage { order: -1; height: clamp(280px, 62vw, 420px); }
  .qv { grid-template-columns: 1fr; height: min(680px, 92vh); }
  .qv__stage { min-height: 250px; }
}
@media (max-width: 640px) {
  .hdr__nav { display: none; }
}

/* ═══════ REDUCED MOTION ═══════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
  }
  html { scroll-behavior: auto; }
  .line, [data-words] .word > span { transform: none !important; }
  .p-card, .why__item { opacity: 1; transform: none; }
}
