/* ═══════════════════════════════════════════
   Café Snack L'Agora — Premium Digital Menu
   ═══════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Great+Vibes&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-deep: #0f0f0f;
  --bg-panel: #161616;
  --bg-panel-hover: #1c1c1c;
  --gold: #d4af37;
  --gold-light: #f0d878;
  --gold-muted: #8a7e5a;
  --gold-desc: #b8a88a;
  --gold-dot: #5c4d26;
  --text-white: #f5f5f5;
  --text-gray: #a0a0a0;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', 'Segoe UI', sans-serif;
  --font-script: 'Great Vibes', cursive;
  --border-gold: 1px solid #d4af37;
  --border-gold-2: 2px solid #d4af37;
  --radius: 6px;
  --radius-img: 12px;
  --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-deep);
  color: var(--text-white);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle noise texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background: 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)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  padding: 2.5rem 1rem 3rem;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: 4px;
}
.section-header .section-line {
  width: 80px; height: 2px; margin: 0.8rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-header .section-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

/* ═══════════════════════
   NAVIGATION
   ═══════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,15,15,0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.1);
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(15,15,15,0.95);
  border-bottom: 1px solid rgba(212,175,55,0.3);
  padding: 0.2rem 1.5rem;
}
.navbar .nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-logo { height: 45px; width: auto; transition: height 0.3s ease; }
.navbar.scrolled .nav-logo { height: 35px; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-white); transition: color var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -5px; left: 0;
  width: 0%; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; z-index: 1001; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); margin: 5px 0;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ═══════════════════════
   MOBILE MENU DROPDOWN (Normal Nav)
   ═══════════════════════ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(15,15,15,0.98);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 1rem 0;
  transform: translateY(-150%);
  opacity: 0;
  transition: all 0.3s ease;
  visibility: hidden;
  pointer-events: none;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-white);
  padding: 1rem 2rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--gold);
  padding-left: 2.5rem;
  background: rgba(212,175,55,0.05);
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* ═══════════════════════
   HERO SECTION
   ═══════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: url('../assets/images/hero-bg.png') center/cover no-repeat;
  color: var(--text-white);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,15,15,0.8) 0%, rgba(15,15,15,0.5) 50%, rgba(15,15,15,0.95) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 2rem;
  animation: fadeInUp 1s ease forwards;
}
.hero-logo {
  width: 320px; height: auto; margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 30px rgba(212,175,55,0.3));
  animation: logoGlow 3s ease-in-out infinite alternate;
}
@keyframes logoGlow {
  0% { filter: drop-shadow(0 0 20px rgba(212,175,55,0.2)); }
  100% { filter: drop-shadow(0 0 40px rgba(212,175,55,0.5)); }
}
.hero-tagline {
  font-family: var(--font-script);
  font-size: 3rem; color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-address, .hero-phone {
  font-family: var(--font-sans);
  font-size: 1rem; color: var(--text-gray);
  letter-spacing: 1.5px; margin-bottom: 0.5rem;
}
.hero-phone a {
  color: var(--gold-light);
  transition: color 0.2s;
}
.hero-phone a:hover { color: #fff; text-shadow: 0 0 10px var(--gold); }

.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; font-size: 0.9rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 0 var(--gold);
}
.hero-cta:hover {
  background: var(--gold);
  color: #0f0f0f;
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}

.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  animation: scrollBounce 2s infinite;
}
.scroll-arrow {
  display: block; width: 20px; height: 20px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(45deg);
}
@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -15px); }
  60% { transform: translate(-50%, -7px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════
   ABOUT SECTION
   ═══════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-title {
  font-family: var(--font-serif);
  font-size: 2rem; color: var(--gold);
  margin-bottom: 1.5rem;
}
.about-desc {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.hours-badge {
  display: inline-flex; align-items: center; gap: 1rem;
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 1rem 1.5rem; border-radius: var(--radius);
  margin-bottom: 2rem;
}
.hours-icon { font-size: 2rem; color: var(--gold); }
.hours-info { display: flex; flex-direction: column; }
.hours-label { font-size: 0.8rem; text-transform: uppercase; color: var(--gold-muted); letter-spacing: 1px; }
.hours-value { font-weight: 600; color: var(--text-white); }

.about-promises {
  display: flex; gap: 2rem;
}
.promise-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.promise-icon { font-size: 1.5rem; }
.promise-text { font-size: 0.75rem; text-transform: uppercase; color: var(--gold); letter-spacing: 1px; font-weight: 600;}

.about-image img {
  border-radius: var(--radius-img);
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ═══════════════════════
   MENU SECTION
   ═══════════════════════ */
.menu-filters {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.menu-filter-btn {
  background: transparent; color: var(--text-gray);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 0.6rem 1.5rem; border-radius: 30px;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s ease;
}
.menu-filter-btn:hover, .menu-filter-btn.active {
  background: var(--gold); color: #0f0f0f;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212,175,55,0.3);
}

.menu-category { display: none; margin-bottom: 3rem; animation: fadeIn 0.5s ease; }
.menu-category.active { display: block; }
@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }

.category-title {
  text-align: center; font-family: var(--font-serif);
  font-size: 2rem; color: var(--gold-light);
  margin-bottom: 2rem;
}
.category-title .cat-icon { margin-right: 0.5rem; }

.panels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.panels-grid.single { grid-template-columns: 1fr; }

.panel {
  background: var(--bg-panel);
  border: var(--border-gold);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  position: relative;
  transition: box-shadow var(--transition);
  box-shadow: inset 0 0 30px rgba(212,175,55,0.03), 0 4px 15px rgba(0,0,0,0.4);
}
.panel:hover {
  box-shadow: inset 0 0 30px rgba(212,175,55,0.06), 0 6px 25px rgba(0,0,0,0.5), 0 0 15px rgba(212,175,55,0.08);
}
.panel.full-width { grid-column: 1 / -1; }

.panel::before, .panel::after {
  content: '✦'; position: absolute; font-size: 0.65rem; color: var(--gold-muted); opacity: 0.5;
}
.panel::before { top: 8px; left: 10px; }
.panel::after { top: 8px; right: 10px; }

.panel-title {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: 3px; text-align: center;
  margin-bottom: 1rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(212,175,55,0.25);
}
.panel-title .ornament { color: var(--gold-muted); margin: 0 0.5rem; font-size: 0.9rem; }
.panel-note { text-align: center; font-size: 0.75rem; font-style: italic; color: var(--gold-desc); margin-top: -0.5rem; margin-bottom: 0.8rem; }

.menu-item {
  display: flex; align-items: baseline;
  padding: 0.45rem 4px;
  transition: transform 0.2s ease, background 0.2s ease;
  border-radius: 4px;
}
.menu-item:hover {
  transform: translateX(6px);
  background: rgba(212,175,55,0.04);
}
.menu-item:hover .item-price { color: var(--gold-light); text-shadow: 0 0 8px rgba(240,216,120,0.3); }

.item-name { font-size: 0.88rem; font-weight: 500; color: var(--text-white); white-space: nowrap; }
.item-dots { flex: 1; border-bottom: 1px dotted var(--gold-dot); margin: 0 0.5rem; min-width: 20px; align-self: baseline; position: relative; top: -4px; }
.item-price { font-size: 0.88rem; font-weight: 700; color: var(--gold); white-space: nowrap; transition: color 0.2s ease, text-shadow 0.2s ease; }
.item-desc { display: block; font-size: 0.72rem; font-style: italic; color: var(--gold-desc); margin-top: 0.1rem; padding-left: 4px; line-height: 1.4; }

.tacos-header { display: flex; justify-content: flex-end; gap: 0.5rem; margin-bottom: 0.4rem; padding-right: 4px; }
.tacos-header span { font-family: var(--font-serif); font-size: 0.7rem; color: var(--gold-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; width: 55px; text-align: center; }
.tacos-item { display: flex; align-items: baseline; padding: 0.45rem 4px; transition: transform 0.2s ease; border-radius: 4px; }
.tacos-item:hover { transform: translateX(6px); background: rgba(212,175,55,0.04); }
.tacos-item .item-name { flex: 1; }
.tacos-item .tacos-prices { display: flex; gap: 0.5rem; }
.tacos-item .tacos-prices span { width: 55px; text-align: center; font-weight: 700; font-size: 0.85rem; color: var(--gold); }

.hot-drinks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; }
.extra-note { text-align: center; margin-top: 0.8rem; padding-top: 0.6rem; border-top: 1px dashed rgba(212,175,55,0.2); font-size: 0.78rem; font-weight: 600; color: var(--gold-muted); }

/* ═══════════════════════
   GALLERY SECTION
   ═══════════════════════ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.gallery-item {
  position: relative; border-radius: var(--radius-img); overflow: hidden;
  cursor: pointer; aspect-ratio: 1;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(15,15,15,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-overlay span {
  color: var(--gold); font-family: var(--font-serif); font-size: 1.5rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
  transform: translateY(20px); transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

.gallery-item-cta {
  background: var(--bg-panel);
  border: 1px dashed var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.gallery-cta-content { text-align: center; padding: 2rem; }
.gallery-cta-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.gallery-cta-text { display: block; font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold); margin-bottom: 1.5rem; }
.gallery-cta-btn {
  background: var(--gold); color: #0f0f0f;
  padding: 0.6rem 1.5rem; border-radius: 30px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  transition: all 0.3s; display: inline-block;
}
.gallery-cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(212,175,55,0.3); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,10,10,0.95);
  display: none; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; animation: fadeIn 0.3s ease; }
.lightbox-content { max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 4px; box-shadow: 0 0 30px rgba(0,0,0,0.8); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: transparent; border: none; color: var(--text-gray); font-size: 2.5rem; cursor: pointer; transition: color 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }
.lightbox-close { top: 20px; right: 30px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }


/* ═══════════════════════
   CONTACT & FORM
   ═══════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.contact-form-wrapper {
  background: var(--bg-panel); border: var(--border-gold);
  border-radius: var(--radius); padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.contact-form-title {
  font-family: var(--font-serif); font-size: 1.8rem; color: var(--gold); margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--gold-light); }
.form-group .required { color: red; }
.form-group .optional { color: var(--text-gray); font-size: 0.8rem; font-style: italic; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gold-muted);
  border-radius: 4px; color: var(--text-white);
  font-family: var(--font-sans); font-size: 0.95rem;
  transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,0.06); box-shadow: 0 0 10px rgba(212,175,55,0.2);
}
.form-group input.error { border-color: red; }
.form-actions { display: flex; gap: 1rem; margin-top: 2rem; }
.btn {
  flex: 1; padding: 0.8rem; border: none; border-radius: 4px;
  font-family: var(--font-sans); font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-preorder {
  background: var(--gold); color: #0f0f0f;
}
.btn-preorder:hover { background: var(--gold-light); box-shadow: 0 0 15px rgba(212,175,55,0.4); }
.btn-send {
  background: transparent; color: var(--gold); border: 1px solid var(--gold);
}
.btn-send:hover { background: rgba(212,175,55,0.1); }

.contact-info-wrapper { display: flex; flex-direction: column; gap: 2rem; }
.map-container { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(212,175,55,0.3); }
.map-link {
  display: block; background: var(--gold); color: #0f0f0f; text-align: center;
  padding: 0.6rem; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.detail-icon { font-size: 1.5rem; }
.detail-text { display: flex; flex-direction: column; color: var(--text-gray); }
.detail-text a { color: var(--gold); transition: color 0.2s; }
.detail-text a:hover { color: var(--gold-light); }

.social-links { display: flex; gap: 1rem; }
.social-link {
  width: 45px; height: 45px; display: flex; align-items: center; justify-content: center;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%; color: var(--gold); transition: all 0.3s;
}
.social-link:hover { background: var(--gold); color: #0f0f0f; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(212,175,55,0.3); }

/* ═══════════════════════
   PRE-ORDER MODAL
   ═══════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(10,10,10,0.85); backdrop-filter: blur(5px);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.modal-overlay.active { display: flex; opacity: 1; }
.modal-card {
  background: var(--bg-deep); border: var(--border-gold-2);
  border-radius: 8px; width: 95%; max-width: 600px; max-height: 90vh;
  display: flex; flex-direction: column; position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8), inset 0 0 20px rgba(212,175,55,0.05);
  transform: scale(0.95); transition: transform 0.3s ease;
}
.modal-overlay.active .modal-card { transform: scale(1); }
.modal-card::before, .modal-card::after {
  content: '✦'; position: absolute; font-size: 1rem; color: var(--gold-muted); opacity: 0.6;
}
.modal-card::before { top: 12px; left: 12px; }
.modal-card::after { top: 12px; right: 12px; }

.modal-close {
  position: absolute; top: 10px; right: 15px;
  background: transparent; border: none; color: var(--gold-muted);
  font-size: 2rem; cursor: pointer; transition: color 0.2s; z-index: 2;
}
.modal-close:hover { color: var(--gold); }

.modal-header { text-align: center; padding: 2rem 2rem 1rem; }
.modal-logo { height: 40px; margin: 0 auto 1rem; }
.modal-title { font-family: var(--font-serif); font-size: 1.8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }
.modal-line { width: 60px; height: 1px; background: var(--gold); margin: 0.5rem auto 0; }

.modal-body {
  padding: 0 2rem 1rem; overflow-y: auto; flex: 1;
}
.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
.modal-body::-webkit-scrollbar-thumb { background: var(--gold-muted); border-radius: 3px; }

.modal-cat-title {
  font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold-light);
  margin: 1.5rem 0 1rem; border-bottom: 1px solid rgba(212,175,55,0.2); padding-bottom: 0.3rem;
}
.modal-subcat-title {
  font-size: 0.9rem; color: var(--gold-muted); text-transform: uppercase; margin: 1rem 0 0.5rem; letter-spacing: 1px;
}
.modal-item-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 0; border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.modal-item-left { display: flex; align-items: center; gap: 0.8rem; flex: 1; }
.modal-item-checkbox {
  appearance: none; width: 18px; height: 18px;
  border: 1px solid var(--gold-muted); border-radius: 3px;
  background: transparent; cursor: pointer; position: relative;
}
.modal-item-checkbox:checked { background: var(--gold); border-color: var(--gold); }
.modal-item-checkbox:checked::after {
  content: '✓'; position: absolute; color: #0f0f0f; font-size: 14px; top: -1px; left: 2px; font-weight: bold;
}
.modal-item-info { display: flex; flex-direction: column; }
.modal-item-name { font-size: 0.9rem; color: var(--text-white); }
.modal-item-price { font-size: 0.8rem; color: var(--gold); font-weight: 600; }

.modal-item-qty { display: none; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.05); padding: 0.2rem; border-radius: 4px;}
.modal-item-qty.active { display: flex; }
.qty-btn {
  background: transparent; border: none; color: var(--gold); cursor: pointer;
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.qty-btn:hover { background: rgba(212,175,55,0.2); border-radius: 3px; }
.qty-val { font-size: 0.9rem; min-width: 20px; text-align: center; }

/* Tacos toggle */
.tacos-toggle {
  display: flex; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; margin-top: 0.3rem; font-size: 0.7rem;
}
.tacos-toggle label {
  padding: 0.2rem 0.5rem; cursor: pointer; color: var(--text-gray); transition: all 0.2s;
}
.tacos-toggle input { display: none; }
.tacos-toggle input:checked + label { background: var(--gold); color: #0f0f0f; font-weight: 600; }


.modal-footer {
  padding: 1.5rem 2rem 2rem; background: rgba(15,15,15,0.95); border-top: 1px solid rgba(212,175,55,0.2);
}
.order-notes-group { margin-bottom: 1rem; }
.order-notes-group label { display: block; font-size: 0.8rem; color: var(--gold-muted); margin-bottom: 0.3rem; }
.order-notes-group textarea {
  width: 100%; padding: 0.6rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(212,175,55,0.2);
  border-radius: 4px; color: var(--text-white); font-family: var(--font-sans); font-size: 0.85rem; resize: vertical;
}
.order-notes-group textarea:focus { outline: none; border-color: var(--gold); }

.modal-total {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem;
}
.total-label { font-family: var(--font-serif); font-size: 1.4rem; color: var(--text-white); text-transform: uppercase; letter-spacing: 1px; }
.total-value { font-size: 1.6rem; font-weight: 700; color: var(--gold); }

.btn-whatsapp {
  width: 100%; background: #25D366; color: white; border: none;
  font-size: 1rem; padding: 1rem; border-radius: 4px;
}
.btn-whatsapp:hover { background: #1ebd5a; box-shadow: 0 5px 15px rgba(37,211,102,0.3); }

/* ═══════════════════════
   FOOTER
   ═══════════════════════ */
.site-footer {
  background: var(--bg-panel); border-top: var(--border-gold-2); padding: 4rem 0 2rem; text-align: center;
}
.footer-top { margin-bottom: 2rem; }
.footer-logo { width: 200px; margin: 0 auto 1rem; opacity: 0.8; }
.footer-tagline { font-family: var(--font-script); font-size: 2rem; color: var(--gold-muted); }

.footer-promises {
  display: flex; justify-content: center; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.footer-promises .promise-text { color: var(--text-gray); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; }
.footer-address, .footer-phones { color: var(--gold-muted); font-size: 0.9rem; margin-bottom: 0.5rem; letter-spacing: 1px; }
.footer-phones a { color: var(--text-gray); }
.footer-phones a:hover { color: var(--gold); }
.footer-copy { margin-top: 2rem; font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 900;
  width: 45px; height: 45px; background: rgba(212,175,55,0.1); border: 1px solid var(--gold);
  border-radius: 50%; color: var(--gold); display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s ease; transform: translateY(20px);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); color: #0f0f0f; }

/* ═══════════════════════
   ANIMATIONS & UTILS
   ═══════════════════════ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════
   RESPONSIVE
   ═══════════════════════ */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 4rem 0; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .panels-grid { grid-template-columns: 1fr; }
  .hot-drinks-grid { grid-template-columns: 1fr; }
  
  .hero-tagline { font-size: 2.2rem; }
  .hero-logo { width: 240px; }
  .section-header h2 { font-size: 2rem; }
  .about-promises { flex-direction: column; gap: 1.5rem; }
  .footer-promises { flex-direction: column; gap: 1.5rem; }
  .form-actions { flex-direction: column; }
  
  .modal-card { width: 100%; height: 100%; max-height: none; border-radius: 0; }
  .modal-body { padding: 0 1rem 1rem; }
  .modal-footer { padding: 1rem; }
}
