/* ═══════════════════════════════════════════════════════════
   TASTE OF INDIA — MALTA  |  Main Stylesheet
   Colors: Crimson #6B0F1A · Gold #C9A84C · Cream #F5EDD8
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;500;600;700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Great+Vibes&display=swap');

:root {
  --crimson:    #6B0F1A;
  --crimson-dk: #4A0810;
  --crimson-lt: #8B1A1A;
  --gold:       #C9A84C;
  --gold-lt:    #E8C97A;
  --gold-dk:    #8B6914;
  --cream:      #F5EDD8;
  --parchment:  #EFE3C4;
  --ink:        #1C1008;
  --smoke:      #3A2E1E;
  --white:      #FFFDF7;
  --nav-h:      72px;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: 'EB Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--crimson-dk); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  width: 100%;
  height: var(--nav-h);
  background: rgba(74, 8, 16, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  height: 58px;
  background: rgba(74, 8, 16, 1);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  flex-shrink: 0;
}
.navbar.scrolled .nav-logo-img { height: 42px; }
@media (max-width: 768px) {
  .nav-logo-img { height: 42px; max-width: 150px; }
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nav-logo-text {
  font-family: 'Cinzel', serif;
  color: var(--gold-lt);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 10px;
  color: rgba(232,201,122,0.7);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 32px; list-style: none; align-items: center;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  color: rgba(232,201,122,0.85);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-links a:hover::after { right: 0; }
.nav-order-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--crimson-dk) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-order-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.nav-order-btn::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--gold-lt);
  transition: all 0.3s ease;
}
.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); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; top: var(--nav-h);
  background: rgba(74, 8, 16, 0.98);
  z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold-lt);
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .mob-order-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--crimson-dk);
  padding: 14px 40px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 16px;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(74,8,16,0.82) 0%, rgba(28,16,8,0.65) 60%, rgba(28,16,8,0.85) 100%),
    url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?w=1800&auto=format&fit=crop') center/cover no-repeat;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 20px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}
.hero h1 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--white);
  font-size: clamp(42px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s 0.15s ease both;
}
.hero h1 em {
  color: var(--gold-lt);
  font-style: normal;
  font-family: 'Great Vibes', cursive;
  font-size: 1.1em;
  display: block;
  margin-top: -10px;
}
.hero-sub {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s 0.25s ease both;
}
.hero-tagline {
  color: rgba(245,237,216,0.8);
  font-size: 18px;
  font-style: italic;
  max-width: 500px;
  margin: 0 auto 48px;
  animation: fadeInUp 0.8s 0.35s ease both;
}
.hero-divider {
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  animation: fadeInUp 0.8s 0.45s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--crimson-dk);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--gold-lt);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  border: 1px solid rgba(201,168,76,0.5);
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}
.hero-info {
  position: absolute; bottom: 40px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 48px;
  animation: fadeInUp 0.8s 0.55s ease both;
}
.hero-info-item {
  text-align: center;
}
.hero-info-item .label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.hero-info-item .value {
  color: var(--white);
  font-size: 14px;
}
.scroll-indicator {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(201,168,76,0.6);
  font-size: 10px;
  letter-spacing: 2px;
  font-family: 'Cinzel', serif;
  animation: bounce 2s infinite;
}
.scroll-indicator::after {
  content: '↓';
  font-size: 18px;
  color: var(--gold);
}

/* ══════════════════════════════════════
   SECTION SHARED STYLES
══════════════════════════════════════ */
.section {
  padding: 80px 20px;
  width: 100%;
  max-width: 100%;
}
.section-cream { background: var(--cream); }
.section-dark {
  background: linear-gradient(180deg, var(--crimson-dk) 0%, #2A0508 100%);
  color: var(--cream);
}
.section-parchment { background: var(--parchment); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.container-wide {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--crimson-dk);
  margin-bottom: 16px;
  line-height: 1.1;
}
.section-dark .section-title { color: var(--gold-lt); }
.section-title em {
  font-style: normal;
  font-family: 'Great Vibes', cursive;
  font-size: 1.2em;
}
.section-line {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}
.section-subtitle {
  font-style: italic;
  color: var(--smoke);
  margin-top: 12px;
  font-size: 16px;
}
.section-dark .section-subtitle { color: rgba(232,201,122,0.7); }

/* ══════════════════════════════════════
   ABOUT STRIP
══════════════════════════════════════ */
.about-strip {
  background: var(--crimson-dk);
  padding: 28px 40px;
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 24px;
  width: 100%;
  max-width: 100%;
}
.about-strip-item {
  display: flex; align-items: center; gap: 14px;
  color: var(--cream);
}
.about-strip-item .icon {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.about-strip-item strong {
  font-family: 'Cinzel', serif;
  color: var(--gold-lt);
  font-size: 14px;
  display: block;
}
.about-strip-item span { font-size: 13px; opacity: 0.8; }

/* ══════════════════════════════════════
   MENU SECTION
══════════════════════════════════════ */
.menu-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 48px;
}
.menu-tab {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent;
  color: rgba(232,201,122,0.7);
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 2px;
}
.menu-tab:hover { border-color: var(--gold); color: var(--gold-lt); }
.menu-tab.active {
  background: var(--gold);
  color: var(--crimson-dk);
  border-color: var(--gold);
  font-weight: 700;
}

.menu-category { display: none; }
.menu-category.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.menu-card {
  background: rgba(255,253,247,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 20px;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.menu-card:hover {
  border-color: rgba(201,168,76,0.5);
  background: rgba(255,253,247,0.08);
}
.menu-card.featured {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.05);
}
.menu-card.featured::before {
  content: '★ CHEF\'S PICK';
  position: absolute; top: -10px; left: 16px;
  background: var(--gold);
  color: var(--crimson-dk);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 2px 10px;
}
.menu-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px; margin-bottom: 8px;
}
.menu-card-name {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--gold-lt);
  font-weight: 600;
  line-height: 1.3;
}
.menu-card-price {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}
.menu-card-desc {
  font-style: italic;
  font-size: 13px;
  color: rgba(232,201,122,0.65);
  margin-bottom: 8px;
}
.menu-card-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 2px;
  margin-right: 4px;
  margin-top: 4px;
}
.tag-veg { background: rgba(34,139,34,0.2); color: #90EE90; border: 1px solid rgba(34,139,34,0.3); }
.tag-nonveg { background: rgba(180,30,30,0.2); color: #FFB3B3; border: 1px solid rgba(180,30,30,0.3); }
.tag-spicy { background: rgba(255,100,0,0.15); color: #FFAA70; border: 1px solid rgba(255,100,0,0.2); }

/* View Full Menu Button */
.menu-pdf-link {
  text-align: center;
  margin-top: 40px;
}

/* ══════════════════════════════════════
   SPECIALS / HIGHLIGHT CARDS
══════════════════════════════════════ */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.special-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(28,16,8,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}
.special-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,16,8,0.2);
}
.special-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--crimson-dk), var(--crimson-lt));
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}
.special-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.special-card-body { padding: 20px; }
.special-card-name {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--crimson-dk);
  font-weight: 600;
  margin-bottom: 6px;
}
.special-card-desc {
  font-size: 13px;
  color: var(--smoke);
  font-style: italic;
  margin-bottom: 12px;
}
.special-card-price {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: var(--gold-dk);
  font-weight: 700;
}

/* ══════════════════════════════════════
   ORDER / WHATSAPP SECTION
══════════════════════════════════════ */
.order-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--crimson-dk) 0%, #1A0305 100%);
  position: relative;
  overflow: hidden;
}
.order-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 2 L58 30 L30 58 L2 30 Z' fill='none' stroke='rgba(201,168,76,0.06)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.order-section-inner { position: relative; z-index: 1; }
.order-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(28px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 16px;
}
.order-subtitle {
  color: rgba(232,201,122,0.8);
  font-size: 18px;
  font-style: italic;
  max-width: 500px;
  margin: 0 auto 40px;
}
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366;
  color: white;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 44px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.whatsapp-btn svg { width: 24px; height: 24px; fill: white; }

.order-options {
  display: flex; justify-content: center; gap: 32px;
  margin-top: 48px; flex-wrap: wrap;
}
.order-option {
  display: flex; align-items: center; gap: 10px;
  color: rgba(232,201,122,0.7);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
}
.order-option .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ══════════════════════════════════════
   LOCATION / CONTACT SECTION
══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info { }
.contact-item {
  display: flex; gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dk));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.3);
}
.contact-item-text strong {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--crimson);
  display: block;
  margin-bottom: 4px;
}
.contact-item-text p {
  font-size: 15px;
  color: var(--smoke);
  line-height: 1.5;
}
.contact-item-text a {
  color: var(--crimson);
  text-decoration: none;
  font-weight: 600;
}
.contact-item-text a:hover { text-decoration: underline; }

.map-container {
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.3);
  box-shadow: 0 8px 32px rgba(28,16,8,0.15);
  height: 380px;
}
.map-container iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--crimson-dk);
  padding: 48px 40px 28px;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 28px;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.footer-tagline {
  font-style: italic;
  color: rgba(232,201,122,0.6);
  font-size: 14px;
  margin-bottom: 24px;
}
.footer-links {
  display: flex; justify-content: center; gap: 32px;
  flex-wrap: wrap; margin-bottom: 28px;
}
.footer-links a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(232,201,122,0.6);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-lt); }
.footer-divider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 20px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(232,201,122,0.4);
}

/* ══════════════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════════════ */
.float-wa {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 2s infinite;
}
.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.7);
  animation: none;
}
.float-wa svg { width: 30px; height: 30px; fill: white; }
.float-wa-label {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.75);
  color: white;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-wa:hover .float-wa-label { opacity: 1; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.1); }
}

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

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (max 900px)
══════════════════════════════════════ */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .map-container {
    height: 300px;
  }
  .specials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
══════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  .navbar {
    padding: 0 16px;
    height: 60px;
  }
  :root { --nav-h: 60px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo-text { display: none; }
  .nav-logo-img { height: 40px; width: 100px; }

  /* ── HERO ── */
  .hero {
    padding: 100px 16px 60px;
    min-height: 100svh;
  }
  .hero-badge {
    font-size: 10px;
    letter-spacing: 3px;
    padding: 5px 14px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(36px, 11vw, 60px);
    letter-spacing: 0;
  }
  .hero h1 em {
    font-size: 1.05em;
    margin-top: -6px;
  }
  .hero-sub {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 12px;
  }
  .hero-tagline {
    font-size: 15px;
    margin-bottom: 32px;
    padding: 0 8px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 15px 24px;
    font-size: 12px;
  }
  .hero-info { display: none; }
  .scroll-indicator { display: none; }

  /* ── ABOUT STRIP ── */
  .about-strip {
    padding: 20px 16px;
    gap: 16px;
    justify-content: flex-start;
    flex-direction: column;
  }
  .about-strip-item {
    width: 100%;
  }

  /* ── SECTIONS ── */
  .section { padding: 52px 16px; }
  .section-header { margin-bottom: 36px; }
  .section-eyebrow { font-size: 10px; letter-spacing: 4px; }

  /* ── MENU ── */
  .menu-tabs {
    gap: 6px;
    margin-bottom: 32px;
  }
  .menu-tab {
    font-size: 10px;
    padding: 8px 14px;
    letter-spacing: 1px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .menu-card { padding: 16px; }
  .menu-card-name { font-size: 13px; }
  .menu-card-price { font-size: 15px; }
  .menu-card-desc { font-size: 12px; }

  /* ── SPECIALS ── */
  .specials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .special-card-img { height: 160px; }

  /* ── ORDER SECTION ── */
  .order-section { padding: 60px 16px; }
  .order-subtitle { font-size: 15px; padding: 0 8px; }
  .whatsapp-btn {
    padding: 16px 28px;
    font-size: 13px;
    letter-spacing: 1px;
  }
  .order-options {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* ── CONTACT ── */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .map-container { height: 260px; }
  .contact-icon { width: 38px; height: 38px; font-size: 16px; }

  /* ── FOOTER ── */
  .footer { padding: 40px 16px 24px; }
  .footer-logo { font-size: 22px; }
  .footer-links {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }
  .footer-links a { font-size: 10px; }

  /* ── FLOAT BUTTON ── */
  .float-wa {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 16px;
  }
  .float-wa svg { width: 26px; height: 26px; }
  .float-wa-label { display: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL PHONES (max 400px)
══════════════════════════════════════ */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 32px;
  }
  .menu-tab {
    font-size: 9px;
    padding: 7px 10px;
  }
  .whatsapp-btn {
    padding: 14px 20px;
    font-size: 12px;
  }
  .section { padding: 44px 12px; }
}

/* ══════════════════════════════════════
   ADD TO CART BUTTON (on menu cards)
══════════════════════════════════════ */
.add-to-cart-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 9px 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--crimson-dk);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}
.add-to-cart-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.add-to-cart-btn:active { transform: scale(0.97); }

/* ══════════════════════════════════════
   SPICY MODAL
══════════════════════════════════════ */
.spicy-modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10, 2, 2, 0.75);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.spicy-modal-overlay.open { display: flex; }

.spicy-modal {
  background: linear-gradient(160deg, #2A0508, #1C1008);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 8px;
  padding: 32px 28px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}
.spicy-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none;
  color: rgba(232,201,122,0.6);
  font-size: 18px; cursor: pointer;
  transition: color 0.2s;
}
.spicy-modal-close:hover { color: var(--gold-lt); }

.spicy-modal-title {
  font-family: 'Cinzel', serif;
  color: var(--gold-lt);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  padding-right: 24px;
  line-height: 1.4;
}
.spicy-modal-price {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}
.spicy-options { margin-bottom: 20px; }
.spicy-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(232,201,122,0.7);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.spicy-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.spicy-opt {
  flex: 1; min-width: 90px;
  padding: 9px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  color: rgba(232,201,122,0.7);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.spicy-opt:hover { border-color: var(--gold); color: var(--gold-lt); }
.spicy-opt.active {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  color: var(--gold-lt);
  font-weight: 700;
}

.qty-row {
  display: flex; align-items: center; justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.qty-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  background: rgba(255,255,255,0.05);
  color: var(--gold-lt);
  font-size: 22px; line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); }
.qty-val {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  min-width: 32px;
  text-align: center;
}
.modal-add-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--crimson-dk);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.modal-add-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

/* ══════════════════════════════════════
   CART BUBBLE (floating button)
══════════════════════════════════════ */
.cart-bubble {
  display: none;
  position: fixed;
  bottom: 90px; right: 20px;
  background: var(--crimson);
  color: var(--gold-lt);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 10px 18px;
  cursor: pointer;
  z-index: 900;
  align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s;
  letter-spacing: 1px;
}
.cart-bubble:hover { transform: scale(1.05); }
.cart-bubble-count {
  background: var(--gold);
  color: var(--crimson-dk);
  border-radius: 50%;
  min-width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 900;
}
@media (max-width: 768px) {
  .cart-bubble { bottom: 80px; right: 12px; font-size: 12px; padding: 9px 14px; }
}

/* ══════════════════════════════════════
   CART PANEL (slide-in from right)
══════════════════════════════════════ */
.cart-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1500;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { display: block; }

.cart-panel {
  position: fixed;
  top: 0; right: -420px; bottom: 0;
  width: 100%; max-width: 420px;
  background: linear-gradient(180deg, #2A0508 0%, #1C1008 100%);
  border-left: 1px solid rgba(201,168,76,0.3);
  z-index: 1600;
  display: flex; flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}
.cart-panel.open { right: 0; }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  flex-shrink: 0;
}
.cart-title {
  font-family: 'Cinzel', serif;
  color: var(--gold-lt);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}
.cart-close {
  background: none; border: none;
  color: rgba(232,201,122,0.6);
  font-size: 20px; cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.cart-close:hover { color: var(--gold-lt); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
}
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 2px; }

.cart-empty {
  text-align: center;
  color: rgba(232,201,122,0.5);
  font-style: italic;
  font-size: 15px;
  margin-top: 60px;
  line-height: 2;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: 'Cinzel', serif;
  color: var(--gold-lt);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}
.cart-item-spicy {
  font-size: 12px;
  color: rgba(232,201,122,0.55);
  font-style: italic;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.cart-qty-btn {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-lt);
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}
.cart-qty-btn:hover { background: rgba(201,168,76,0.15); }
.cart-item-qty {
  font-family: 'Cinzel', serif;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}
.cart-item-price {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  min-width: 52px;
  text-align: right;
}
.cart-remove-btn {
  background: none; border: none;
  color: rgba(232,201,122,0.35);
  font-size: 13px; cursor: pointer;
  padding: 2px 4px;
  transition: color 0.15s;
  line-height: 1;
}
.cart-remove-btn:hover { color: #ff6b6b; }

.cart-footer {
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 16px;
  flex-shrink: 0;
  background: rgba(0,0,0,0.25);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cinzel', serif;
  color: var(--cream);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.cart-note-row { margin-bottom: 14px; }
#cart-note {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  color: var(--cream);
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  padding: 8px 10px;
  resize: none;
  transition: border-color 0.2s;
}
#cart-note:focus { outline: none; border-color: var(--gold); }
#cart-note::placeholder { color: rgba(232,201,122,0.3); }

.cart-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: white;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.cart-wa-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.cart-clear-btn {
  display: block; width: 100%;
  padding: 9px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.2);
  color: rgba(232,201,122,0.4);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.cart-clear-btn:hover {
  border-color: rgba(255,100,100,0.4);
  color: rgba(255,100,100,0.7);
}

/* ══════════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════════ */
.cart-toast {
  position: fixed;
  bottom: 160px; right: 20px;
  background: var(--crimson-dk);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-lt);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 10px 18px;
  border-radius: 50px;
  z-index: 2000;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  white-space: nowrap;
}
.cart-toast.show { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
  .cart-toast { bottom: 140px; right: 12px; font-size: 11px; }
}

/* ══════════════════════════════════════
   SPECIAL CARD — REAL IMAGES
══════════════════════════════════════ */
.special-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: var(--crimson-dk);
}
.special-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.special-card:hover .special-card-img img {
  transform: scale(1.06);
}

/* ══════════════════════════════════════
   GALLERY TEASER — 4 PREVIEW THUMBS
══════════════════════════════════════ */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.gallery-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--crimson-dk);
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74,8,16,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  color: var(--gold-lt);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}
.btn-gallery-open {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-lt));
  color: var(--gold-lt);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50px;
  padding: 15px 40px;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(107,15,26,0.35);
}
.btn-gallery-open:hover {
  background: linear-gradient(135deg, var(--crimson-lt), var(--crimson));
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(107,15,26,0.45);
  color: #fff;
}
@media (max-width: 600px) {
  .gallery-preview { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ══════════════════════════════════════
   GALLERY MODAL (full overlay)
══════════════════════════════════════ */
.gallery-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 99990;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 20px 16px 40px;
}
.gallery-modal-overlay.open { display: flex; }
.gallery-modal {
  background: #1a0a00;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 18px;
  width: 100%;
  max-width: 860px;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.gallery-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  background: rgba(74,8,16,0.6);
  position: sticky;
  top: 0;
  z-index: 2;
}
.gallery-modal-title {
  font-family: 'Cinzel', serif;
  color: var(--gold-lt);
  font-size: 15px;
  letter-spacing: 2px;
}
.gallery-modal-close {
  background: rgba(181,18,27,0.8);
  border: none;
  color: #fff;
  font-size: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.gallery-modal-close:hover { background: var(--crimson); }
.gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--crimson-dk);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74,8,16,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Cinzel', serif;
  color: var(--gold-lt);
  font-size: 13px;
  letter-spacing: 2px;
  border: 1px solid var(--gold-lt);
  padding: 7px 16px;
  border-radius: 50px;
}
@media (max-width: 600px) {
  .gallery-modal-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 12px; }
  .gallery-modal { border-radius: 14px; }
}

/* ── Lightbox (full image) ── */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 100000;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.open { display: flex; }
.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  text-align: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  display: block;
  margin: 0 auto;
}
.lightbox-caption {
  font-family: 'Cinzel', serif;
  color: var(--gold-lt);
  font-size: 13px;
  letter-spacing: 2px;
  margin-top: 14px;
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 16px; right: 16px;
  background: rgba(181,18,27,0.9);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 100001;
}
.lightbox-close:hover { background: var(--crimson); }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 34px;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 100001;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(181,18,27,0.75); }
@media (max-width: 480px) {
  .lightbox-prev { left: 6px; width: 40px; height: 40px; font-size: 26px; }
  .lightbox-next { right: 6px; width: 40px; height: 40px; font-size: 26px; }
}

/* ══════════════════════════════════════
   GLOBAL MOBILE OVERFLOW FIX
══════════════════════════════════════ */
@media (max-width: 768px) {
  html, body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  section, div, header, footer, nav {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .about-strip {
    padding: 20px 16px !important;
    width: 100% !important;
  }
  .section {
    padding: 52px 16px !important;
    width: 100% !important;
  }
  .gallery-modal {
    width: calc(100vw - 24px) !important;
    margin: 12px auto !important;
    border-radius: 12px !important;
  }
  .gallery-modal-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    padding: 12px !important;
  }
  .gallery-preview {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
}

/* ══════════════════════════════════════
   OPENING HOURS STATUS
══════════════════════════════════════ */
.hours-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hours-status-badge.open {
  background: rgba(76,175,80,0.15);
  border: 1px solid rgba(76,175,80,0.5);
  color: #81c784;
}
.hours-status-badge.closed {
  background: rgba(181,18,27,0.2);
  border: 1px solid rgba(181,18,27,0.5);
  color: #ef9a9a;
}
.hours-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hours-status-badge.open .hours-status-dot {
  background: #4caf50;
  box-shadow: 0 0 0 3px rgba(76,175,80,0.3);
  animation: pulse-green 2s infinite;
}
.hours-status-badge.closed .hours-status-dot {
  background: #b5121b;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(76,175,80,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(76,175,80,0.1); }
}

.closed-notice {
  background: rgba(181,18,27,0.12);
  border: 1px solid rgba(181,18,27,0.35);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  max-width: 480px;
  width: 100%;
  text-align: left;
}
.closed-notice-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.closed-notice-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.closed-notice-text strong {
  font-family: 'Cinzel', serif;
  color: #ef9a9a;
  font-size: 14px;
  letter-spacing: 1px;
}
.closed-notice-text span {
  color: rgba(232,201,122,0.7);
  font-size: 13px;
  line-height: 1.6;
}
.closed-notice-text span strong {
  color: var(--gold-lt);
  font-family: inherit;
  font-size: inherit;
  letter-spacing: 0;
}

/* Disabled order button state */
.whatsapp-btn.btn-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(60%);
}
