/* ===== Variables ===== */
:root {
  --bg-deep: #0a0908;
  --bg-card: #14110e;
  --bg-elevated: #1c1814;
  --amber: #d4a03c;
  --amber-light: #e8c06a;
  --amber-glow: rgba(212, 160, 60, 0.3);
  --hops: #5a8f4e;
  --cream: #f5efe4;
  --cream-muted: #9a9080;
  --border: rgba(245, 239, 228, 0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Onest', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

body.age-locked { overflow: hidden; }

.container { width: min(1240px, 92vw); margin: 0 auto; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.hidden { display: none !important; }

/* Lucide icons */
[data-lucide] {
  width: 1.1em;
  height: 1.1em;
  stroke-width: 2;
  vertical-align: -0.15em;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--amber), #a07820);
  color: var(--bg-deep);
  box-shadow: 0 4px 24px var(--amber-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px var(--amber-glow);
}

.btn--outline {
  border-color: var(--border);
  color: var(--cream);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}

.btn--outline:hover { border-color: var(--amber); color: var(--amber); }

.btn--ghost { color: var(--cream-muted); border: 1px solid var(--border); }
.btn--ghost:hover { color: var(--cream); border-color: var(--cream-muted); }

.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--sm { padding: 8px 14px; font-size: 0.85rem; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }

/* ===== Age Gate ===== */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 9, 8, 0.97);
  backdrop-filter: blur(24px);
  padding: 20px;
  transition: opacity 0.5s, visibility 0.5s;
}

.age-gate.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.age-gate__card {
  text-align: center; max-width: 440px; padding: 48px 36px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  animation: fadeUp 0.6s ease;
}

.age-gate__icon {
  width: 72px; height: 72px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,160,60,0.12); border-radius: 50%;
  color: var(--amber);
}

.age-gate__icon [data-lucide] { width: 36px; height: 36px; }
.age-gate__card h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 12px; }
.age-gate__card p { color: var(--cream-muted); margin-bottom: 28px; font-size: 0.95rem; }
.age-gate__actions { display: flex; flex-direction: column; gap: 12px; }
.age-gate__legal { display: block; margin-top: 24px; color: var(--cream-muted); font-size: 0.75rem; opacity: 0.7; }

.age-denied {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 100vh; text-align: center; padding: 20px; gap: 16px;
}
.age-denied [data-lucide] { width: 64px; height: 64px; color: #c44; }

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 9, 8, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled { background: rgba(10, 9, 8, 0.96); box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.15rem; flex-shrink: 0; }

.logo__mark {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--amber), #7a5a10);
  color: var(--bg-deep); border-radius: 11px;
}

.logo__mark [data-lucide] { width: 22px; height: 22px; stroke-width: 2.5; }
.logo__accent { color: var(--amber); }

.nav { display: flex; gap: 24px; }
.nav a {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 500; color: var(--cream-muted);
  transition: color var(--transition); position: relative;
}

.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--amber); transition: width var(--transition);
}

.nav a:hover { color: var(--cream); }
.nav a:hover::after { width: 100%; }
.nav a [data-lucide] { width: 15px; height: 15px; opacity: 0.7; }

.header__actions { display: flex; align-items: center; gap: 4px; }

.search-toggle, .cart-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--cream-muted); transition: var(--transition); position: relative;
}

.search-toggle:hover, .cart-btn:hover { background: var(--bg-elevated); color: var(--cream); }
.search-toggle [data-lucide], .cart-btn [data-lucide] { width: 20px; height: 20px; }

.cart-btn__count {
  position: absolute; top: 2px; right: 2px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--amber); color: var(--bg-deep);
  font-size: 0.68rem; font-weight: 700; border-radius: 50px;
  display: flex; align-items: center; justify-content: center;
}

.burger {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}

.burger span { width: 22px; height: 2px; background: var(--cream); border-radius: 2px; }

.search-bar {
  max-height: 0; overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
  border-top: 0 solid var(--border);
}

.search-bar.open { max-height: 80px; padding: 14px 0; border-top-width: 1px; }

.search-bar__inner {
  display: flex; align-items: center; gap: 12px;
  padding: 4px 20px; background: var(--bg-elevated);
  border: 1px solid var(--border); border-radius: 50px;
}

.search-bar__inner [data-lucide] { color: var(--cream-muted); width: 18px; height: 18px; flex-shrink: 0; }

.search-bar input {
  flex: 1; padding: 10px 0; background: transparent; border: none;
  color: var(--cream); font-size: 0.95rem; outline: none;
}

.search-bar input::placeholder { color: var(--cream-muted); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(212,160,60,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 70%, rgba(90,143,78,0.08) 0%, transparent 50%),
    var(--bg-deep);
}

.hero__grain {
  position: absolute; inset: 0; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), rgba(212,160,60,0.04));
  border: 1px solid rgba(212,160,60,0.08);
  animation: float 9s ease-in-out infinite;
}

.hero__bubble--1 { width: 320px; height: 320px; top: 8%; right: 8%; }
.hero__bubble--2 { width: 160px; height: 160px; top: 55%; right: 30%; animation-delay: -3s; }
.hero__bubble--3 { width: 90px; height: 90px; top: 25%; right: 45%; animation-delay: -5s; }
.hero__bubble--4 { width: 50px; height: 50px; top: 70%; right: 15%; animation-delay: -7s; }

.hero__layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; background: var(--bg-elevated);
  border: 1px solid var(--border); border-radius: 50px;
  font-size: 0.85rem; color: var(--amber); margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700; line-height: 1.08; margin-bottom: 24px;
}

.hero__title em { font-style: italic; color: var(--amber); }

.hero__subtitle {
  font-size: 1.1rem; color: var(--cream-muted);
  max-width: 480px; margin-bottom: 36px; line-height: 1.7;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: 36px;
  padding-top: 28px; border-top: 1px solid var(--border);
}

.stat strong {
  display: block; font-family: var(--font-display);
  font-size: 2.4rem; color: var(--amber); line-height: 1; margin-bottom: 4px;
}

.stat span { font-size: 0.82rem; color: var(--cream-muted); }

.hero__visual { position: relative; display: flex; justify-content: center; }

.hero__glow {
  position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, var(--amber-glow), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

.hero__bottle {
  position: relative; z-index: 1;
  width: min(380px, 90%); height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}

.hero__float-card {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; background: rgba(20,17,14,0.9);
  border: 1px solid var(--border); border-radius: 50px;
  font-size: 0.82rem; font-weight: 500;
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero__float-card [data-lucide] { color: var(--amber); width: 18px; height: 18px; }
.hero__float-card--1 { top: 15%; right: -10%; animation-delay: -1s; }
.hero__float-card--2 { bottom: 20%; left: -5%; animation-delay: -2.5s; }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--cream-muted); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ===== Marquee ===== */
.marquee {
  padding: 20px 0; background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee__track {
  display: flex; gap: 48px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}

.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--cream-muted);
  opacity: 0.5; letter-spacing: 0.05em;
}

.marquee__track span::before { content: '◆ '; color: var(--amber); opacity: 0.6; }

/* ===== Sections ===== */
section { padding: 100px 0; }

.section-head { margin-bottom: 48px; }

.section-label {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 12px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
}

.section-desc { color: var(--cream-muted); margin-top: 8px; }

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Categories ===== */
.categories { background: var(--bg-card); }

.categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

.category-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 22px 12px; background: var(--bg-elevated);
  border: 2px solid var(--border); border-radius: var(--radius);
  transition: var(--transition); color: var(--cream-muted);
}

.category-card:hover {
  border-color: rgba(212,160,60,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.category-card.active {
  border-color: var(--amber);
  background: rgba(212,160,60,0.1);
  color: var(--cream);
}

.category-card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,160,60,0.08); border-radius: 50%;
  color: var(--amber);
}

.category-card__icon [data-lucide] { width: 22px; height: 22px; }
.category-card__name { font-weight: 600; font-size: 0.88rem; }
.category-card__count { font-size: 0.72rem; opacity: 0.55; }

/* ===== Featured Carousel ===== */
.featured {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-card) 50%, var(--bg-deep) 100%);
  overflow: hidden;
}

.featured__carousel { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }

.featured__track {
  display: flex; gap: 24px;
  animation: carousel 35s linear infinite;
  width: max-content;
}

.featured__track:hover { animation-play-state: paused; }

.featured-card {
  flex: 0 0 300px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.featured-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow);
  border-color: rgba(212,160,60,0.25);
}

.featured-card__img-wrap { position: relative; height: 200px; overflow: hidden; }

.featured-card__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-card:hover .featured-card__img-wrap img { transform: scale(1.08); }

.featured-card__badge {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 12px; background: var(--amber); color: var(--bg-deep);
  font-size: 0.68rem; font-weight: 700; border-radius: 50px; text-transform: uppercase;
}

.featured-card__content { padding: 20px; }

.featured-card h3 {
  font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 4px;
}

.featured-card__brewery { color: var(--cream-muted); font-size: 0.82rem; margin-bottom: 12px; }

.featured-card__meta {
  display: flex; gap: 14px; font-size: 0.78rem; color: var(--cream-muted); margin-bottom: 16px;
}

.featured-card__meta span { display: flex; align-items: center; gap: 4px; }
.featured-card__footer { display: flex; align-items: center; justify-content: space-between; }
.featured-card__price { font-size: 1.3rem; font-weight: 700; color: var(--amber); }

/* ===== Catalog ===== */
.catalog__toolbar {
  display: flex; justify-content: flex-end; margin-bottom: 32px;
}

.catalog__sort {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--cream-muted);
}

.catalog__sort select {
  padding: 10px 16px; background: var(--bg-elevated);
  border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--cream); outline: none; cursor: pointer;
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.beer-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
  animation: fadeUp 0.5s ease backwards;
}

.beer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(212,160,60,0.2);
}

.beer-card__visual {
  position: relative; height: 240px; overflow: hidden;
  background: var(--bg-elevated);
}

.beer-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}

.beer-card:hover .beer-card__img { transform: scale(1.06); }

.beer-card__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,9,8,0.6);
  opacity: 0; transition: opacity var(--transition);
}

.beer-card:hover .beer-card__overlay { opacity: 1; }

.beer-card__tag {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 12px; background: rgba(10,9,8,0.85);
  backdrop-filter: blur(8px); border-radius: 50px;
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--amber);
}

.beer-card__new {
  position: absolute; top: 12px; right: 12px;
  padding: 5px 12px; background: var(--hops); color: #fff;
  border-radius: 50px; font-size: 0.68rem; font-weight: 700;
}

.beer-card__body { padding: 20px; }

.beer-card h3 {
  font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 4px;
}

.beer-card__brewery { color: var(--cream-muted); font-size: 0.82rem; margin-bottom: 10px; }

.beer-card__desc {
  font-size: 0.82rem; color: var(--cream-muted); margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.beer-card__specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }

.beer-card__spec {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 10px; background: var(--bg-elevated);
  border-radius: 6px; font-size: 0.72rem; color: var(--cream-muted);
}

.beer-card__spec [data-lucide] { width: 12px; height: 12px; opacity: 0.6; }

.beer-card__footer { display: flex; align-items: center; justify-content: space-between; }
.beer-card__price { font-size: 1.25rem; font-weight: 700; color: var(--amber); }

.beer-card__footer .btn { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

.catalog__empty {
  text-align: center; padding: 60px 20px; color: var(--cream-muted);
}

.catalog__empty [data-lucide] { width: 48px; height: 48px; margin: 0 auto 16px; opacity: 0.4; }

.catalog__more { text-align: center; margin-top: 48px; }

/* ===== Modal ===== */
.modal {
  position: fixed; inset: 0; z-index: 400;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.modal.open { opacity: 1; visibility: visible; }

.modal__dialog {
  position: relative; width: min(800px, 100%);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s ease;
  box-shadow: var(--shadow);
}

.modal.open .modal__dialog { transform: scale(1) translateY(0); }

.modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,9,8,0.8); border-radius: 50%;
  color: var(--cream); transition: var(--transition);
}

.modal__close:hover { background: var(--amber); color: var(--bg-deep); }

.modal__body {
  display: grid; grid-template-columns: 1fr 1fr;
}

.modal__img { position: relative; height: 100%; min-height: 360px; }

.modal__img img { width: 100%; height: 100%; object-fit: cover; }

.modal__info { padding: 36px; display: flex; flex-direction: column; justify-content: center; }

.modal__tag {
  display: inline-block; padding: 4px 12px;
  background: rgba(212,160,60,0.12); color: var(--amber);
  border-radius: 50px; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; margin-bottom: 12px; width: fit-content;
}

.modal__info h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 6px; }
.modal__brewery { color: var(--cream-muted); margin-bottom: 16px; }
.modal__desc { color: var(--cream-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 24px; }

.modal__specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; }

.modal__spec {
  padding: 14px; background: var(--bg-elevated);
  border-radius: var(--radius); text-align: center;
}

.modal__spec [data-lucide] { color: var(--amber); width: 20px; height: 20px; margin-bottom: 6px; }
.modal__spec span { display: block; font-size: 0.72rem; color: var(--cream-muted); margin-bottom: 4px; }
.modal__spec strong { font-size: 1.1rem; }

.modal__footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.modal__price { font-size: 1.8rem; font-weight: 700; color: var(--amber); }

/* ===== Delivery ===== */
.delivery { background: var(--bg-card); }

.delivery__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.delivery__content h2 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 16px; }
.delivery__content > p { color: var(--cream-muted); margin-bottom: 32px; line-height: 1.7; }

.delivery__list { list-style: none; }

.delivery__list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}

.delivery__item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,160,60,0.1); border-radius: 50%; color: var(--amber);
}

.delivery__item-icon [data-lucide] { width: 18px; height: 18px; }
.delivery__list strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.delivery__list span { color: var(--cream-muted); font-size: 0.85rem; }

.map-card {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}

.map-card__img { height: 180px; overflow: hidden; }
.map-card__img img { width: 100%; height: 100%; object-fit: cover; }

.map-card__body { padding: 28px; text-align: center; }

.map-card h3 {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-size: 1.6rem; color: var(--amber); margin-bottom: 8px;
}

.map-card p { color: var(--cream-muted); margin-bottom: 20px; line-height: 1.8; }

.map-card__hours { display: flex; flex-direction: column; gap: 8px; font-size: 0.85rem; color: var(--cream-muted); }
.map-card__hours span { display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ===== Contacts ===== */
.contacts__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.contacts__grid h2 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 32px; }
.contacts__items { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition);
}

.contact-item:hover { border-color: var(--amber); transform: translateX(6px); }

.contact-item__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,160,60,0.1); border-radius: 50%; color: var(--amber);
}

.contact-item__icon [data-lucide] { width: 22px; height: 22px; }
.contact-item strong { display: block; margin-bottom: 2px; }
.contact-item small { color: var(--cream-muted); font-size: 0.8rem; }

.contact-form {
  padding: 36px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}

.contact-form h3 {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 24px;
}

.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px; margin-bottom: 12px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--cream); outline: none;
  transition: border-color var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus { border-color: var(--amber); }
.contact-form textarea { resize: vertical; min-height: 80px; }
.form-note { margin-top: 12px; font-size: 0.85rem; color: var(--hops); min-height: 20px; }

/* ===== Footer ===== */
.footer { padding: 48px 0; border-top: 1px solid var(--border); background: var(--bg-card); }

.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 2fr;
  gap: 40px; align-items: start;
}

.footer__brand p { color: var(--cream-muted); font-size: 0.85rem; margin-top: 16px; line-height: 1.7; }

.footer__links { display: flex; flex-direction: column; gap: 12px; }

.footer__links a {
  display: flex; align-items: center; gap: 8px;
  color: var(--cream-muted); font-size: 0.9rem; transition: color var(--transition);
}

.footer__links a:hover { color: var(--amber); }
.footer__legal { display: flex; flex-direction: column; gap: 8px; text-align: right; }
.footer__legal small { color: var(--cream-muted); font-size: 0.75rem; opacity: 0.7; }

/* ===== Cart ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65);
  z-index: 200; opacity: 0; visibility: hidden; transition: var(--transition);
}

.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-sidebar {
  position: fixed; top: 0; right: 0;
  width: min(440px, 100vw); height: 100vh;
  background: var(--bg-card); border-left: 1px solid var(--border);
  z-index: 201; display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.open { transform: translateX(0); }

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

.cart-sidebar__head h3 {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.5rem;
}

.cart-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-muted); border-radius: 50%; transition: var(--transition);
}

.cart-close:hover { background: var(--bg-elevated); color: var(--cream); }

.cart-sidebar__body { flex: 1; overflow-y: auto; padding: 24px; }

.cart-empty {
  text-align: center; color: var(--cream-muted); padding: 40px 0;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}

.cart-empty [data-lucide] { width: 40px; height: 40px; opacity: 0.3; }

.cart-item {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item__img {
  width: 56px; height: 56px; border-radius: 8px; object-fit: cover; flex-shrink: 0;
}

.cart-item__info { flex: 1; }
.cart-item__info h4 { font-size: 0.92rem; margin-bottom: 4px; }
.cart-item__info small { color: var(--cream-muted); font-size: 0.78rem; }

.cart-item__controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }

.cart-item__controls button {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--bg-elevated); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}

.cart-item__controls button [data-lucide] { width: 14px; height: 14px; }
.cart-item__controls button:hover { background: var(--amber); color: var(--bg-deep); }
.cart-item__qty { font-weight: 600; min-width: 20px; text-align: center; }
.cart-item__price { font-weight: 700; color: var(--amber); white-space: nowrap; }

.cart-sidebar__foot { padding: 24px; border-top: 1px solid var(--border); }

.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; font-size: 1.1rem;
}

.cart-total strong { font-size: 1.4rem; color: var(--amber); }
.cart-note { display: block; text-align: center; margin-top: 12px; color: var(--cream-muted); font-size: 0.75rem; }

/* ===== Toast ===== */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 14px 28px; background: var(--bg-elevated);
  border: 1px solid var(--amber); border-radius: 50px;
  color: var(--cream); font-size: 0.9rem; z-index: 500;
  opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: var(--shadow); white-space: nowrap;
}

.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes carousel {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero__layout { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__float-card--1 { right: 5%; }
  .hero__float-card--2 { left: 5%; }

  .modal__body { grid-template-columns: 1fr; }
  .modal__img { min-height: 240px; }

  .delivery__grid, .contacts__grid, .footer__inner { grid-template-columns: 1fr; }
  .footer__legal { text-align: left; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--bg-deep); flex-direction: column;
    padding: 24px; gap: 18px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%); opacity: 0; transition: var(--transition);
  }

  .nav.open { transform: translateY(0); opacity: 1; }
  .burger { display: flex; }

  .categories__grid { grid-template-columns: repeat(3, 1fr); }
  .category-card { padding: 16px 8px; }
  .category-card__name { font-size: 0.78rem; }

  .modal__specs { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 72px 0; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__stats { gap: 20px; }
  .catalog__grid { grid-template-columns: 1fr; }
}
