/* ============================================
   Taquería Macondo v3 — Dark Theme
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --mc-bg: #0a0a0a;
  --mc-card: #141414;
  --mc-card-border: #2a2a2a;
  --mc-orange: #FFA012;
  --mc-green: #25d366;
  --mc-blue: #4285F4;
  --mc-red: #BF121D;
  --mc-text: #ffffff;
  --mc-text-muted: #999;
  --mc-text-dim: #666;
  --mc-body-font: 'Poppins', sans-serif;
  --mc-heading-font: 'Poppins', sans-serif;
  --mc-script-font: 'Great Vibes', cursive;
  --mc-radius: 16px;
  --mc-transition: .3s ease;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 60px; }

body {
  font-family: var(--mc-body-font);
  color: var(--mc-text);
  background: var(--mc-bg);
  overflow-x: hidden;
  margin: 0;
}

img { max-width: 100%; height: auto; }
a { color: var(--mc-orange); text-decoration: none; transition: color var(--mc-transition); }
a:hover { color: #ffb84d; }
h1,h2,h3,h4,h5,h6 { font-family: var(--mc-heading-font); color: var(--mc-text); }
section { padding: 5rem 0; }

/* ---------- Section Titles ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .subtitle {
  font-family: var(--mc-script-font);
  color: var(--mc-orange);
  font-size: 1.4rem;
  margin-bottom: .25rem;
  font-weight: 400;
}
.section-header h2 {
  font-size: 2.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.section-header h2 .accent { color: var(--mc-orange); }

/* ---------- Top Bar ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  z-index: 1050;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .85rem;
  color: var(--mc-text-muted);
}
.topbar-left a {
  color: var(--mc-text-muted);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color var(--mc-transition);
}
.topbar-left a:hover { color: var(--mc-orange); }
.topbar-left i { font-size: .95rem; }
.btn-entrar {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--mc-orange);
  border: 1.5px solid var(--mc-orange);
  border-radius: 50px;
  padding: .35rem 1.2rem;
  font-size: .85rem;
  font-weight: 600;
  transition: all var(--mc-transition);
  background: transparent;
}
.btn-entrar:hover {
  background: var(--mc-orange);
  color: #000;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-bg) center/cover no-repeat;
  color: #fff;
  padding-top: 50px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 1.5rem;
}
.hero-subtitle {
  font-family: var(--mc-script-font);
  color: var(--mc-orange);
  font-size: 2rem;
  margin-bottom: .5rem;
}
.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,.5);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: .5rem;
}
.hero-rating .stars { color: var(--mc-orange); font-size: 1.3rem; }
.hero-rating .score { font-size: 1.2rem; font-weight: 700; }
.hero-rating .reviews { color: rgba(255,255,255,.6); font-size: .9rem; }
.hero-schedule {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.btn-menu-hero {
  background: var(--mc-orange);
  color: #000;
  border: 2px solid var(--mc-orange);
  border-radius: 50px;
  padding: .7rem 2rem;
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all var(--mc-transition);
}
.btn-menu-hero:hover {
  background: transparent;
  color: var(--mc-orange);
}
.btn-outline-hero {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50px;
  padding: .7rem 2rem;
  font-weight: 600;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all var(--mc-transition);
}
.btn-outline-hero:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,.1);
}
.btn-wa-hero {
  background: var(--mc-green);
  color: #fff;
  border: 2px solid var(--mc-green);
  border-radius: 50px;
  padding: .7rem 2rem;
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all var(--mc-transition);
}
.btn-wa-hero:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

/* ---------- Quick Actions ---------- */
.quick-actions { padding: 3.5rem 0; background: var(--mc-bg); }
.action-card {
  background: var(--mc-card);
  border: 1px solid var(--mc-card-border);
  border-radius: var(--mc-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--mc-transition);
  display: block;
  color: var(--mc-text);
}
.action-card:hover {
  border-color: var(--mc-orange);
  transform: translateY(-4px);
  color: var(--mc-text);
}
.action-card .action-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,160,18,.15);
  color: var(--mc-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.action-card h5 {
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

/* ---------- Platillos Destacados ---------- */
.featured-section { background: var(--mc-bg); }
.dish-card {
  background: var(--mc-card);
  border: 1px solid var(--mc-card-border);
  border-radius: var(--mc-radius);
  padding: 1.5rem;
  height: 100%;
  transition: all var(--mc-transition);
}
.dish-card:hover {
  border-color: var(--mc-orange);
  transform: translateY(-3px);
}
.dish-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .5rem;
}
.dish-card h5 {
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin: 0;
  flex: 1;
}
.dish-card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mc-orange);
  white-space: nowrap;
  margin-left: 1rem;
}
.dish-card p {
  font-size: .85rem;
  color: var(--mc-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ---------- Full Menu Section ---------- */
.menu-section { background: var(--mc-bg); }
.menu-filters {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: var(--mc-card);
  border: 1px solid var(--mc-card-border);
  border-radius: 50px;
  padding: .5rem 1.5rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--mc-text-muted);
  cursor: pointer;
  transition: all var(--mc-transition);
}
.filter-btn:hover { border-color: var(--mc-orange); color: var(--mc-orange); }
.filter-btn.active { background: var(--mc-orange); border-color: var(--mc-orange); color: #000; font-weight: 600; }
.menu-item-col { transition: opacity .3s; }
.menu-item-col.hidden { display: none !important; }

/* ---------- Gallery ---------- */
.gallery-section {
  background: var(--mc-bg);
  border-top: 1px solid rgba(255,255,255,.05);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.gallery-grid a {
  display: block;
  border-radius: var(--mc-radius);
  overflow: hidden;
  position: relative;
}
.gallery-grid a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--mc-transition);
}
.gallery-grid a:hover::after { background: rgba(255,160,18,.15); }
.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.gallery-grid a:hover img { transform: scale(1.05); }

/* ---------- Servicios ---------- */
.services-section { background: var(--mc-bg); }
.service-card {
  background: var(--mc-card);
  border: 1px solid var(--mc-card-border);
  border-radius: var(--mc-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all var(--mc-transition);
}
.service-card:hover {
  border-color: var(--mc-orange);
  transform: translateY(-4px);
}
.service-card .svc-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,160,18,.15);
  color: var(--mc-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-card h5 {
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .85rem;
  color: var(--mc-text-muted);
  margin: 0;
}

/* ---------- Valores ---------- */
.valores-section { background: var(--mc-bg); }
.valor-card {
  background: var(--mc-card);
  border: 1px solid var(--mc-card-border);
  border-radius: var(--mc-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all var(--mc-transition);
}
.valor-card:hover {
  border-color: var(--mc-orange);
  transform: translateY(-4px);
}
.valor-card .val-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,160,18,.15);
  color: var(--mc-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.valor-card h5 {
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: .5rem;
}
.valor-card p {
  font-size: .85rem;
  color: var(--mc-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--mc-bg); }
.testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.testimonials-header .big-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: .25rem;
}
.testimonials-header .big-rating .stars { color: var(--mc-orange); font-size: 1.6rem; }
.testimonials-header .big-rating .score { font-size: 2rem; font-weight: 700; }
.testimonials-header .review-count {
  color: var(--mc-text-muted);
  font-size: .9rem;
  margin-bottom: 1rem;
}
.review-card {
  background: var(--mc-card);
  border: 1px solid var(--mc-card-border);
  border-radius: var(--mc-radius);
  padding: 1.5rem;
  height: 100%;
}
.review-card .review-stars {
  color: var(--mc-orange);
  font-size: 1rem;
  margin-bottom: .75rem;
}
.review-card .review-text {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.review-card .reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mc-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mc-text-muted);
  font-size: 1.1rem;
}
.review-card .reviewer-info h6 {
  font-size: .85rem;
  font-weight: 600;
  margin: 0;
}
.review-card .reviewer-info small {
  color: var(--mc-text-muted);
  font-size: .75rem;
}

/* ---------- Ubicación ---------- */
.location-section { background: var(--mc-bg); }
.map-wrapper {
  border-radius: var(--mc-radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
.location-card {
  background: var(--mc-card);
  border: 1px solid var(--mc-card-border);
  border-radius: var(--mc-radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
}
.location-card .loc-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,160,18,.15);
  color: var(--mc-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.location-card h6 {
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.location-card p { font-size: .9rem; color: var(--mc-text-muted); margin: 0; }
.location-card .highlight { color: var(--mc-orange); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--mc-bg); }
.faq-section .accordion-item {
  background: var(--mc-card);
  border: 1px solid var(--mc-card-border);
  border-radius: var(--mc-radius) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-section .accordion-button {
  background: var(--mc-card);
  color: var(--mc-text);
  font-weight: 500;
  font-size: .95rem;
  padding: 1rem 1.25rem;
  box-shadow: none;
}
.faq-section .accordion-button:not(.collapsed) {
  color: var(--mc-orange);
  background: var(--mc-card);
  box-shadow: none;
}
.faq-section .accordion-button::after {
  filter: invert(1);
}
.faq-section .accordion-button:not(.collapsed)::after {
  filter: invert(70%) sepia(90%) saturate(500%) hue-rotate(0deg) brightness(100%);
}
.faq-section .accordion-body {
  background: var(--mc-card);
  color: var(--mc-text-muted);
  font-size: .9rem;
  line-height: 1.6;
  padding-top: 0;
}

/* ---------- Footer ---------- */
.footer-macondo {
  background: #111;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--mc-text-muted);
  padding: 3rem 0 1.5rem;
}
.footer-macondo h5 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--mc-text);
  margin-bottom: .75rem;
}
.footer-macondo .footer-tagline {
  font-family: var(--mc-script-font);
  color: var(--mc-orange);
  font-size: 1.15rem;
  margin-bottom: .5rem;
}
.footer-macondo .footer-price {
  font-size: .85rem;
  color: var(--mc-text-muted);
}
.footer-macondo a {
  color: var(--mc-text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  margin-bottom: .5rem;
}
.footer-macondo a:hover { color: var(--mc-orange); }
.footer-macondo .btn-mc:hover { color: #000 !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  font-size: .8rem;
  color: var(--mc-text-dim);
}
.footer-bottom a { color: var(--mc-orange); display: inline; }

/* ---------- CTA Buttons Shared ---------- */
.btn-mc {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 50px;
  padding: .7rem 2rem;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all var(--mc-transition);
  border: 2px solid transparent;
}
.btn-mc-orange {
  background: var(--mc-orange);
  border-color: var(--mc-orange);
  color: #000;
}
.btn-mc-orange:hover { background: #e6900f; border-color: #e6900f; color: #000; }
.btn-mc-outline {
  background: transparent;
  border-color: var(--mc-orange);
  color: var(--mc-orange);
}
.btn-mc-outline:hover { background: var(--mc-orange); color: #000; }
.btn-mc-green {
  background: var(--mc-green);
  border-color: var(--mc-green);
  color: #fff;
}
.btn-mc-green:hover { background: #1da851; border-color: #1da851; color: #fff; }

/* ---------- FABs (Desktop) ---------- */
.fab-stack {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1040;
}
.fab-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  transition: transform var(--mc-transition), box-shadow var(--mc-transition);
  cursor: pointer;
  text-decoration: none;
}
.fab-btn:hover { transform: scale(1.12); box-shadow: 0 6px 24px rgba(0,0,0,.5); color: #fff; }
.fab-wa { background: var(--mc-green); }
.fab-call { background: var(--mc-orange); }
.fab-menu { background: var(--mc-red); }
.fab-maps { background: var(--mc-blue); }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.fab-wa { animation: pulse-ring 2s infinite; }

/* ---------- Mobile Bottom Bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #111;
  z-index: 1050;
  padding: .5rem 0;
  box-shadow: 0 -2px 20px rgba(0,0,0,.5);
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-bar .bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mobile-bar .bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #fff;
  text-decoration: none;
  font-size: .7rem;
  font-weight: 500;
  padding: .5rem 0;
  min-height: 48px;
  transition: background var(--mc-transition);
}
.mobile-bar .bar-btn i { font-size: 1.2rem; }
.mobile-bar .bar-btn:hover { background: rgba(255,255,255,.06); }
.mobile-bar .bar-btn.wa { color: var(--mc-green); }
.mobile-bar .bar-btn.call { color: var(--mc-orange); }
.mobile-bar .bar-btn.menu-pdf { color: var(--mc-red); }
.mobile-bar .bar-btn.maps { color: var(--mc-blue); }

/* ---------- Back to Top ---------- */
.btn-top {
  position: fixed;
  bottom: 30px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--mc-orange);
  color: #000;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 1039;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
  cursor: pointer;
  transition: all var(--mc-transition);
}
.btn-top:hover { background: #ffb84d; transform: translateY(-3px); }
.btn-top.show { display: flex; }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(20,20,20,.97);
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: .9rem;
  z-index: 9999;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--mc-card-border);
}
.cookie-banner a { color: var(--mc-orange); text-decoration: underline; }
.cookie-banner .btn-cookie {
  background: var(--mc-orange);
  color: #000;
  border: none;
  border-radius: 50px;
  padding: .4rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--mc-transition);
}
.cookie-banner .btn-cookie:hover { background: #e6900f; }

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- Dividers ---------- */
.section-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.06);
  margin: 0;
}

/* ---------- Theme Toggle Button ---------- */
.btn-theme {
  position: fixed;
  top: 70px;
  right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--mc-card);
  border: 1px solid var(--mc-card-border);
  color: var(--mc-orange);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1045;
  transition: all var(--mc-transition);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.btn-theme:hover {
  background: var(--mc-orange);
  color: #000;
  transform: scale(1.1);
}

/* ---------- Light Theme ---------- */
body.light-theme {
  --mc-bg: #f5f5f0;
  --mc-card: #ffffff;
  --mc-card-border: #e0dbd5;
  --mc-text: #1a1816;
  --mc-text-muted: #666;
  --mc-text-dim: #999;
}
body.light-theme .topbar {
  background: rgba(255,255,255,.95);
  border-bottom-color: #e0dbd5;
}
body.light-theme .topbar-left a,
body.light-theme .topbar-left span { color: #555; }
body.light-theme .btn-entrar { color: var(--mc-orange); border-color: var(--mc-orange); }
body.light-theme .hero::before {
  background: linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.6) 100%);
}
body.light-theme .section-header h2 { color: var(--mc-text); }
body.light-theme .section-header h2 .accent { color: var(--mc-orange); }
body.light-theme .dish-card h5,
body.light-theme .service-card h5,
body.light-theme .valor-card h5,
body.light-theme .action-card h5 { color: var(--mc-text); }
body.light-theme .dish-card p,
body.light-theme .service-card p,
body.light-theme .valor-card p { color: #777; }
body.light-theme .review-card .review-text { color: #444; }
body.light-theme .review-card .reviewer-info h6 { color: var(--mc-text); }
body.light-theme .location-card h6 { color: var(--mc-text); }
body.light-theme .faq-section .accordion-button { background: #fff; color: #333; }
body.light-theme .faq-section .accordion-button:not(.collapsed) { color: var(--mc-orange); background: #fff; }
body.light-theme .faq-section .accordion-button::after { filter: none; }
body.light-theme .faq-section .accordion-body { background: #fff; color: #555; }
body.light-theme .faq-section .accordion-item { background: #fff; border-color: #e0dbd5; }
body.light-theme .footer-macondo { background: #1a1816; }
body.light-theme .section-divider { border-top-color: #e0dbd5; }
body.light-theme .filter-btn { color: #555; border-color: #ddd; background: #fff; }
body.light-theme .filter-btn:hover { border-color: var(--mc-orange); color: var(--mc-orange); }
body.light-theme .filter-btn.active { background: var(--mc-orange); border-color: var(--mc-orange); color: #000; }
body.light-theme .mobile-bar { background: #fff; box-shadow: 0 -2px 16px rgba(0,0,0,.1); border-top-color: #e0dbd5; }
body.light-theme .mobile-bar .bar-btn { color: #333; }
body.light-theme .mobile-bar .bar-btn.wa { color: var(--mc-green); }
body.light-theme .mobile-bar .bar-btn.call { color: var(--mc-orange); }
body.light-theme .mobile-bar .bar-btn.menu-pdf { color: var(--mc-red); }
body.light-theme .mobile-bar .bar-btn.maps { color: var(--mc-blue); }
body.light-theme .btn-theme { background: #fff; border-color: #ddd; box-shadow: 0 2px 12px rgba(0,0,0,.1); }
body.light-theme .cookie-banner { background: rgba(255,255,255,.97); color: #333; border-top-color: #e0dbd5; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hero-content h1 { font-size: 3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .fab-stack { display: none; }
  .mobile-bar { display: block; }
  .btn-top { bottom: 80px; right: 16px; }
  body { padding-bottom: 64px; }
  .topbar-left .topbar-hours { display: none; }
}
@media (max-width: 575.98px) {
  section { padding: 3.5rem 0; }
  .hero-content h1 { font-size: 2.2rem; letter-spacing: 1px; }
  .hero-subtitle { font-size: 1.15rem; }
  .section-header h2 { font-size: 1.8rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 180px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-outline-hero { font-size: .85rem; padding: .6rem 1.5rem; }
  .menu-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: .5rem;
    -webkit-overflow-scrolling: touch;
  }
  .filter-btn { flex-shrink: 0; }
}
