/* ==============================================
   CHEERS N SPIRITS — styles.css
   ============================================== */

/* -- Variables -------------------------------- */
:root {
  --gold:       #D4A853;
  --gold-light: #E8C87A;
  --gold-dark:  #B8892F;
  --bg:         #0a0a0a;
  --bg-2:       #111111;
  --bg-card:    #181818;
  --bg-gray:    #f5f4f0;
  --border:     #2a2a2a;
  --text:       #f0ece4;
  --text-muted: #888;
  --text-dark:  #1a1a1a;
  --green:      #2ecc71;
  --red:        #e74c3c;
  --radius:     12px;
  --radius-sm:  6px;
  --shadow:     0 4px 24px rgba(0,0,0,0.35);
  --shadow-gold:0 0 24px rgba(212,168,83,0.25);
  --transition: 0.25s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

/* -- Reset ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select { font-family: inherit; }
em { font-style: italic; color: var(--gold); }

/* -- Scrollbar -------------------------------- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ============================================== */
/*  UTILITIES                                     */
/* ============================================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-dark { background: var(--bg-2); }
.section-gray { background: var(--bg-gray); color: var(--text-dark); }
.section-gray em { color: var(--gold-dark); }

.section-head { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.allocated-eyebrow { color: #f0d060; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-title.light { color: var(--text); }
.section-sub { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-sub.light { color: #aaa; }
.section-gray .section-sub { color: #666; }

/* ============================================== */
/*  BUTTONS                                       */
/* ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-sm { padding: 7px 16px; font-size: 13px; }

.btn-gold {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.btn-doordash-nav {
  background: #ff3008;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
}
.btn-doordash-nav:hover { background: #e02500; transform: translateY(-1px); }

/* ============================================== */
/*  MODALS                                        */
/* ============================================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-overlay { display: flex; }

/* Age Modal */
.age-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
}
.age-logo { margin-bottom: 28px; }
.age-logo .logo-text {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
}
.age-logo p { color: var(--text-muted); font-size: 13px; margin-top: 4px; }
.age-modal h2 { font-family: var(--font-serif); font-size: 26px; margin-bottom: 10px; }
.age-modal > p { color: var(--text-muted); margin-bottom: 28px; }
.age-btns { display: flex; gap: 12px; justify-content: center; margin-bottom: 20px; }
.age-fine { font-size: 11px; color: #555; line-height: 1.5; }

/* Product Modal */
.product-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--border);
  color: var(--text);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 16px;
  z-index: 10;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--gold); color: #000; }
.modal-product-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
}
.modal-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius) 0 0 var(--radius);
}
.modal-info { padding: 32px; }
.modal-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.modal-name { font-family: var(--font-serif); font-size: 22px; margin-bottom: 8px; color: var(--text); }
.size-badge { font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 1px; background: rgba(212,168,83,0.15); color: var(--gold); border: 1px solid rgba(212,168,83,0.4); padding: 3px 10px; border-radius: 20px; flex-shrink: 0; }
.modal-sizes { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.modal-category { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.modal-description { font-size: 14px; color: #bbb; line-height: 1.7; margin-bottom: 20px; }
.modal-meta { border-top: 1px solid var(--border); padding-top: 16px; }
.modal-meta p { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.modal-meta strong { color: var(--text); }

/* ============================================== */
/*  NAVBAR                                        */
/* ============================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 64px;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  flex: 1;
}
.nav-links a {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--gold); background: rgba(212,168,83,0.08); }
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================== */
/*  HERO                                          */
/* ============================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,5,0,0.92) 0%, rgba(20,10,0,0.75) 50%, rgba(10,5,0,0.88) 100%),
    url('https://images.unsplash.com/photo-1575023782549-62ca0d244b39?auto=format&fit=crop&w=1920&q=80')
    center/cover no-repeat;
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 24px;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,168,83,0.4);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 9vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255,255,255,0.72);
  letter-spacing: 1px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: bounce 1.8s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}

/* ============================================== */
/*  TICKER / MARQUEE                              */
/* ============================================== */
.ticker-wrap {
  background: var(--gold);
  color: #000;
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 28px;
  animation: ticker 40s linear infinite;
}
.ticker-track span { font-size: 13px; font-weight: 600; }
.ticker-track .sep { color: rgba(0,0,0,0.35); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================== */
/*  LOADING BAR                                   */
/* ============================================== */
.loading-bar {
  height: 3px;
  background: var(--border);
  position: sticky;
  top: 64px;
  z-index: 900;
}
.loading-progress {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.4s ease;
}

/* ============================================== */
/*  PRODUCT CARDS                                 */
/* ============================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.catalog-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

/* Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: var(--gold);
}
.section-gray .product-card {
  background: #fff;
  border-color: #e5e5e5;
}
.section-gray .product-card:hover { border-color: var(--gold-dark); }

/* Allocated cards have a special gold glow */
.product-card.allocated-card {
  border-color: rgba(212,168,83,0.4);
  background: linear-gradient(145deg, #1c1610, #181818);
}
.product-card.allocated-card:hover { box-shadow: 0 12px 40px rgba(212,168,83,0.2); }

.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #111;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .card-img { transform: scale(1.05); }

/* Badges on card image */
.card-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.badge-bestseller { background: var(--gold); color: #000; }
.badge-allocated  { background: #c0392b; color: #fff; }
.badge-new        { background: #27ae60; color: #fff; }
.badge-ranka      { background: #2980b9; color: #fff; }

/* Card body */
.card-body {
  padding: 14px 16px 16px;
}
.card-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.section-gray .card-category { color: var(--gold-dark); }
.card-name {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.section-gray .card-name { color: var(--text-dark); }
.card-stock {
  font-size: 12px;
  color: var(--text-muted);
}
.card-stock .in-stock { color: var(--green); }
.card-stock .low-stock { color: var(--gold); }
.card-footer {
  padding: 0 16px 14px;
}
.card-btn {
  width: 100%;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  transition: all var(--transition);
}
.product-card:hover .card-btn {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,168,83,0.07);
}
.section-gray .card-btn { color: #666; border-color: #ddd; }
.section-gray .product-card:hover .card-btn { border-color: var(--gold-dark); color: var(--gold-dark); background: rgba(212,168,83,0.05); }

/* ============================================== */
/*  SKELETON LOADING                              */
/* ============================================== */
.skel-card {
  border-radius: var(--radius);
  height: 300px;
  background: linear-gradient(90deg, #1e1e1e 25%, #262626 50%, #1e1e1e 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skel-card.dark {
  background: linear-gradient(90deg, #141414 25%, #1c1c1c 50%, #141414 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================== */
/*  CATALOG CONTROLS                              */
/* ============================================== */
.catalog-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
}
.search-input {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  padding: 10px 40px 10px 16px;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color var(--transition);
}
.search-input:focus { outline: none; border-color: var(--gold-dark); }
.search-icon {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
}
.sort-select {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color var(--transition);
}
.sort-select:focus { outline: none; border-color: var(--gold-dark); }

/* Category tabs */
.cat-tabs-wrap { overflow-x: auto; margin-bottom: 16px; padding-bottom: 4px; }
.cat-tabs-wrap::-webkit-scrollbar { height: 3px; }
.cat-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 2px;
  background: #e8e6e0;
  border-radius: 8px;
  white-space: nowrap;
}
.tab {
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  background: none;
  color: #666;
  transition: all var(--transition);
}
.tab:hover { color: var(--text-dark); background: rgba(0,0,0,0.06); }
.tab.active {
  background: var(--gold-dark);
  color: #fff;
  font-weight: 600;
}

.product-count {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}

.load-more-wrap { text-align: center; margin-top: 36px; }
.load-more-wrap .btn-outline { border-color: #bbb; color: #555; }
.load-more-wrap .btn-outline:hover { border-color: var(--gold-dark); color: var(--gold-dark); }

/* ============================================== */
/*  EVENTS SECTION                                */
/* ============================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.event-img-strip {
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.event-body { padding: 22px; }
.event-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.event-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.event-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.event-featured { font-size: 13px; color: #aaa; margin-bottom: 8px; }
.event-featured strong { color: var(--gold); }
.event-tickets { font-size: 13px; color: #aaa; }
.event-tickets strong { color: var(--green); }

.no-events { text-align: center; padding: 48px 0; color: var(--text-muted); }
.no-events p { margin-bottom: 16px; font-size: 16px; }
.events-admin-link { text-align: center; }

/* ============================================== */
/*  STORE INFO                                    */
/* ============================================== */
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.store-card {
  background: #161616;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--transition);
}
.store-card:hover { border-color: rgba(212,168,83,0.4); }
.featured-card {
  border-color: rgba(212,168,83,0.3);
  background: linear-gradient(145deg, #1a1508, #161616);
}
.store-icon { font-size: 36px; margin-bottom: 14px; }
.store-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}
.store-card p { font-size: 14px; color: #aaa; line-height: 1.6; margin-bottom: 16px; }

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #222;
  font-size: 14px;
  color: #ccc;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:last-child { color: var(--gold); font-weight: 500; }

.open-status {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}
.open-status.open  { background: rgba(46,204,113,0.15); color: var(--green); border: 1px solid rgba(46,204,113,0.3); }
.open-status.closed { background: rgba(231,76,60,0.15); color: var(--red); border: 1px solid rgba(231,76,60,0.3); }

.delivery-perks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.delivery-perks span {
  font-size: 13px;
  color: #aaa;
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 20px;
}

.delivery-note { font-size: 11px; color: #555; margin-top: 8px; }
.address-text { font-size: 14px; color: #bbb; line-height: 1.7; }
.phone-link { color: var(--gold); }
.phone-link:hover { text-decoration: underline; }

/* ============================================== */
/*  FOOTER                                        */
/* ============================================== */
.footer {
  background: #050505;
  border-top: 1px solid #1a1a1a;
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; color: #555; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 14px; color: #555; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.social-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.social-links a { font-size: 14px; color: #555; transition: color var(--transition); }
.social-links a:hover { color: var(--gold); }
.store-hours-mini p { font-size: 13px; color: #555; }
.store-hours-mini strong { color: var(--text-muted); }
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.disclaimer { font-size: 13px; color: #444; }
.copyright { font-size: 13px; color: #333; }

/* ============================================== */
/*  RESPONSIVE                                    */
/* ============================================== */
@media (max-width: 1024px) {
  .store-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal-product-inner { grid-template-columns: 1fr; }
  .modal-img { height: 260px; border-radius: var(--radius) var(--radius) 0 0; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 16px 24px 24px; border-bottom: 1px solid var(--border); gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 10px 16px; }
  .hamburger { display: flex; }
  .store-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .age-modal { padding: 36px 24px; }
  .age-btns { flex-direction: column; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-title { font-size: 44px; }
  .catalog-controls { flex-direction: column; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card-img-wrap { height: 170px; }
}
