/* ============================================================
   Sin Pecado Juguería Fitness — styles.css
   ============================================================ */

/* ---- Variables ---- */
:root {
  --green: #3d8b37;
  --green-dark: #2d6a27;
  --green-light: #5cb85c;
  --black: #1a1a1a;
  --warm: #faf9f6;
  --white: #ffffff;
  --gray-text: #555;
  --gray-light: #f0f0f0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--warm);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(15, 15, 15, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar__brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.navbar__links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.navbar__links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.navbar__wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 99px;
  text-decoration: none;
  flex-shrink: 0;
  transition: filter 0.2s, transform 0.2s;
}
.navbar__wa:hover { filter: brightness(1.1); transform: scale(1.03); }
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.navbar__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.is-open span:nth-child(2) { opacity: 0; }
.navbar__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: rgba(15,15,15,0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 8px 0 16px;
}
.navbar__mobile.is-open { display: flex; }
.navbar__mobile-link {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 24px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s, color 0.2s;
}
.navbar__mobile-link:hover { background: rgba(255,255,255,0.05); color: #fff; }
.navbar__mobile-wa {
  margin: 16px 24px 0;
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: filter 0.2s;
}
.navbar__mobile-wa:hover { filter: brightness(1.1); }

/* Hero needs top padding for fixed navbar */
.hero { padding-top: 64px; }

@media (max-width: 900px) {
  .navbar__links { display: none; }
  .navbar__wa { display: none; }
  .navbar__burger { display: flex; }
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

.anim-fadeup   { animation: fadeUp  0.7s ease forwards; }
.anim-fadeup-2 { animation: fadeUp  0.7s ease 0.18s both; }
.anim-fadein-3 { animation: fadeIn  0.6s ease 0.35s both; }
.anim-fadein-4 { animation: fadeIn  0.6s ease 0.5s  both; }
.anim-scalein-5{ animation: scaleIn 0.55s ease 0.65s both; }
.anim-fadein-6 { animation: fadeIn  0.6s ease 0.8s  both; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header--light { }

.section-tag {
  display: inline-block;
  background: rgba(61,139,55,0.12);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
}
.section-tag--light {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-title--light { color: #fff; }

.section-desc {
  font-size: 1rem;
  color: var(--gray-text);
  max-width: 520px;
  margin: 0 auto;
}
.section-desc--light { color: rgba(255,255,255,0.8); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('../image/combo-waffles-cappuccino.jpeg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.70) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 680px;
  width: 100%;
  padding: 60px 20px;
}
.hero__logo img {
  width: 110px;
  height: 110px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,255,255,0.2);
  object-fit: cover;
}
.hero__title h1 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
}
.hero__title h2 {
  font-size: clamp(2.2rem, 6.5vw, 4.2rem);
  font-weight: 900;
  color: var(--green-light);
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
}
.hero__hours {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.hour-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
}
.hero__scroll-arrow {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 1.9s ease-in-out infinite;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 99px;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  text-decoration: none;
}
.btn:hover  { transform: scale(1.04); filter: brightness(1.08); }
.btn:active { transform: scale(0.97); }

.btn--whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 24px rgba(61,139,55,0.45);
}
.btn--whatsapp:hover { box-shadow: 0 0 36px rgba(61,139,55,0.65); }

.btn--lg { font-size: 1.1rem; padding: 16px 40px; }

.btn--outline {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
  font-size: 0.9rem;
  padding: 10px 22px;
}
.btn--outline:hover { background: rgba(255,255,255,0.25); }

.btn--green-sm {
  background: var(--green);
  color: #fff;
  font-size: 0.88rem;
  padding: 10px 20px;
  font-weight: 700;
}

.btn--ghost-sm {
  background: transparent;
  color: var(--black);
  font-size: 0.88rem;
  padding: 10px 20px;
  font-weight: 600;
  border: 1.5px solid #ccc;
}
.btn--ghost-sm:hover { background: var(--gray-light); }

/* ============================================================
   BENEFITS BAR
   ============================================================ */
.benefits-bar {
  background: var(--green-dark);
  padding: 18px 20px;
}
.benefits-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}
.benefit-icon { font-size: 1.2rem; }

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section { background: var(--warm); }

.menu-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 52px;
}
@media (max-width: 640px) {
  .menu-images { grid-template-columns: 1fr; }
}

.menu-img-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.menu-img-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-img-card:hover img { transform: scale(1.04); }

.menu-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-img-card:hover .menu-img-overlay { opacity: 1; }

/* ---- Quick Order ---- */
.quick-order {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
}
.quick-order__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}
.quick-order__desc {
  font-size: 0.88rem;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--gray-light);
  padding-bottom: 0;
}
.tab {
  padding: 8px 18px;
  border: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-text);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  border-radius: 0;
  transition: color 0.2s, border-color 0.2s;
}
.tab:hover { color: var(--green); }
.tab--active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.tab-panel { display: none; }
.tab-panel--active { display: block; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.product-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--warm);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.product-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(61,139,55,0.15);
  transform: translateY(-2px);
}
.product-card__emoji { font-size: 1.6rem; flex-shrink: 0; }
.product-card__info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.product-card__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.product-card__price {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--green);
}
/* ---- Qty controls ---- */
.qty-control {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, transform 0.1s;
  padding: 0;
}
.qty-btn:hover { background: var(--green); color: #fff; }
.qty-btn:active { transform: scale(0.88); }
.qty-num {
  min-width: 22px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
}

/* active card highlight */
.product-card--in-cart {
  border-color: var(--green) !important;
  background: #f0f9ef;
}
.product-card--in-cart .qty-num { color: var(--green); }

.quick-order__note {
  margin-top: 20px;
  font-size: 0.75rem;
  color: #999;
  text-align: center;
}

/* ============================================================
   COMBOS SECTION
   ============================================================ */
.combos-section {
  background: var(--black);
}

.combos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.combo-card {
  background: #242424;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.combo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.combo-card--featured {
  border: 2px solid rgba(255,200,0,0.4);
}
.combo-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.combo-card__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.combo-card:hover .combo-card__img-wrap img { transform: scale(1.06); }
.combo-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
}
.combo-card__badge--gold {
  background: linear-gradient(135deg, #d4a017, #f0c040);
  color: #1a1a1a;
}
.combo-card__body {
  padding: 20px 22px 24px;
}
.combo-card__body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.combo-card__body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
  line-height: 1.5;
}

/* ============================================================
   HOW TO ORDER
   ============================================================ */
.how-section { background: var(--warm); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 44px;
}

.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s ease;
}
.step-card:hover { transform: translateY(-4px); }
.step-card__number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--green);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card__icon { font-size: 2.8rem; margin-bottom: 14px; }
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.6;
}

.how-cta { text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111;
  padding: 56px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 14px;
}
.footer__brand h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.footer__social a:hover { background: var(--green); color: #fff; }

.footer__info h4,
.footer__hours h4,
.footer__links h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer__info ul li,
.footer__hours ul li,
.footer__links ul li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.footer__info ul li svg,
.footer__hours ul li svg { flex-shrink: 0; margin-top: 2px; }
.footer__info a,
.footer__links a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__info a:hover,
.footer__links a:hover { color: var(--green-light); }

.footer__bottom {
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}
.footer__bottom a { color: rgba(255,255,255,0.55); }
.footer__bottom a:hover { color: var(--green-light); }

/* ============================================================
   WhatsApp FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(61,139,55,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, bottom 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(61,139,55,0.7);
}

/* ============================================================
   Cookie Banner
   ============================================================ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 16px 20px;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner__content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner__content p {
  flex: 1;
  font-size: 0.83rem;
  color: #555;
  min-width: 200px;
}
.cookie-banner__content a { color: var(--green); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================================
   MENU IMAGE CARD — lightbox trigger
   ============================================================ */
.menu-img-card {
  cursor: zoom-in;
}
.menu-zoom-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  background: rgba(0,0,0,0.55);
  padding: 10px 22px;
  border-radius: 99px;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open {
  display: flex;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: zoom-out;
}
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.25); }

.lightbox__content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 95vw;
  max-height: 95vh;
  padding: 0 16px;
  animation: lightboxIn 0.25s ease;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox__content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.6);
}
.lightbox__caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
}
.lightbox__wa {
  font-size: 0.9rem;
  padding: 12px 28px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: #fff; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid #eee;
}
.faq-item:first-child { border-top: 1px solid #eee; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 20px 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-q[aria-expanded="true"] { color: var(--green); }

.faq-icon {
  flex-shrink: 0;
  color: var(--green);
  transition: transform 0.3s ease;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 4px 20px;
}
.faq-a.is-open { display: block; }
.faq-a p {
  font-size: 0.93rem;
  color: var(--gray-text);
  line-height: 1.75;
}
.faq-a strong { color: var(--black); }

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section { background: var(--warm); }
.map-section__header {
  padding: 52px 0 32px;
  text-align: center;
}
.map-section__map {
  width: 100%;
  line-height: 0;
}
.map-section__map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}
.map-section__cta {
  padding: 28px 0 52px;
  text-align: center;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px;
}
.legal-page h1 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--black);
}
.legal-page .legal-date {
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 36px 0 10px;
  color: var(--black);
}
.legal-page p, .legal-page li {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 10px;
}
.legal-page ul { list-style: disc; padding-left: 24px; }
.legal-page a { color: var(--green); }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 32px;
  transition: gap 0.2s;
}
.legal-back:hover { gap: 10px; }

/* ============================================================
   CART BAR
   ============================================================ */
.cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--green-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 12px;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
.cart-bar.is-visible { transform: translateY(0); }

.cart-bar__info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cart-bar__count {
  font-size: 0.75rem;
  opacity: 0.85;
  font-weight: 500;
}
.cart-bar__total {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.cart-bar__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--green-dark);
  border: none;
  border-radius: 99px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
  flex-shrink: 0;
}
.cart-bar__btn:hover { background: #e8f5e9; }
.cart-bar__btn:active { transform: scale(0.96); }
.cart-bar__btn svg { flex-shrink: 0; }

/* push WA float button up when cart bar visible */
.cart-bar.is-visible ~ .whatsapp-fab,
body.cart-active .whatsapp-fab {
  bottom: 90px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .menu-img-card img { height: 220px; }
  .combo-card__img-wrap img { height: 180px; }
  .footer__grid { gap: 28px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero__content { gap: 16px; }
  .hero__title h1 { font-size: 2.4rem; }
  .hero__title h2 { font-size: 2rem; }
  .product-grid { grid-template-columns: 1fr; }
  .btn--lg { font-size: 0.95rem; padding: 14px 28px; }
  .quick-order { padding: 24px 16px; }
  .combos-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
