/* ========================================
   BEERSHOP — Design System
   ======================================== */

:root {
  --bg-deep: #0d0804;
  --bg-primary: #1a1208;
  --bg-secondary: #2d1f0e;
  --bg-card: rgba(45, 31, 14, 0.6);
  --bg-glass: rgba(45, 31, 14, 0.75);
  --amber: #d4a018;
  --amber-light: #f5c842;
  --amber-glow: #e8a900;
  --gold: #c9952a;
  --copper: #b87333;
  --cream: #f5e6c8;
  --cream-light: #fff8e7;
  --parchment: #f0e0c0;
  --text-muted: rgba(245, 230, 200, 0.5);
  --text-dim: rgba(245, 230, 200, 0.3);
  --border: rgba(212, 160, 24, 0.15);
  --border-hover: rgba(212, 160, 24, 0.4);
  --glass-blur: 20px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(212, 160, 24, 0.15);
  --font-display: 'Cormorant', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========= RESET & BASE ========= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--amber) var(--bg-primary);
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

a { color: var(--cream); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber-light); }

img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; }

em { font-style: italic; color: var(--amber-light); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========= GRAIN OVERLAY ========= */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  will-change: auto;
  contain: strict;
}

/* ========= BUBBLES ========= */
.bubbles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(212, 160, 24, 0.12), rgba(212, 160, 24, 0.03));
  border: 1px solid rgba(212, 160, 24, 0.06);
  animation: bubbleUp linear infinite;
}

@keyframes bubbleUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-110vh) scale(0.6); opacity: 0; }
}

/* ========= NAVIGATION ========= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: var(--transition);
}

.nav--scrolled {
  background: rgba(15, 10, 4, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--amber-light);
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  color: var(--amber);
}

.nav__logo-img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav__link {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  color: var(--cream);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  background: var(--bg-glass);
  color: var(--amber-light);
}

.nav__link.active {
  background: rgba(212, 160, 24, 0.15);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-glow));
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(212, 160, 24, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 160, 24, 0.5);
  color: var(--bg-deep);
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--border-hover);
  color: var(--cream);
}

.btn--ghost:hover {
  background: rgba(212, 160, 24, 0.1);
  border-color: var(--amber);
  color: var(--amber-light);
}

.btn--full { width: 100%; }

.btn--sm {
  padding: 8px 20px;
  font-size: 0.82rem;
}

/* ========= HERO BANNER ========= */
.hero-banner {
  position: relative;
  padding: 120px 0 60px;
  min-height: clamp(480px, 74svh, 760px);
  overflow: hidden;
  /* Небольшое отрицательное поле снизу, чтобы следующая секция заходила под fade */
  margin-bottom: -80px;
  padding-bottom: 140px;
}

/* Плавный fade-out в цвет фона сайта */
.hero-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(13, 8, 4, 0.6) 40%,
    var(--bg-deep) 100%
  );
  z-index: 10;
  pointer-events: none;
}

/* Боковые виньетки при активном видео */
.hero-banner--has-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(13,8,4,0.5) 0%, transparent 25%, transparent 75%, rgba(13,8,4,0.5) 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner__poster,
.hero-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.hero-banner__poster {
  z-index: 0;
}

.hero-banner__video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.45s ease;
  will-change: opacity;
}

.hero-banner--video-ready .hero-banner__video {
  opacity: 1;
}

.hero-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 160, 24, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(184, 115, 51, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 100%);
  z-index: 2; /* выше видео (z:1) — фон без видео */
  transition: background 0.4s ease;
}

/* При активном видео — тонкий полупрозрачный оверлей, видео просвечивает */
.hero-banner--has-video .hero-banner__bg {
  background:
    linear-gradient(180deg, rgba(13,8,4,0.45) 0%, rgba(13,8,4,0.25) 60%, rgba(13,8,4,0.5) 100%);
}

.hero-banner__inner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: clamp(360px, 62svh, 620px);
}

.hero-banner__text {
  max-width: 620px;
}

.hero-banner__tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.hero-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-banner__title span {
  color: var(--amber-light);
}

.hero-banner__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-banner__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-stat {
  text-align: center;
  padding: 20px 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 140px;
}

.hero-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat__label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ========= ADVANTAGES ========= */
.advantages {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(26, 18, 8, 0.5);
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.advantage {
  text-align: center;
}

.advantage__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--amber);
}

.advantage__icon svg {
  width: 100%;
  height: 100%;
}

.advantage__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.advantage__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========= STORES PREVIEW (homepage) ========= */
.stores-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.store-preview-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.store-preview-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.store-preview-card__img {
  height: 160px;
  overflow: hidden;
}

.store-preview-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.store-preview-card:hover .store-preview-card__img img {
  transform: scale(1.05);
}

.store-preview-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
}

.store-preview-card__placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--text-dim);
}

.store-preview-card__info {
  padding: 16px;
}

.store-preview-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}

.store-preview-card__address {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.store-preview-card__hours {
  font-size: 0.78rem;
  color: var(--amber);
}

/* ========= SECTIONS ========= */
.section {
  padding: 100px 0;
  position: relative;
}

.section--about {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(212, 160, 24, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 50%, var(--bg-deep) 100%);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.section__tag-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.4;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
}

.section__subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 8px;
}

.section__title em {
  color: var(--amber-light);
  font-style: italic;
}

.section__cta {
  text-align: center;
  margin-top: 48px;
}

/* ========= PAGE HERO ========= */
.page__hero {
  padding: 140px 24px 60px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(212, 160, 24, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-deep), var(--bg-primary));
}

.page__hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.page__hero-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ========= PRODUCT CARDS ========= */
.products-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(212, 160, 24, 0.06);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
  transition: var(--transition);
}

.product-card:hover::after {
  border-color: rgba(212, 160, 24, 0.12);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.product-card__img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.product-card__img-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card:hover .product-card__img-inner {
  transform: scale(1.05);
}

.product-card__img-inner svg {
  width: 80px;
  height: 80px;
  opacity: 0.2;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(13, 8, 4, 0.85);
  color: var(--amber-light);
  border: 1.5px solid var(--amber);
  transform: rotate(2deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.product-card__body {
  padding: 20px;
}

.product-card__type {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}

.product-card__brewery {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.product-card__abv {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.product-card__abv strong {
  color: var(--cream);
}

.product-card__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--amber-light);
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: color 0.2s;
  cursor: pointer;
}

.star.filled { color: var(--amber-light); }
.star:hover { color: var(--amber); }

.rating-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========= CATALOG ========= */
.catalog {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 40px 0 100px;
}

.catalog__filters {
  position: sticky;
  top: 100px;
  height: fit-content;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.filters__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--amber-light);
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--cream);
  transition: color var(--transition);
}

.filter-check:hover { color: var(--amber-light); }

.filter-check input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--border-hover);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}

.filter-check input[type="radio"] { border-radius: 50%; }

.filter-check input:checked {
  background: var(--amber);
  border-color: var(--amber);
}

.filter-check input:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--bg-deep);
  border-radius: 2px;
}

.filter-check input[type="radio"]:checked::after {
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.filter-select {
  width: 100%;
  padding: 10px 14px;
  background: rgba(15, 10, 4, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--cream);
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-select:focus {
  outline: none;
  border-color: var(--amber);
}

.filter-select option {
  background: var(--bg-secondary);
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ========= PRODUCT DETAIL ========= */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  margin-top: 100px;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.back-btn:hover { color: var(--amber-light); }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px 0;
}

.pd__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pd__image svg {
  width: 120px;
  height: 120px;
  opacity: 0.15;
}

.pd__info { padding: 20px 0; }

.pd__type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.pd__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
}

.pd__brewery {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.pd__rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.pd__rating-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber-light);
}

.pd__specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.pd__spec {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.pd__spec-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pd__spec-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream-light);
}

.pd__desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.pd__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-light);
  margin-bottom: 24px;
}

.pd__price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pd__price--tbd {
  color: var(--text-muted);
  font-size: 1.3rem;
}

.product-card__price--tbd {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========= REVIEWS ========= */
.product-reviews {
  padding: 40px 0 100px;
  border-top: 1px solid var(--border);
}

.reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.reviews__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.review-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--border-hover);
}

.review__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review__author {
  font-weight: 600;
  font-size: 0.95rem;
}

.review__date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review__text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.review-form {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 32px;
}

.review-form h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.review-form__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-form__stars .star {
  font-size: 1.5rem;
  cursor: pointer;
}

.review-form textarea {
  width: 100%;
  padding: 14px;
  background: rgba(15, 10, 4, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--cream);
  font-size: 0.9rem;
  resize: vertical;
  min-height: 100px;
  margin-bottom: 16px;
  transition: border-color var(--transition);
}

.review-form textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.review-form input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  background: rgba(15, 10, 4, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--cream);
  font-size: 0.9rem;
  margin-bottom: 16px;
  transition: border-color var(--transition);
}

.review-form input[type="text"]:focus {
  outline: none;
  border-color: var(--amber);
}

/* ========= GALLERY ========= */

/* Gallery Section — slider headers */
.gallery-section {
  margin-bottom: 40px;
}
.gallery-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(212,160,24,0.15);
  margin-bottom: 16px;
}
.gallery-section__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold, #d4a018);
  margin: 0;
}
.gallery-section__desc {
  font-size: 0.82rem;
  color: var(--text-muted, rgba(255,255,255,0.45));
  margin: 4px 0 0;
}
.gallery-section__count {
  font-size: 0.78rem;
  color: var(--text-muted, rgba(255,255,255,0.35));
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Horizontal slider */
.gallery-slider-wrap {
  position: relative;
}
.gallery-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 0 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,160,24,0.2) transparent;
  -webkit-overflow-scrolling: touch;
}
.gallery-slider::-webkit-scrollbar { height: 4px; }
.gallery-slider::-webkit-scrollbar-track { background: transparent; }
.gallery-slider::-webkit-scrollbar-thumb { background: rgba(212,160,24,0.2); border-radius: 2px; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,24,0.3);
  background: rgba(15,10,4,0.85);
  color: var(--gold, #d4a018);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  opacity: 0;
  pointer-events: none;
}
.gallery-slider-wrap:hover .slider-arrow {
  opacity: 1;
  pointer-events: auto;
}
.slider-arrow:hover { background: rgba(212,160,24,0.15); }
.slider-arrow--left { left: -12px; }
.slider-arrow--right { right: -12px; }

.slider-card {
  flex: 0 0 auto;
  width: 200px;
  cursor: pointer;
  transition: transform 0.25s;
}
.slider-card:hover { transform: translateY(-4px); }
.slider-card__img {
  width: 200px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.slider-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-card__title {
  font-size: 0.78rem;
  color: var(--text-muted, rgba(255,255,255,0.5));
  margin: 6px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Gallery divider */
.gallery-divider {
  text-align: center;
  padding: 32px 0 16px;
  position: relative;
}
.gallery-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,24,0.25), transparent);
}
.gallery-divider span {
  background: var(--bg, #0f0a04);
  padding: 0 20px;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-muted, rgba(255,255,255,0.5));
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Masonry grid for photos */
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
  padding: 24px 0 100px;
}

.gallery-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.gallery-grid {
  columns: 3;
  column-gap: 16px;
  padding: 40px 0 100px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}

.gallery-item__img {
  width: 100%;
  min-height: 120px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}
.gallery-item__img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.gallery-item__img svg {
  width: 48px;
  height: 48px;
  opacity: 0.15;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 10, 4, 0.8), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.gallery-item__cat {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 4px;
}

/* ========= LIGHTBOX ========= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  color: var(--cream);
  transition: color var(--transition);
  z-index: 10;
}

.lightbox__close:hover { color: var(--amber); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--cream);
  padding: 20px;
  transition: color var(--transition);
  z-index: 10;
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover,
.lightbox__next:hover { color: var(--amber); }

.lightbox__img-wrap {
  max-width: 80vw;
  max-height: 75vh;
  border-radius: var(--radius);
  overflow: hidden;
}

.lightbox__img {
  width: 60vw;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.lightbox__img svg {
  width: 80px;
  height: 80px;
  opacity: 0.2;
}

.lightbox__caption {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========= STORES ========= */
.stores-map {
  margin: 0 0 40px;
}

.stores-map__container {
  width: 100%;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

/* Leaflet custom marker */
.beer-marker { background: none !important; border: none !important; }

/* Leaflet popup dark theme */
.beer-popup .leaflet-popup-content-wrapper {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.beer-popup .leaflet-popup-tip { background: var(--card); border-top: 1px solid var(--border); }
.beer-popup .leaflet-popup-close-button { color: var(--text-muted); }
.beer-popup .leaflet-popup-close-button:hover { color: var(--accent); }
.store-balloon__name { font-weight: 600; font-size: 14px; margin-bottom: 4px; color: var(--accent); }
.store-balloon__address, .store-balloon__hours { font-size: 13px; color: var(--text-muted); margin-bottom: 2px; }
.store-balloon__phone a { color: var(--accent); text-decoration: none; font-size: 13px; }
.store-balloon__phone a:hover { text-decoration: underline; }

/* City group headers */
.stores-city-group {
  margin-bottom: 32px;
}

.stores-city-group__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber-light);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.stores-city-group__count {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Store card photo */
.store-card__photo {
  width: 100%;
  height: 140px;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
}

.store-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.store-card:hover .store-card__photo img {
  transform: scale(1.05);
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  padding: 0 0 100px;
}

.store-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  cursor: pointer;
}

.store-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.store-card.store-card--active {
  border-color: var(--amber);
  box-shadow: var(--shadow-glow), 0 0 0 1px var(--amber);
}

.store-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--amber-light);
}

.store-card__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.store-card__row svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--amber);
  margin-top: 2px;
}

/* Custom Yandex Maps balloon */
.store-balloon {
  padding: 4px 0;
  font-family: 'Manrope', system-ui, sans-serif;
  min-width: 200px;
}

.store-balloon__name {
  font-weight: 700;
  font-size: 14px;
  color: #1a1208;
  margin-bottom: 6px;
}

.store-balloon__address {
  font-size: 12px;
  color: #555;
  margin-bottom: 4px;
}

.store-balloon__hours {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}

.store-balloon__phone {
  font-size: 12px;
  color: #d4a018;
  font-weight: 600;
}

.store-balloon__phone a {
  color: #d4a018;
  text-decoration: none;
}

/* ========= ABOUT ========= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about__img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__svg {
  width: 160px;
  height: 160px;
}

.about__img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.stat {
  background: rgba(13, 8, 4, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.stat::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(212, 160, 24, 0.06);
  border-radius: calc(var(--radius-xs) - 2px);
  pointer-events: none;
}

.stat:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about__text .section__tag { justify-content: flex-start; }
.about__text .section__title { text-align: left; margin-bottom: 24px; }

.about__desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ========= ADMIN ========= */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-login__card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.admin-login__card h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.admin-login__card p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.admin-login__hint {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.admin-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(15, 10, 4, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--cream);
  font-size: 0.9rem;
  margin-bottom: 16px;
  transition: border-color var(--transition);
}

.admin-input:focus {
  outline: none;
  border-color: var(--amber);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 0 32px;
}

.admin-header h1 {
  font-family: var(--font-display);
  font-size: 2rem;
}

.admin-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 32px;
  width: fit-content;
}

.admin-tab {
  padding: 10px 24px;
  border-radius: var(--radius-xs);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  color: var(--text-muted);
}

.admin-tab.active {
  background: rgba(212, 160, 24, 0.2);
  color: var(--amber-light);
}

.admin-tab:hover { color: var(--cream); }

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.admin-toolbar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.admin-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 80px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: 14px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(15, 10, 4, 0.5);
  border-bottom: 1px solid var(--border);
}

.admin-table td {
  padding: 14px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}

.admin-table tr:last-child td { border-bottom: none; }

.admin-table tr:hover td {
  background: rgba(212, 160, 24, 0.03);
}

.admin-table .actions {
  display: flex;
  gap: 8px;
}

.admin-table .actions button {
  padding: 6px 14px;
  border-radius: var(--radius-xs);
  font-size: 0.78rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-edit {
  background: rgba(212, 160, 24, 0.15);
  color: var(--amber-light);
}
.btn-edit:hover { background: rgba(212, 160, 24, 0.3); }

.btn-delete {
  background: rgba(220, 60, 60, 0.15);
  color: #e87070;
}
.btn-delete:hover { background: rgba(220, 60, 60, 0.3); }

.admin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  padding-bottom: 80px;
}

.admin-gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
}

.admin-gallery-item__del {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(220, 60, 60, 0.8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.admin-gallery-item:hover .admin-gallery-item__del { opacity: 1; }

/* ========= MODALS ========= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 560px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal__header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.modal__close {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.modal__close:hover { color: var(--cream); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.color-pickers {
  display: flex;
  gap: 12px;
}

.color-pickers input[type="color"] {
  width: 48px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: none;
  cursor: pointer;
}

/* ========= IMAGE FILTERS ========= */
.filter-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: thin;
}

.filter-thumb {
  flex-shrink: 0;
  width: 64px;
  cursor: pointer;
  text-align: center;
  opacity: 0.6;
  transition: var(--transition);
}

.filter-thumb:hover { opacity: 0.85; }

.filter-thumb.active { opacity: 1; }

.filter-thumb canvas {
  width: 64px;
  height: 48px;
  border-radius: var(--radius-xs);
  border: 2px solid transparent;
  display: block;
}

.filter-thumb.active canvas {
  border-color: var(--amber);
}

.filter-thumb span {
  display: block;
  font-size: 0.65rem;
  margin-top: 4px;
  color: var(--text-muted);
}

.filter-thumb.active span {
  color: var(--amber-light);
}

/* ========= ANALYTICS ========= */
.analytics-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
}

.stat-card__num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber-light);
  display: block;
}

.stat-card__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.analytics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.analytics-section {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}

.analytics-section h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-light);
}

.chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 140px;
  padding-top: 8px;
}

.chart-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.chart-bar {
  width: 100%;
  max-width: 24px;
  background: linear-gradient(to top, var(--amber), var(--amber-light));
  border-radius: 3px 3px 0 0;
  min-height: 2px;
  transition: height 0.4s ease;
}

.chart-bar-wrap .chart-label {
  font-size: 0.55rem;
  color: var(--text-muted);
  margin-top: 4px;
  white-space: nowrap;
}

.chart-bar-wrap .chart-value {
  font-size: 0.6rem;
  color: var(--text-light);
  margin-bottom: 2px;
}

.chart--types {
  height: auto;
  flex-direction: column;
  gap: 8px;
}

.type-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.type-bar-row .type-label {
  width: 90px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
}

.type-bar-row .type-bar {
  flex: 1;
  height: 24px;
  background: var(--glass);
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.type-bar-row .type-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  padding-left: 8px;
  font-size: 0.7rem;
  color: var(--bg-dark);
  font-weight: 600;
  transition: width 0.5s ease;
}

@media (max-width: 768px) {
  .analytics-row { grid-template-columns: 1fr; }
  .analytics-summary { grid-template-columns: repeat(2, 1fr); }
}

/* ========= FOOTER ========= */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  background: var(--bg-deep);
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 16px;
  line-height: 1.6;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--amber-light);
}

.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer__col a:hover { color: var(--amber-light); }
.footer__col p { font-size: 0.85rem; color: var(--text-muted); }

.footer__socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--amber);
  color: var(--amber-light);
  background: rgba(212, 160, 24, 0.1);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer__age { color: var(--text-dim); }

/* ========= PAGES ========= */
.page {
  display: none;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.page.active {
  display: block;
  animation: pageIn 0.5s ease;
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========= REVEAL ANIMATIONS ========= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-banner {
    padding: 96px 0 36px;
    min-height: clamp(520px, 88svh, 760px);
  }
  .hero-banner__poster,
  .hero-banner__video { object-position: center 28%; }
  .hero-banner__inner { flex-direction: column; text-align: center; }
  .hero-banner__desc { margin-left: auto; margin-right: auto; }
  .hero-banner__actions { justify-content: center; }
  .hero-banner__stats { flex-direction: row; gap: 12px; }
  .hero-stat { padding: 16px 20px; min-width: 100px; }
  .hero-stat__num { font-size: 1.6rem; }
  .advantages__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stores-preview-grid { grid-template-columns: 1fr; }

  .nav { padding: 16px 20px; }
  .nav--scrolled { padding: 12px 20px; }

  .nav__burger { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(15, 10, 4, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 32px;
    gap: 4px;
    transition: right var(--transition);
    border-left: 1px solid var(--border);
  }

  .nav__links.open { right: 0; }

  .nav__link {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-xs);
  }

  .catalog {
    grid-template-columns: 1fr;
  }

  .catalog__filters {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }

  .gallery-grid { columns: 2; }
  .gallery-masonry { columns: 2; }
  .slider-card { width: 170px; }
  .slider-card__img { width: 170px; height: 128px; }
  .stores-grid { grid-template-columns: 1fr; }
  .stores-map__container { height: 380px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .pd__specs { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero-banner {
    min-height: clamp(540px, 94svh, 820px);
  }
  .gallery-grid { columns: 1; }
  .gallery-masonry { columns: 1; }
  .slider-card { width: 150px; }
  .slider-card__img { width: 150px; height: 112px; }
  .products-row { grid-template-columns: 1fr; }
  .catalog__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr; }
  .hero-banner__stats { flex-direction: column; }
  .advantages__grid { grid-template-columns: 1fr; }
}

/* ========= AGE GATE ========= */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.age-gate.active {
  opacity: 1;
  pointer-events: all;
}

.age-gate.exit {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.age-gate__bg {
  position: absolute;
  inset: 0;
  background: rgba(5, 3, 1, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.age-gate__card {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, rgba(45,31,14,0.9), rgba(26,18,8,0.95));
  border: 1px solid rgba(212,160,24,0.3);
  border-radius: 28px;
  padding: 52px 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.8), 0 0 80px rgba(212,160,24,0.06), inset 0 1px 0 rgba(212,160,24,0.1);
  animation: ageCardIn 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

@keyframes ageCardIn {
  from { transform: scale(0.88) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.age-gate__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.age-gate__brand-icon {
  width: 36px;
  height: 36px;
  color: var(--amber);
}

.age-gate__brand-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--amber-light);
}

.age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2.5px solid var(--amber);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber-light);
  margin: 0 auto 24px;
  background: rgba(212,160,24,0.06);
  box-shadow: 0 0 40px rgba(212,160,24,0.15), inset 0 0 20px rgba(212,160,24,0.05);
}

.age-gate__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 14px;
}

.age-gate__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.age-gate__btn-yes {
  font-size: 1rem !important;
  padding: 17px 32px !important;
  letter-spacing: 0.3px;
}

.age-gate__btn-no {
  font-size: 0.88rem !important;
  padding: 14px 32px !important;
  color: var(--text-muted) !important;
}

.age-gate__btn-no:hover { color: var(--cream) !important; }

.age-gate__legal {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.5;
}

@media (max-width: 480px) {
  .age-gate__card { padding: 36px 24px; }
}

/* ========= HERO PROMO BADGE ========= */
.hero-banner__promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,24,0.1);
  border: 1px solid rgba(212,160,24,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--amber-light);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.hero-banner__promo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  flex-shrink: 0;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* ========= HERO STAT FACT ========= */
.hero-stat__fact {
  display: block;
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-top: 4px;
  line-height: 1.3;
}

/* ========= TRUST STRIP ========= */
.trust-strip {
  position: relative;
  z-index: 15;
  padding: 18px 0;
  background: linear-gradient(90deg, rgba(212,160,24,0.04), rgba(212,160,24,0.1), rgba(212,160,24,0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 16px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child { border-right: none; }

.trust-item__num {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
}

.trust-item__text {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 700px) {
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--border); }
}
