/* ══════════════════════════════════════════════════════════════
   VAPELINK · Global Design System
   Mobile-first · Dark premium · E-commerce
   ══════════════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Palette */
  --bg:          #050505;
  --bg-2:        #0a0a0a;
  --surface:     rgba(255,255,255,.03);
  --surface-2:   rgba(255,255,255,.06);
  --border:      rgba(255,255,255,.07);
  --border-2:    rgba(255,255,255,.14);
  --text:        #f0f0f0;
  --text-2:      #888;
  --text-3:      #444;
  --accent:      #00ff88;
  --accent-2:    #00cc6e;
  --accent-dim:  rgba(0,255,136,.1);
  --danger:      #ff4d4d;
  --warning:     #ffaa00;

  /* Fluid type scale */
  --t-xs:   clamp(.6875rem, 1.5vw, .75rem);
  --t-sm:   clamp(.75rem,   1.8vw, .875rem);
  --t-base: clamp(.875rem,  2vw,   1rem);
  --t-md:   clamp(1rem,     2.5vw, 1.125rem);
  --t-lg:   clamp(1.125rem, 3vw,   1.375rem);
  --t-xl:   clamp(1.375rem, 4vw,   1.75rem);
  --t-2xl:  clamp(1.75rem,  5vw,   2.5rem);
  --t-3xl:  clamp(2.25rem,  6vw,   3.5rem);
  --t-hero: clamp(2.5rem,   8vw,   4.75rem);

  /* Spacing */
  --s1:  .25rem;  --s2: .5rem;  --s3: .75rem;  --s4: 1rem;
  --s5:  1.25rem; --s6: 1.5rem; --s8: 2rem;    --s10: 2.5rem;
  --s12: 3rem;    --s16: 4rem;  --s20: 5rem;   --s24: 6rem;

  /* Radius */
  --r-sm: 6px;  --r-md: 10px;  --r-lg: 16px;
  --r-xl: 22px; --r-2xl: 30px; --r-full: 9999px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(0,0,0,.4);
  --sh-md: 0 4px 24px rgba(0,0,0,.5);
  --sh-lg: 0 8px 48px rgba(0,0,0,.6);
  --glow-sm: 0 0 12px rgba(0,255,136,.25);
  --glow-md: 0 0 28px rgba(0,255,136,.35);
  --glow-lg: 0 0 56px rgba(0,255,136,.4);

  /* Motion */
  --ease:    cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --spring:  cubic-bezier(.34,1.56,.64,1);
  --fast: 140ms;  --mid: 250ms;  --slow: 420ms;

  /* Layout */
  --max-w:    1400px;
  --header-h: 62px;
  --drawer-w: 400px;
  --gap:      clamp(1rem, 3vw, 1.5rem);
}

/* ── 2. RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 8px);
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: var(--t-base);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
}

body.locked { overflow: hidden; }

img, video { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── 3. LAYOUT ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ── 4. BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: var(--s3) var(--s6);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  font-weight: 700;
  font-family: inherit;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px;
  transition:
    transform var(--fast) var(--ease),
    box-shadow var(--mid) var(--ease),
    background var(--fast) var(--ease),
    border-color var(--fast) var(--ease),
    color var(--fast) var(--ease);
}

.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: var(--glow-sm);
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.btn-sm  { padding: var(--s2) var(--s4); min-height: 36px; font-size: var(--t-xs); }
.btn-lg  { padding: var(--s4) var(--s8); min-height: 52px; }
.btn-full { width: 100%; }

/* ── 5. BADGE ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--s2) var(--s4);
  border: 1px solid var(--accent);
  border-radius: var(--r-full);
  color: var(--accent);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--s4);
}

/* ── 6. HEADER ───────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(5,5,5,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,255,136,.07);
  transition: background var(--mid) var(--ease), border-color var(--mid) var(--ease);
}

.header.scrolled {
  background: rgba(5,5,5,.96);
  border-bottom-color: rgba(0,255,136,.13);
}

.header__inner {
  height: 100%;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(.75rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  gap: var(--s4);
  /* logo always left, actions always right */
  justify-content: space-between;
}

.logo {
  color: var(--accent);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 3px;
  text-shadow: 0 0 12px rgba(0,255,136,.5);
  flex-shrink: 0;
  transition: text-shadow var(--mid);
}

.logo:hover { text-shadow: var(--glow-md); }

/* Desktop nav */
.header-nav {
  display: none;
  align-items: center;
  gap: var(--s1);
  flex: 1;
}

@media (min-width: 768px) { .header-nav { display: flex; } }

.header-nav__link {
  padding: var(--s2) var(--s3);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: color var(--fast), background var(--fast);
  white-space: nowrap;
}

.header-nav__link:hover { color: var(--text); background: var(--surface-2); }
.header-nav__link.active { color: var(--accent); }

/* Header right actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-left: auto;
}

/* Cart button */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: var(--t-sm);
  font-weight: 600;
  font-family: inherit;
  min-height: 40px;
  transition: border-color var(--fast), background var(--fast), color var(--fast);
}

.cart-btn:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}

.cart-count {
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--s1);
}

.cart-count.bump { animation: cartBump .3s var(--spring); }

@keyframes cartBump {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.45); }
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 9px;
}

.burger:hover { border-color: var(--border-2); }

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform var(--mid) var(--ease),
    opacity var(--fast) var(--ease);
  transform-origin: center;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) { .burger { display: none; } }

/* ── 7. MOBILE NAV ───────────────────────────────────────────── */
.mob-nav {
  /* Hidden by default — JS adds .open class to show */
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 100vw);
  height: 100%;
  height: 100dvh;
  background: rgba(8,8,8,.99);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--border);
  z-index: 1100;
  flex-direction: column;
  padding: var(--s5) var(--s5) var(--s10);
  gap: var(--s6);
  overflow-y: auto;
  overscroll-behavior: contain;
  animation: mobNavIn var(--slow) var(--ease) forwards;
}

.mob-nav.open { display: flex; }

@keyframes mobNavIn {
  from { transform: translateX(100%); opacity: .8; }
  to   { transform: translateX(0);    opacity: 1; }
}

.mob-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--border);
}

.mob-nav__logo {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(0,255,136,.5);
}

.mob-nav__close {
  width: 34px; height: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-2);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--fast), color var(--fast);
}

.mob-nav__close:hover { border-color: var(--danger); color: var(--danger); }

.mob-nav__links { display: flex; flex-direction: column; gap: var(--s1); flex: 1; }

.mob-nav__link {
  display: flex;
  align-items: center;
  padding: var(--s4);
  border-radius: var(--r-md);
  font-size: var(--t-md);
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--text-2);
  border: 1px solid transparent;
  transition: background var(--fast), color var(--fast), border-color var(--fast);
}

.mob-nav__link:hover { background: var(--surface-2); color: var(--text); }
.mob-nav__link.active { background: var(--accent-dim); color: var(--accent); border-color: rgba(0,255,136,.2); }

/* Overlay for mobile nav */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1099;
}

.mob-overlay.open { display: block; }

/* ── 8. PRELOADER ────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: #040808;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 1.2s var(--ease), visibility 1.2s var(--ease);
  overflow: hidden;
}

#preloader.hidden { opacity: 0; visibility: hidden; }

#preloader.hidden .preloader-content {
  transform: scale(1.1) translateY(-10px);
  filter: blur(16px);
  opacity: 0;
}

#preloader-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.preloader-bg-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

.bg-circle.c1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,255,136,.15), transparent 70%);
  top: -300px; left: 50%;
  transform: translateX(-50%);
  animation: floatC1 8s ease-in-out infinite;
}

.bg-circle.c2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,200,150,.1), transparent 70%);
  bottom: -100px; right: -100px;
  animation: floatC2 10s ease-in-out infinite;
}

.bg-circle.c3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(0,255,136,.08), transparent 70%);
  bottom: 40%; left: -80px;
  animation: floatC3 7s ease-in-out infinite;
}

@keyframes floatC1 {
  0%,100% { transform: translateX(-50%) scale(1); opacity:.8; }
  50% { transform: translateX(-50%) scale(1.15) translateY(-20px); opacity:1; }
}
@keyframes floatC2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-50px,-40px) scale(1.1); }
}
@keyframes floatC3 {
  0%,100% { transform: scale(1); opacity:.5; }
  50% { transform: scale(1.3) translateY(-15px); opacity:.8; }
}

.smoke-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.smoke-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,255,136,.06);
  background: transparent;
}

.sr-1 { width: 350px; height: 350px; animation: ringExpand 5s ease-out infinite; }
.sr-2 { width: 350px; height: 350px; animation: ringExpand 5s ease-out infinite 1.7s; }
.sr-3 { width: 350px; height: 350px; animation: ringExpand 5s ease-out infinite 3.4s; }

@keyframes ringExpand {
  0%   { transform: scale(.2); opacity:.6; border-color: rgba(0,255,136,.15); border-width: 2px; }
  100% { transform: scale(3.5); opacity:0; border-color: rgba(0,255,136,0); border-width: .5px; }
}

.preloader-content {
  text-align: center;
  position: relative;
  z-index: 10;
  transition: transform 1.2s var(--ease), filter 1.2s ease, opacity 1.2s ease;
  max-width: 90vw;
  padding: 0 10px;
}

.vape-device-wrap { margin: 0 auto 16px; display: flex; justify-content: center; }

.vape-device {
  width: 80px; height: 200px;
  filter: drop-shadow(0 0 30px rgba(0,255,136,.15));
  animation: deviceFloat 4s ease-in-out infinite;
  transition: transform 1s ease, opacity 1s ease;
}

@keyframes deviceFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.preloader-logo {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 8px;
  margin-bottom: 6px;
  display: flex;
  justify-content: center;
  gap: 2px;
}

.logo-letter {
  display: inline-block;
  color: #fff;
  text-shadow: 0 0 25px rgba(255,255,255,.3);
  animation: letterReveal .7s calc(var(--i) * .1s) var(--spring) both;
}

.logo-accent {
  display: inline-block;
  color: var(--accent);
  text-shadow: 0 0 30px var(--accent), 0 0 60px rgba(0,255,136,.3);
  animation: letterReveal .7s calc(var(--i) * .1s) var(--spring) both;
}

@keyframes letterReveal {
  0% { opacity:0; transform: translateY(40px) scale(.5); filter: blur(8px); }
  60% { filter: blur(0); }
  100% { opacity:1; transform: translateY(0) scale(1); filter: blur(0); }
}

.preloader-subtitle {
  font-size: 10px;
  letter-spacing: 6px;
  color: rgba(0,255,136,.35);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
  animation: subtitleFade 1.5s ease .8s both;
}

@keyframes subtitleFade {
  0% { opacity:0; letter-spacing:12px; }
  100% { opacity:1; letter-spacing:6px; }
}

.preloader-percent {
  font-size: 13px;
  font-weight: 600;
  color: rgba(0,255,136,.6);
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.preloader-progress {
  width: 200px;
  height: 1.5px;
  background: rgba(255,255,255,.03);
  border-radius: 10px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 20%, #00ffcc 50%, var(--accent) 80%, transparent 100%);
  border-radius: 10px;
  animation: preloaderProgress 2.8s var(--ease) forwards;
}

@keyframes preloaderProgress {
  0% { width:0%; } 15% { width:10%; } 30% { width:25%; }
  50% { width:50%; } 70% { width:72%; } 85% { width:88%; } 100% { width:100%; }
}

.preloader-text {
  color: rgba(0,180,100,.4);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 16px;
  animation: textPulse 3.5s ease-in-out infinite;
}

@keyframes textPulse {
  0%,100% { opacity:.4; letter-spacing:4px; }
  50% { opacity:.8; letter-spacing:7px; }
}

/* Preloader mobile */
@media (max-width: 600px) {
  .vape-device { width: 52px; height: 130px; }
  .preloader-logo { font-size: 28px; letter-spacing: 4px; }
  .preloader-subtitle { font-size: 8px; letter-spacing: 3px; }
  .preloader-progress { width: 160px; }
  .bg-circle.c1 { width: 400px; height: 400px; top: -200px; }
  .bg-circle.c2 { width: 250px; height: 250px; }
}

@media (max-width: 380px) {
  .preloader-bg-circles,
  .smoke-rings { display: none; }
  #preloader-canvas { display: none; }
  .vape-device { width: 40px; height: 100px; }
  .preloader-logo { font-size: 22px; }
}

/* ── 9. HERO ─────────────────────────────────────────────────── */
.hero {
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding: var(--s8) 0 var(--s10);
  background:
    radial-gradient(ellipse 70% 60% at 85% 25%, rgba(0,255,136,.13), transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0,200,120,.06), transparent 60%);
}

@media (min-width: 768px) {
  .hero {
    min-height: calc(100dvh - var(--header-h));
    align-items: center;
    padding: var(--s16) 0;
  }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  align-items: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 420px; gap: var(--s16); }
}

.hero__title {
  font-size: var(--t-hero);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: var(--s5);
  animation: fadeUp .8s var(--ease) both;
}

.hero__title .accent {
  color: var(--accent);
  text-shadow: var(--glow-md);
}

.hero__desc {
  font-size: var(--t-md);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: var(--s8);
  animation: fadeUp .8s .1s var(--ease) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-bottom: var(--s8);
  animation: fadeUp .8s .2s var(--ease) both;
}

/* На мобиле кнопка КАТАЛОГ — полная ширина, АКЦИИ — обычная */
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn-primary { width: 100%; }
  .hero__actions .btn-ghost   { align-self: flex-start; }
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  padding-top: var(--s6);
  border-top: 1px solid var(--border);
  animation: fadeUp .8s .3s var(--ease) both;
}

@media (max-width: 480px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: var(--s3); }
}

.hero__stat {
  text-align: center;
  padding: var(--s3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.hero__stat strong {
  display: block;
  font-size: var(--t-xl);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 10px rgba(0,255,136,.3);
}

.hero__stat span {
  display: block;
  font-size: var(--t-xs);
  color: var(--text-2);
  margin-top: var(--s1);
}

/* Hero visual (desktop only) */
.hero__visual {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 460px;
  }
}

.hero__glow-orb {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,136,.18) 0%, rgba(0,255,136,.05) 50%, transparent 70%);
  filter: blur(40px);
  animation: orbitPulse 4s ease-in-out infinite;
}

@keyframes orbitPulse {
  0%,100% { transform: scale(1); opacity:.7; }
  50% { transform: scale(1.15); opacity:1; }
}

.hero__device-wrap {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* ── 10. CATALOG ─────────────────────────────────────────────── */
.catalog {
  padding: var(--s10) 0 var(--s16);
}

@media (min-width: 768px) {
  .catalog { padding: var(--s16) 0 var(--s20); }
}

.catalog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-bottom: var(--s8);
}

.section-title {
  font-size: var(--t-2xl);
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0,255,136,.3);
}

/* Filters */
.filters {
  display: flex;
  gap: var(--s2);
  overflow-x: auto;
  padding-bottom: var(--s2);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-bottom: var(--s8);
}

.filters::-webkit-scrollbar { display: none; }

.filter-btn {
  flex-shrink: 0;
  padding: var(--s2) var(--s5);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  border-radius: var(--r-full);
  font-size: var(--t-sm);
  font-weight: 600;
  font-family: inherit;
  transition: all var(--fast) var(--ease);
  white-space: nowrap;
  min-height: 36px;
  cursor: pointer;
}

.filter-btn:hover { border-color: rgba(0,255,136,.4); color: var(--text); }

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 700;
  box-shadow: var(--glow-sm);
}

/* Product grid — mobile first */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(.5rem, 2vw, 1.25rem);
}

@media (min-width: 560px)  { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .products-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1300px) { .products-grid { grid-template-columns: repeat(5, 1fr); } }

/* ── 11. PRODUCT CARD ────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--mid) var(--ease),
    border-color var(--mid) var(--ease),
    box-shadow var(--mid) var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,255,136,.3);
  box-shadow: 0 16px 48px rgba(0,0,0,.4), var(--glow-sm);
}

.card__img-wrap {
  aspect-ratio: 1;
  background: rgba(255,255,255,.02);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(.5rem, 2vw, 1rem);
  border-bottom: 1px solid var(--border);
}

.card__img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--slow) var(--ease);
}

.card:hover .card__img { transform: scale(1.07); }

.card__body {
  padding: clamp(.5rem, 2vw, 1rem);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--s2);
}

.card__name {
  font-size: clamp(.7rem, 2vw, .875rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__desc {
  font-size: clamp(.6rem, 1.8vw, .75rem);
  color: var(--text-2);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  margin-top: var(--s3);
  flex-wrap: nowrap;
}

.card__price {
  font-size: clamp(.75rem, 2.5vw, 1rem);
  font-weight: 800;
  color: var(--accent);
  min-width: 0;
  flex-shrink: 1;
}

.card__add {
  /* Always a small square — NEVER full-width */
  flex-shrink: 0;
  flex-grow: 0;
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  background: var(--accent);
  border: none;
  border-radius: var(--r-sm);
  color: #000;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--fast), box-shadow var(--fast);
  cursor: pointer;
}

.card__add:hover { transform: scale(1.1); box-shadow: var(--glow-md); }
.card__add:active { transform: scale(.93); }

/* ── 12. SKELETON ────────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skel {
  background: linear-gradient(90deg,
    rgba(255,255,255,.04) 25%,
    rgba(255,255,255,.08) 50%,
    rgba(255,255,255,.04) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: var(--r-sm);
}

.card--skel .card__img-wrap { aspect-ratio: 1; }
.card--skel .card__img-wrap,
.card--skel .card__name,
.card--skel .card__desc,
.card--skel .card__price,
.card--skel .card__add {
  background: linear-gradient(90deg,
    rgba(255,255,255,.04) 25%,
    rgba(255,255,255,.08) 50%,
    rgba(255,255,255,.04) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: var(--r-sm);
  color: transparent !important;
}

.card--skel .card__name { height: 2.4em; width: 80%; }
.card--skel .card__desc { height: 2em; width: 100%; }
.card--skel .card__price { height: 1.5em; width: 40%; }

/* Empty state */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--s20) var(--s8);
  color: var(--text-2);
}

.empty-state__icon { font-size: 2.5rem; margin-bottom: var(--s4); opacity: .35; }

.empty-state__title {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s2);
}

/* ── 13. STATS ───────────────────────────────────────────────── */
.stats-section {
  padding: var(--s16) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(0,255,136,.04), transparent 55%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s6);
}

@media (min-width: 560px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: center; padding: var(--s4); }

.stat-item__val {
  font-size: var(--t-2xl);
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0,255,136,.3);
  line-height: 1;
  margin-bottom: var(--s2);
  display: block;
}

.stat-item__lbl { font-size: var(--t-sm); color: var(--text-2); }

/* ── 14. CART DRAWER ─────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--slow) var(--ease);
}

.cart-overlay.active { opacity: 1; pointer-events: all; }

/* Desktop: right sidebar drawer */
.cart-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(var(--drawer-w), 100vw);
  height: 100dvh;
  background: rgba(8,8,8,.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--border);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right var(--slow) var(--ease);
  box-shadow: -24px 0 80px rgba(0,0,0,.5);
}

.cart-modal.active { right: 0; }

/* Mobile: bottom sheet */
@media (max-width: 599px) {
  .cart-modal {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 88dvh;
    border-left: none;
    border-top: 1px solid var(--border);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    transition: transform var(--slow) var(--ease);
    transform: translateY(100%);
    right: 0;
  }
  .cart-modal.active { transform: translateY(0); right: 0; }
}

.cart-drag-handle {
  display: none;
  width: 40px;
  height: 4px;
  background: var(--border-2);
  border-radius: var(--r-full);
  margin: var(--s3) auto 0;
  flex-shrink: 0;
}

@media (max-width: 599px) { .cart-drag-handle { display: block; } }

.cart-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s5) var(--s6);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-header h2 {
  font-size: var(--t-md);
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0,255,136,.4);
}

.cart-close {
  width: 34px; height: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-2);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--fast), color var(--fast), background var(--fast);
}

.cart-close:hover {
  border-color: rgba(255,77,77,.5);
  color: var(--danger);
  background: rgba(255,77,77,.08);
}

#cart-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--s4) var(--s6);
  scrollbar-width: thin;
  scrollbar-color: rgba(0,255,136,.2) transparent;
  overscroll-behavior: contain;
}

#cart-items::-webkit-scrollbar { width: 3px; }
#cart-items::-webkit-scrollbar-thumb { background: rgba(0,255,136,.2); border-radius: 3px; }

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: var(--s3);
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-info {}
.cart-item-info strong { font-size: var(--t-sm); font-weight: 700; color: var(--text); display: block; margin-bottom: var(--s1); }
.cart-item-info .price { font-size: var(--t-sm); color: var(--accent); font-weight: 600; }

.controls {
  display: flex;
  align-items: center;
  gap: var(--s2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: var(--s1);
}

.controls button {
  width: 28px; height: 28px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  transition: background var(--fast), color var(--fast);
}

.controls button:hover { background: var(--accent); color: #000; }

.controls span {
  min-width: 22px;
  text-align: center;
  font-size: var(--t-sm);
  font-weight: 700;
}

.cart-item > button:last-child {
  width: 28px; height: 28px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-3);
  border-radius: var(--r-sm);
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--fast), color var(--fast), background var(--fast);
}

.cart-item > button:last-child:hover {
  border-color: rgba(255,77,77,.4);
  color: var(--danger);
  background: rgba(255,77,77,.08);
}

/* Cart footer */
.cart-footer {
  padding: var(--s5) var(--s6);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: rgba(0,0,0,.3);
}

#cart-total {
  display: block;
  font-size: var(--t-xl);
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0,255,136,.4);
  margin-bottom: var(--s4);
}

.cart-footer > button {
  width: 100%;
  padding: var(--s4);
  background: var(--accent);
  border: none;
  border-radius: var(--r-md);
  color: #000;
  font-weight: 800;
  font-size: var(--t-sm);
  font-family: inherit;
  letter-spacing: 1px;
  cursor: pointer;
  min-height: 48px;
  transition: background var(--fast), box-shadow var(--fast), transform var(--fast);
  box-shadow: var(--glow-sm);
}

.cart-footer > button:hover {
  background: var(--accent-2);
  box-shadow: var(--glow-md);
  transform: translateY(-1px);
}

/* ── 15. CHECKOUT OVERLAY ────────────────────────────────────── */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--mid) var(--ease);
}

@media (min-width: 640px) {
  .checkout-overlay { align-items: center; padding: var(--s4); }
}

.checkout-overlay.active { opacity: 1; pointer-events: all; }

.checkout-modal {
  width: 100%;
  max-width: 500px;
  max-height: 94dvh;
  background: #0e0e0e;
  border: 1px solid var(--border);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: var(--s6);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(32px);
  transition: transform var(--mid) var(--ease);
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,255,136,.2) transparent;
}

@media (min-width: 640px) {
  .checkout-modal { border-radius: var(--r-xl); max-height: 90dvh; }
}

.checkout-overlay.active .checkout-modal { transform: translateY(0); }

.checkout-drag {
  width: 40px; height: 4px;
  background: var(--border-2);
  border-radius: var(--r-full);
  margin: 0 auto var(--s5);
}

@media (min-width: 640px) { .checkout-drag { display: none; } }

.checkout-modal h2 {
  font-size: var(--t-xl);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: var(--s6);
}

.checkout-close {
  position: absolute;
  top: var(--s5);
  right: var(--s5);
  width: 32px; height: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-2);
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--fast), color var(--fast);
}

.checkout-close:hover { border-color: rgba(255,77,77,.5); color: var(--danger); }

/* Form fields */
.checkout-field { margin-bottom: var(--s4); }

.checkout-field label {
  display: block;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--text-2);
  text-transform: uppercase;
  margin-bottom: var(--s2);
}

.checkout-field input,
.checkout-field textarea {
  width: 100%;
  padding: var(--s4) var(--s4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: var(--t-base);
  font-family: inherit;
  outline: none;
  min-height: 48px;
  transition: border-color var(--fast), box-shadow var(--fast);
}

.checkout-field input:focus,
.checkout-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,255,136,.1);
}

.checkout-field input.error { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(255,77,77,.1); }

.checkout-field input::placeholder,
.checkout-field textarea::placeholder { color: var(--text-3); }

/* Coupon row */
.coupon-row { display: flex; gap: var(--s2); margin-bottom: var(--s4); }
.coupon-row input { flex: 1; min-height: 44px; }

.coupon-msg { font-size: var(--t-sm); min-height: 1.4em; margin-bottom: var(--s4); color: var(--text-2); }
.coupon-msg.ok  { color: var(--accent); }
.coupon-msg.err { color: var(--danger); }

/* Checkout total */
.checkout-total-row {
  font-size: var(--t-xl);
  font-weight: 800;
  color: var(--accent);
  text-align: center;
  margin: var(--s5) 0;
  text-shadow: 0 0 10px rgba(0,255,136,.3);
}

/* Items list in checkout */
.checkout-items {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: var(--s5);
  scrollbar-width: thin;
  scrollbar-color: rgba(0,255,136,.2) transparent;
}

.checkout-items::-webkit-scrollbar { width: 3px; }
.checkout-items::-webkit-scrollbar-thumb { background: rgba(0,255,136,.2); border-radius: 3px; }

/* ── 16. SUCCESS MODAL ───────────────────────────────────────── */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(8px);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--mid) var(--ease);
}

.success-overlay.active { opacity: 1; pointer-events: all; }

.success-modal {
  background: #0e0e0e;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s10) var(--s8);
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: var(--sh-lg);
  transform: scale(.92);
  transition: transform var(--mid) var(--spring);
}

.success-overlay.active .success-modal { transform: scale(1); }

.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(0,255,136,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s6);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,255,136,.3); }
  50%      { box-shadow: 0 0 0 14px rgba(0,255,136,0); }
}

.success-modal h2 { font-size: var(--t-2xl); font-weight: 800; letter-spacing: 1px; margin-bottom: var(--s3); }
.success-modal p  { color: var(--text-2); font-size: var(--t-sm); line-height: 1.6; max-width: 28ch; margin: 0 auto var(--s8); }

.success-btn {
  padding: var(--s4) var(--s10);
  background: var(--accent);
  border: none;
  border-radius: var(--r-md);
  color: #000;
  font-weight: 800;
  font-size: var(--t-sm);
  font-family: inherit;
  letter-spacing: 1.5px;
  cursor: pointer;
  box-shadow: var(--glow-sm);
  transition: background var(--fast), box-shadow var(--fast), transform var(--fast);
}

.success-btn:hover { background: var(--accent-2); box-shadow: var(--glow-md); transform: translateY(-2px); }

/* ── 17. FOOTER ──────────────────────────────────────────────── */
.footer {
  padding: var(--s8) 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  text-align: center;
}

@media (min-width: 640px) {
  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footjn {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: .9rem;
  text-shadow: 0 0 10px rgba(0,255,136,.5);
}

.footer__text { font-size: var(--t-xs); color: var(--text-2); }

/* ── 18. NOTIFICATION ────────────────────────────────────────── */
.notif {
  position: fixed;
  bottom: var(--s5);
  right: var(--s5);
  left: var(--s5);
  background: var(--accent);
  color: #000;
  padding: var(--s3) var(--s5);
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  font-weight: 700;
  z-index: 2000;
  box-shadow: var(--glow-md), var(--sh-md);
  animation: notifIn .3s var(--spring);
  text-align: center;
  max-width: 360px;
}

@media (min-width: 480px) {
  .notif { left: auto; max-width: 320px; }
}

@keyframes notifIn {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@keyframes notifOut {
  from { transform: translateY(0); opacity: 1; }
  to   { transform: translateY(20px); opacity: 0; }
}

/* ── 19. UTILITIES & ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scrollbar global */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.2); }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── 20. RESPONSIVE GLOBAL ───────────────────────────────────── */
@media (max-width: 900px) {
  .header__inner { gap: var(--s4); }
}

@media (max-width: 600px) {
  .footer { padding: var(--s6) 0; }
  .footer__inner { gap: var(--s2); font-size: var(--t-xs); }
}

/* ── SCROLL ANIMATIONS ────────────────────────────────────────── */
/* Только при наличии JS + достаточно мощного устройства */
.js-ready [data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  will-change: opacity, transform;
}

.js-ready [data-animate="left"]  { transform: translateX(-20px); }
.js-ready [data-animate="right"] { transform: translateX(20px); }
.js-ready [data-animate="scale"] { transform: scale(.96); }
.js-ready [data-animate="fade"]  { transform: none; }

.js-ready [data-animate].visible {
  opacity: 1;
  transform: none !important;
}

/* Stagger delays */
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }
[data-delay="5"] { transition-delay: .4s; }
[data-delay="6"] { transition-delay: .48s; }

/* На мобиле анимации мягче */
@media (max-width: 600px) {
  .js-ready [data-animate] {
    transform: translateY(12px) !important;
    transition-duration: .4s !important;
  }
  .js-ready [data-animate="left"],
  .js-ready [data-animate="right"] {
    transform: translateY(12px) !important;
  }
}

/* Reduce motion — полностью отключаем */
@media (prefers-reduced-motion: reduce) {
  .js-ready [data-animate] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* btn-secondary — алиас для совместимости */
.btn-secondary {
  background: transparent;
  color: var(--text);
}

/* ════════════════════ PRODUCT MODAL STYLES ═══════════════════════ */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--mid) var(--ease), visibility var(--mid) var(--ease);
}

.product-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(.95) translateY(20px);
  transition: transform var(--mid) var(--spring);
}

.product-modal-overlay.active .product-modal {
  transform: scale(1) translateY(0);
}

.product-modal__close {
  position: absolute;
  top: var(--s4);
  right: var(--s4);
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--fast), border-color var(--fast);
}

.product-modal__close:hover {
  background: var(--surface-2);
  border-color: var(--border-2);
}

.product-modal__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
}

@media (max-width: 600px) {
  .product-modal__content {
    grid-template-columns: 1fr;
  }
}

.product-modal__image-wrap {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s8);
  border-radius: var(--r-xl) 0 0 var(--r-xl);
}

@media (max-width: 600px) {
  .product-modal__image-wrap {
    border-radius: var(--r-xl) var(--r-xl) 0 0;
  }
}

.product-modal__image {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.product-modal__info {
  padding: var(--s6) var(--s6) var(--s6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

@media (max-width: 600px) {
  .product-modal__info {
    padding: var(--s4);
  }
}

.product-modal__name {
  font-size: var(--t-xl);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.product-modal__desc {
  font-size: var(--t-sm);
  color: var(--text-2);
  line-height: 1.6;
}

.product-modal__price {
  font-size: var(--t-2xl);
  font-weight: 900;
  color: var(--accent);
  margin-top: auto;
}
  border: 1px solid var(--border-2);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
