/* =============================================
   SCENT PERFUME BAR — Main Styles
   Mobile-First | Luxury Dark Theme
   ============================================= */

/* === CSS VARIABLES === */
:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-mid: #1a1a1a;
  --black-light: #242424;
  --gold: #c9a84c;
  --gold-light: #e2c275;
  --gold-pale: #f5e9c8;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-60: rgba(255,255,255,0.6);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.07);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --container: 1200px;
  --section-gap: 100px;
}

/* === RESET === */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
  /* Убирает синий/серый фон при клике на мобилках для ВСЕХ элементов */
  -webkit-tap-highlight-color: transparent; 
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; outline: none; }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* === SECTION === */
.section { padding: var(--section-gap) 0; }
.section__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 32px;
}
.section__title em {
  font-style: italic;
  color: var(--gold-light);
}
.section__header { text-align: center; margin-bottom: 56px; }
.section__footer { text-align: center; margin-top: 56px; }

/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* МОБИЛЬ: никакой анимации — кнопки работают сразу */
@media (max-width: 899px) {
  .reveal, .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white-30);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 22px; font-size: 11px; }

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 198;
  transition: background var(--transition), box-shadow var(--transition);
}
/* Добавь этот блок прямо под .header.scrolled */
body:has(.legal-main) .header {
  background: var(--black, #0a0a0a);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.25em;
  font-weight: 400;
  color: var(--white);
  flex-shrink: 0;
}
.nav__logo-dot { color: var(--gold); font-size: 10px; }

/* Logo image in nav */
.nav__logo__img {
  height: 36px;
  width: auto;
  display: block;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-60);
  transition: color var(--transition-fast);
  font-weight: 400;
}
.nav__link:hover { color: var(--gold); }

/* Nav actions (profile + cart + burger) */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__profile {
  color: var(--white-60);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  touch-action: manipulation;
}
.nav__profile:hover { color: var(--gold); }
.nav__cart {
  position: relative;
  color: var(--white-60);
  transition: color var(--transition-fast);
  display: flex;
  touch-action: manipulation;
}
.nav__cart:hover { color: var(--gold); }
.nav__cart-count {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 500;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.nav__cart-count.bump { transform: scale(1.4); }
.nav__cart-count--drawer {
  position: static;
  display: inline-flex;
  margin-left: 8px;
}

/* Burger */
.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Вместо gap используем распределение */
  width: 24px;
  height: 14px; /* Фиксированная высота для контроля расстояния */
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  position: relative;
  z-index: 201; /* Чтобы бургер всегда был выше шторки и оверлея */
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 1.5px; /* Чуть-чуть утолщаем, чтобы на мобилках смотрелось четче */
  background: var(--white, #fff);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center; /* Центрируем точку вращения */
}

/* Эффект превращения в ровный крестик */
.nav__burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__burger.active span:nth-child(2) {
  opacity: 0;
}

.nav__burger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Desktop: show links, hide burger */
@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
}

/* ---- Mobile Drawer (снизу) ---- */
/* Overlay + Drawer — только на мобиле */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
  backdrop-filter: blur(2px);
}

.nav__drawer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black-light);
  border-radius: 20px 20px 0 0;
  z-index: 200;
  padding: 12px 24px 40px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
}

/* Десктоп: drawer и overlay скрыты */
@media (min-width: 900px) {
  .nav__overlay { display: none !important; }
  .nav__drawer  { display: none !important; }
  .nav__burger  { display: none !important; }
}

/* Мобиль: открытые состояния */
@media (max-width: 899px) {
  .nav__overlay.open { display: block; }
  .nav__drawer.open  { transform: translateY(0); }
  .nav__links        { display: none !important; }
}

.nav__drawer-handle {
  width: 40px; height: 4px;
  background: var(--white-30);
  border-radius: 2px;
  margin: 0 auto 24px;
}
.nav__drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav__drawer-link {
  display: flex;
  align-items: center;
  padding: 14px 0;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--white-60);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition-fast);
  touch-action: manipulation;
}
.nav__drawer-link:hover, .nav__drawer-link:active { color: var(--gold); }
.nav__drawer-cart { color: var(--white); font-weight: 500; border-bottom: none; margin-top: 4px; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, #1a1508 0%, var(--black) 70%);
}
.hero__gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 40%);
}
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 1px;
  height: 1px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; transform: translateY(-10px) scale(1); }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-100px) scale(0); }
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--white-60);
  margin-bottom: 48px;
  font-weight: 300;
  max-width: 400px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}
.hero__brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--white-30);
  text-transform: uppercase;
}
.hero__brands .dot { color: var(--gold); opacity: 0.5; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero__scroll span {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-30);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--black-soft); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.about__desc {
  font-size: 1.05rem;
  color: var(--white-60);
  margin-bottom: 40px;
  max-width: 500px;
}
.about__stats {
  display: flex;
  gap: 40px;
}
.about__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.about__stat span {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-30);
}
.about__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__card {
  background: var(--black-mid);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.about__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}
.about__card:hover { border-color: rgba(201,168,76,0.25); transform: translateX(4px); }
.about__card:hover::before { opacity: 1; }
.about__card-icon {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.about__card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.about__card p { font-size: 0.9rem; color: var(--white-60); line-height: 1.6; }

@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* =============================================
   CATALOG PREVIEW
   ============================================= */
.catalog-preview { background: var(--black); }
.catalog-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 28px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-60);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.tab-btn:hover { color: var(--gold); border-color: rgba(201,168,76,0.3); }
.tab-btn--active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Product grid */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* Product Card */
.product__card {
  background: var(--black-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.product__card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.product__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--black-light);
  overflow: hidden;
}
.product__image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product__card:hover .product__image-wrap img { transform: scale(1.05); }
.product__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 500;
}
.product__placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white-30);
}
.product__placeholder svg { opacity: 0.3; }
.product__placeholder span { font-size: 11px; letter-spacing: 0.2em; }
.product__info { padding: 20px; }
.product__brand {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.product__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product__notes {
  font-size: 0.8rem;
  color: var(--white-30);
  margin-bottom: 16px;
  font-style: italic;
}
.product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-light);
}
.product__price span {
  font-size: 0.75rem;
  color: var(--white-30);
  font-family: var(--font-body);
  font-weight: 300;
}
.product__order-btn {
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-body);
}
.product__order-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* =============================================
   STORES
   ============================================= */
.stores { background: var(--black-soft); }
.stores__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.store__card {
  background: var(--black-mid);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 32px;
  transition: var(--transition);
}
.store__card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 0 60px rgba(201,168,76,0.05);
}
.store__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}
.store__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.store__city {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.store__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.store__details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-60);
}
.store__details li svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.store__details a:hover { color: var(--gold); }
.store__actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (min-width: 768px) {
  .stores__grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   DELIVERY
   ============================================= */
.delivery {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.delivery__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}
.delivery__text p {
  color: var(--white-60);
  max-width: 460px;
  margin-bottom: 32px;
}
.delivery__carriers {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.carrier {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.carrier__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-light);
}
.carrier__desc {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--white-30);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .delivery__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* =============================================
   CONTACTS
   ============================================= */
.contacts { background: var(--black-soft); }
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.contact__block {
  background: var(--black-mid);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: var(--transition);
}
.contact__block:hover { border-color: rgba(201,168,76,0.3); }
.contact__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
  transition: color var(--transition-fast);
}
.contact__phone:hover { color: var(--gold-light); }
.contact__links {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.contact__icon-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-60);
  padding: 10px 20px;
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.contact__icon-link:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,0.3);
}

@media (min-width: 600px) {
  .contacts__grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 56px 0 32px;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}
.footer__logo {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--white);
  margin-bottom: 8px;
}
.footer__tagline {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--white-30);
  text-transform: uppercase;
}
.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-30);
  transition: color var(--transition-fast);
}
.footer__nav a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__bottom p {
  font-size: 11px;
  color: var(--white-30);
}

@media (min-width: 600px) {
  .footer__top { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* =============================================
   MOBILE OPTIMIZATIONS
   ============================================= */
@media (max-width: 480px) {
  :root { --section-gap: 64px; }
  .hero__title { font-size: clamp(2.4rem, 14vw, 4rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .store__card { flex-direction: column; gap: 16px; }
  .store__number { font-size: 2.5rem; }
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product__info { padding: 14px; }
  .product__name { font-size: 1rem; }
  .product__footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .product__order-btn { width: 100%; text-align: center; }
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* =============================================
   SELECTION
   ============================================= */
::selection { background: rgba(201,168,76,0.25); color: var(--white); }
