/* CHILLERS INTERACTIVE MENU — EASY TO CUSTOMISE */
:root {
  --bg: #101d17;
  --bg-2: #16261e;
  --panel: #1a2d23;
  --panel-2: #20362a;
  --emerald: #279e78;
  --emerald-bright: #4bcb9c;
  --gold: #ddbb79;
  --gold-light: #f6e2ac;
  --text: #faf7f0;
  --muted: #c7c2b3;
  --line: rgba(221,187,121,.38);
  --shadow: 0 25px 70px rgba(0,0,0,.35);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 5%, rgba(39,158,120,.22), transparent 32%),
    radial-gradient(circle at 90% 30%, rgba(221,187,121,.12), transparent 27%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
}
body.modal-open { overflow: hidden; }

button { font: inherit; cursor: pointer; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.ambient { position: fixed; width: 35vw; height: 35vw; filter: blur(100px); opacity: .12; pointer-events: none; z-index: -1; }
.ambient--one { background: var(--emerald); left: -15vw; top: 35vh; }
.ambient--two { background: var(--gold); right: -18vw; top: 65vh; }

.site-header {
  max-width: 1200px;
  margin: auto;
  padding: 28px 24px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand__eyebrow, .eyebrow {
  letter-spacing: .24em;
  font-size: .68rem;
  color: var(--gold);
  font-weight: 700;
}
.brand h1 {
  margin: 5px 0 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: .08em;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}
.brand h1 span { display: block; font-size: .58em; color: var(--gold-light); letter-spacing: .22em; }
.brand__logo { max-height: 46px; display: block; }

.promo-banner {
  max-width: 1200px; margin: 0 auto; padding: 10px 24px;
  text-align: center; font-size: .78rem; letter-spacing: .04em;
  color: var(--gold-light); background: rgba(221,187,121,.10);
  border-bottom: 1px solid var(--line);
}

.category-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16,29,23,.90);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(221,187,121,.16);
  border-bottom: 1px solid rgba(221,187,121,.16);
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  overflow-x: auto;
}
.category-nav button {
  white-space: nowrap;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  padding: 9px 14px;
  border-radius: 999px;
}
.category-nav button:hover, .category-nav button.active { color: var(--gold-light); border-color: var(--line); background: rgba(30,143,104,.12); }

.container { max-width: 1200px; margin: auto; padding: 0 24px 70px; }
.hero { text-align: center; padding: 85px 10px 70px; max-width: 780px; margin: auto; }
.hero h2 { margin: 10px 0; font-family: "Cormorant Garamond", serif; font-size: clamp(3.1rem, 8vw, 6.2rem); line-height: .88; font-weight: 600; }
.hero p:not(.eyebrow) { color: var(--muted); max-width: 560px; margin: 20px auto 30px; }
.hero__actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

.gold-button, .ghost-button {
  border-radius: 999px;
  padding: 13px 21px;
  transition: .2s ease;
}
.gold-button { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #102018; border: 0; font-weight: 800; }
.gold-button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(216,181,107,.18); }
.ghost-button { background: rgba(255,255,255,.03); color: var(--text); border: 1px solid var(--line); }

.menu-section { display: grid; gap: 65px; }
.menu-category__head { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.menu-category__number { color: var(--gold); border: 1px solid var(--line); width: 42px; height: 42px; display: grid; place-items: center; transform: rotate(45deg); flex: 0 0 auto; }
.menu-category__number span { transform: rotate(-45deg); }
.menu-category__head h3 { margin: 0; font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 5vw, 3rem); letter-spacing: .04em; }
.menu-category__line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.product-card {
  position: relative; overflow: hidden; background: linear-gradient(145deg, rgba(26,45,35,.96), rgba(18,32,25,.96));
  border: 1px solid rgba(221,187,121,.24); border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease;
}
.product-card:hover { transform: translateY(-5px); border-color: rgba(221,187,121,.6); }
.product-media { aspect-ratio: 4/5; position: relative; overflow: hidden; background: #172922; cursor: pointer; }
.product-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease, filter .5s ease; filter: brightness(.98) saturate(1.02); }
.product-card:hover .product-media img, .product-card:active .product-media img { transform: scale(1.04); filter: brightness(1.06) saturate(1.05); }
.play-badge {
  position: absolute; left: 14px; bottom: 14px; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(3,8,6,.78); border: 1px solid var(--gold);
  color: var(--gold-light); backdrop-filter: blur(8px);
}
.play-badge::after { content: ""; margin-left: 3px; border-left: 11px solid currentColor; border-top: 7px solid transparent; border-bottom: 7px solid transparent; }
.product-badge {
  position: absolute; right: 14px; top: 14px; padding: 5px 11px; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #102018;
  font-size: .66rem; font-weight: 800; letter-spacing: .04em;
}
.product-copy { padding: 18px; }
.product-top { display: flex; gap: 10px; justify-content: space-between; align-items: start; }
.product-name { margin: 0; font-family: "Cormorant Garamond", serif; font-size: 1.55rem; }
.product-price { color: var(--gold-light); font-weight: 800; white-space: nowrap; }
.product-description { color: var(--muted); font-size: .84rem; line-height: 1.6; margin: 8px 0 0; }
.product-tag { display: inline-block; color: var(--gold); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 7px; }

.video-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.video-modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.82); backdrop-filter: blur(10px); }
.video-card { position: relative; z-index: 1; width: min(900px, 100%); background: #16261e; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: 0 35px 100px rgba(0,0,0,.6); animation: modalIn .28s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(15px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; z-index: 4; right: 12px; top: 12px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(0,0,0,.55); color: white; font-size: 1.7rem; }
.video-wrap { position: relative; background: #000; aspect-ratio: 16/9; }
.video-wrap video, .video-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-fallback { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; background: radial-gradient(circle, #1e4a37, #0f1e17 70%); color: var(--gold-light); }
.video-fallback span { font-family: "Cormorant Garamond", serif; font-size: 2rem; }
.video-fallback small { color: var(--muted); margin-top: 5px; }
.video-info { padding: 22px; }
.video-info__category { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .66rem; }
.video-info h3 { margin: 5px 0; font-family: "Cormorant Garamond", serif; font-size: 2.2rem; }
.video-info p { color: var(--muted); margin: 0; line-height: 1.6; }
.video-info__bottom { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 18px; }
.video-info__bottom strong { color: var(--gold-light); font-size: 1.15rem; }
.video-info__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tag-chip { border: 1px solid var(--line); color: var(--gold-light); border-radius: 999px; padding: 4px 11px; font-size: .68rem; letter-spacing: .04em; }
.video-info__allergens { color: var(--muted); font-size: .78rem; margin-top: 10px; }

footer { max-width: 1200px; margin: auto; padding: 0 24px 35px; text-align: center; color: var(--muted); }
.footer-line { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); margin-bottom: 25px; }
footer p { color: var(--gold); letter-spacing: .18em; font-size: .72rem; }
footer small { font-size: .7rem; }
.footer-hours { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; font-size: .76rem; color: var(--muted); margin-bottom: 10px; }
.footer-social { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 14px; }
.footer-social a { color: var(--gold-light); font-size: .76rem; text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.footer-social a:hover { color: var(--gold); }

@media (max-width: 850px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .site-header { padding: 20px 16px 14px; }
  .category-nav { justify-content: flex-start; }
  .container { padding-inline: 16px; }
  .hero { padding: 65px 0 50px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-media { aspect-ratio: 16/11; }
  .menu-category__head h3 { font-size: 2.1rem; }
  .menu-category__number { width: 35px; height: 35px; }
  .video-card { border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .product-card:hover { transform: none; }
  .product-card:hover .product-media img, .product-card:active .product-media img { transform: none; }
}
