:root {
  --bg: linear-gradient(135deg, #091820 0%, #091b27 50%, #091c27 100%);
  --bg-img: url('/static/images/bg.jpg'); 
  --bg-card: #00000070;
  --bg-hover: #00000000;
  --border: #2a2a2a;
  --text: #f0eee9;
  --text-dim: #c9c9c9;
  --accent: #a9ff00;
  --accent-dim: #8aa82e;
  --font: 'Unbounded', sans-serif;
  --radius: 16px;
  --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 72px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  /* Фоновая картинка + затемняющий градиент */
  background-image: linear-gradient(rgba(10, 26, 35, 0.85), rgba(10, 26, 35, 0.85)), var(--bg-img);
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Картинка не двигается при прокрутке */
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========== HEADER ========== */
header {
  border-bottom: 1px solid var(--border);
  /* background: var(--bg); */
  backdrop-filter: blur(16px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: var(--header-height);
}

nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.2em;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.nav-links a:hover {
  color: var(--text);
}

.btn-primary {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border-radius: 6px;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-dim);
  transform: scale(0.96);
}
.btn-primary.large {
  min-height: 56px;
  padding: 0 44px;
  font-size: 14px;
}

.btn-primary i {
  font-size: 18px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--text);
  color: var(--text);
}

/* ========== HERO CAROUSEL ========== */

/* Основной контейнер на весь экран */
.hero-carousel {
  height: 100vh; /* Высота ровно на один экран */
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: var(--header-height); /* Отступ под шапку, если она у вас фиксированная */
  background-color: #0a0a0a; /* Фон, пока грузится картинка */
}

/* Дорожка, которая двигается влево/вправо */
.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); /* Плавное перелистывание */
}

/* Один слайд (баннер) */
.banner-slide {
  flex: 0 0 100%; /* Каждый слайд занимает ровно 100% ширины */
  height: 100%;
  background-size: cover;    /* Картинка заполняет весь экран без полос */
  background-position: center;
  background-repeat: no-repeat;
}

/* ========== УПРАВЛЕНИЕ (СТРЕЛКИ) ========== */

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 10, 10, 0.6); /* Полупрозрачный черный фон */
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--accent); /* Лаймовый цвет */
  color: #000;
  border-color: var(--accent);
}

.carousel-btn.prev {
  left: 24px;
}

.carousel-btn.next {
  right: 24px;
}

/* ========== ТОЧКИ НАВИГАЦИИ ========== */

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-indicator.active {
  background: var(--accent);
  width: 32px;
  border-radius: 6px;
}

/* ========== СЧЕТЧИК (01 / 13) ========== */

.carousel-counter {
  position: absolute;
  bottom: 26px;
  right: 40px;
  z-index: 10;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

.carousel-counter #currentSlide {
  color: var(--accent); /* Лаймовый цвет для текущего номера */
  font-size: 18px;
}


/* ========== HERO CONTENT (ОПИСАНИЕ ТОВАРА) ========== */

/* Контейнер для текста слева */
.slide-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 40px 0;
  position: relative;
  z-index: 2; /* Чтобы текст был поверх фоновой картинки */
}

/* Обертка для всего контента */
.slide-content {
    max-width: 650px;
    background: #0000004d;
    padding: 25px 40px;
    border-radius: 20px;
}

/* Значки (номер и остаток) */
.badge-wrap {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.badge {
  padding: 6px 14px;
  border-radius: 4px;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge.outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

/* Название вкуса */
.slide-content h1 {
  font-size: clamp(48px, 8vw, 75px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Тень для читаемости на фоне */
}

/* Детали (Аромат, Интенсивность, Свежесть) */
.flavor-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
  max-width: 480px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.detail-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  min-width: 150px;
}

.detail-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

/* Шкала (точки) */
.scale {
  display: flex;
  gap: 5px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.dot.active {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(200, 255, 74, 0.4);
}

/* Цена */
.slide-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 30px;
}

.slide-price span {
  font-size: 35px;
  font-weight: 900;
  color: var(--accent);
}

.slide-price small {
  font-size: 14px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Кнопки */
.actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Адаптивность текста на мобильных */
@media (max-width: 860px) {
  .slide-grid {
    padding: 100px 0 60px; /* Отступ сверху, чтобы текст не залазил под шапку */
  }
  .slide-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }
  .detail-label {
    min-width: 100%;
    margin-bottom: 4px;
  }
  .detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .slide-price span {
    font-size: 36px;
  }
  .actions {
    flex-direction: column;
    width: 100%;
  }
  .actions .btn-primary,
  .actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}


/* ========== CATALOG ========== */
.catalog {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}


/* Картинка товара */
.flavor-img-wrap {
    width: 100%;
    height: auto; 
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flavor-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Картинка не растягивается, а вписывается пропорционально */
    transition: transform 0.4s ease;
}


/* ========== HOVER OVERLAY (ХАРАКТЕРИСТИКИ) ========== */

/* Обертка картинки */
.flavor-img-wrap {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 16px;
    background: rgba(0, 0, 0, 0.3);
}

.flavor-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    z-index: 1;
    position: relative;
}

/* Оверлей (появляется при наведении) */
.flavor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2; /* Поверх картинки */
    background: rgba(10, 26, 35, 0.85); /* Темный фон */
    backdrop-filter: blur(8px); /* Размытие фона */
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 15px;
    opacity: 0; /* Скрыт по умолчанию */
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    color: var(--text);
    text-align: center;
}

/* Показываем оверлей при наведении на картинку */
.flavor-img-wrap:hover .flavor-overlay {
    opacity: 1;
    visibility: visible;
}

/* Увеличиваем картинку при наведении */
.flavor-img-wrap:hover img {
    transform: scale(1.1);
}

/* Элементы внутри оверлея */
.overlay-country {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.overlay-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 100%;
}

.overlay-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
}

.overlay-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

/* Шкала внутри оверлея */
.overlay-detail .scale {
    margin-top: 4px;
}

.overlay-detail .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
}

.overlay-detail .dot.active {
    background: var(--accent);
    box-shadow: 0 0 8px rgba(200, 255, 74, 0.4);
}

.flavor-card:hover .flavor-img-wrap img {
    transform: scale(1.08); /* Легкое увеличение при наведении */
}

.section-header {
  margin-bottom: 48px;
}
.section-number {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.section-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  font-weight: 900;
  margin: 4px 0 6px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-dim);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  /* background: var(--border); */
  border-radius: var(--radius);
  overflow: hidden;
}

.flavor-card {
  background: var(--bg-card);
  padding: 28px 24px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  border-left: 3px solid transparent;
}
.flavor-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.flavor-card:hover {
  background: var(--bg-hover);
  border-left-color: var(--accent);
}

.flavor-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.flavor-index {
  opacity: 0.3;
}
.flavor-stock {
  color: var(--accent);
}

.flavor-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 5px 0 5px;
    padding: 5px 0 5px;
    letter-spacing: -0.02em;
    border-top: 1px solid #ffffff2e;
    border-bottom: 1px solid #ffffff2e;
}

.flavor-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flavor-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}
.flavor-bottom a {
  font-size: 22px;
  color: var(--text-dim);
  transition: var(--transition);
}
.flavor-bottom a:hover {
  color: var(--accent);
  transform: translateX(4px);
}


.convert, .convert-mobile {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
}

/* ========== DESCRIPTION ========== */
.description-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.desc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.desc-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.desc-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.desc-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.desc-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.desc-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 14px 0 10px;
  letter-spacing: -0.02em;
}

.desc-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* Адаптивность */
@media (max-width: 860px) {
  .desc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .desc-card {
    padding: 28px 24px;
  }
}

/* ========== PRICE TABLE ========== */
.price-table-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.price-table-wrap {
  width: 100%;
  overflow-x: auto; /* Чтобы таблица скроллилась на мобильных */
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.price-table {
  width: 100%;
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.02em;
  margin: 0;
}

.price-table thead {
  background: rgba(0, 0, 0, 0.3);
}

.price-table th {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  padding: 18px 16px;
  border-bottom: 1px solid var(--border);
}

.price-table td {
  padding: 10px 10px;
  border-bottom: 1px solid rgba(42, 42, 42, 0.5);
  transition: var(--transition);
}

.price-table tr:hover td {
  color: var(--accent);
  background: rgba(169, 255, 0, 0.03);
}

.price-table td:first-child {
  font-weight: 700;
  font-size: 15px;
  text-align: left;
}

.price-table td:nth-child(2),
.price-table td:nth-child(3),
.price-table td:nth-child(4) {
  text-align: center;
}

/* Примечание: Dashes (X) */
.price-rub {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.price-usd {
  font-weight: 800;
  font-size: 14px;
}

/* Срок доставки */
.price-table td:last-child {
  text-align: right;
  font-size: 13px;
  color: var(--text-dim);
}

/* Адаптивность на мобильных */
@media (max-width: 860px) {
  .price-table {
    font-size: 12px;
  }
  .price-table th,
  .price-table td {
    padding: 12px 8px;
  }
}


/* ========== STEPS ========== */
.steps {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}



.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.step-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.step-icon {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.7;
  line-height: 1;
}
.step-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 14px 0 6px;
}
.step-card p {
  color: var(--text-dim);
  font-size: 15px;
}


/* Логотип */
.logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.2em;
}

.logo img {
  width: auto;
  height: 50px; /* Высота логотипа в пикселях. Настройте под размер вашей картинки */
  object-fit: contain;
  transition: var(--transition);
}

.logo img:hover {
  opacity: 0.8;
}


/* ========== CTA ========== */
.cta {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}


.cta-inner {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.cta-content h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 6px 0 10px;
}
.cta-content p {
  color: var(--text-dim);
  font-size: 17px;
  margin-bottom: 30px;
}
.cta-glow {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 255, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}


.currency-banner {
  display: none;
  position: fixed;
  bottom: 70px; /* Отступ от нижнего мобильного меню */
  left: 10px;
  right: 10px;
  z-index: 35;
  background: rgb(10 10 10 / 30%);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  transition: var(--transition);
}
.currency-banner:hover {
  border-color: var(--accent);
  color: var(--text);
}

/* ========== FOOTER ========== */
footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 40px;
  background: #09171f;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  color: var(--text-dim);
}
.footer-brand {
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
}
.footer-inner p {
  max-width: 500px;
  text-align: center;
  font-size: 12px;
}


/* ========== AGE GATE ========== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  transition: opacity 0.4s ease, visibility 0.4s ease; /* Плавное исчезновение */
  opacity: 1;
  visibility: visible;
}

/* Класс, который добавляет JS при подтверждении */
.age-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* Чтобы окно не мешало кликать по сайту после исчезновения */
}

.age-card {
  width: min(380px, 100%);
  padding: 44px 34px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
}
.age-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.age-card h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 6px;
}
.age-card p {
  color: var(--text-dim);
  font-size: 15px;
}
.age-card button {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  margin-top: 24px;
  transition: var(--transition);
}
.age-card button:hover {
  transform: scale(0.96);
}
.age-card > a {
  display: block;
  color: var(--text-dim);
  font-size: 13px;
  margin-top: 14px;
}


/* ========== BOTTOM NAVIGATION (MOBILE ONLY) ========== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 64px;
  background: rgb(10 10 10 / 30%);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0 16px;
  transition: transform 0.4s ease;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 60px;
  height: 100%;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  transition: var(--transition);
}

.bottom-nav-item:hover {
  color: var(--text);
}

.bottom-nav-item.active {
  color: var(--accent);
}

.bottom-nav-icon {
  font-size: 22px;
  line-height: 1;
  margin: 0;
}

.bottom-nav-text {
  font-size: 11px;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
}


@media (min-width: 861px) {
  .bottom-nav {
    display: none;
  }
}

@media (max-width: 860px) {
  .bottom-nav {
    display: flex;
  }

  footer {
    padding-bottom: 80px;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1440px) {
  .currency-banner {
    display: none;
  }
}
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .convert {
    display: none;
  }
  .currency-banner {
    bottom: 10px;
    display: flex;
    gap: 15px;
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .slide-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 0;
  }
  .slide-visual {
    order: -1;
  }
  .visual-box {
    max-width: 100%;
  }
  .nav-links {
    display: none;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-inner p {
    max-width: 100%;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .carousel-btn.prev {
    left: 10px;
  }
  .carousel-btn.next {
    right: 10px;
  }
  .carousel-counter {
    right: 20px;
    bottom: 20px;
    font-size: 11px;
  }
  .detail-item {
    flex-wrap: wrap;
    gap: 8px;
  }
  .detail-label {
    min-width: 100%;
  }

  .hero-carousel {
    height: auto;
    min-height: 100vh;
  }
  .slide {
    min-height: 100vh;
    padding: 20px 0;
  }
  .currency-banner {
    bottom: 70px;
    display: flex;
    gap: 15px;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    padding: 40px 24px;
  }
  .actions .btn-primary,
  .actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .slide-price span {
    font-size: 18px;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
  .carousel-dots {
    bottom: 16px;
  }
  .glow-ring {
    width: 250px;
    height: 250px;
  }
  .logo img {
    height: 40px;
  }
  .btn-primary {
    min-height: 35px;
    padding: 0 15px;
    font-size: 10px;
  }
  .age-card {
    width: min(380px, 90%);
  }
  .flavor-overlay {
    opacity: 0;
    visibility: hidden;
    background: rgba(10, 26, 35, 0.8);
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Плавное исчезновение */
  }
  .flavor-img-wrap:active .flavor-overlay {
    opacity: 1;
    visibility: visible;
  }
  .flavor-img-wrap:active img {
    transform: scale(1.05);
  }
  .slide-price small {
    font-size: 10px;
  }
  .btn-ghost, .btn-primary.large {
    font-size: 12px;
  }
  .convert {
    display: none;
  }
}