:root{
  --black:#0A0A0A;
  --surface:#171310;
  --surface-alt:#1E1A15;
  --yellow:#F2C230;
  --red:#E1372B;
  --green:#2E9E4F;
  --text:#F5F1E8;
  --muted:#B8B0A2;
  --radius:16px;
  --shadow:0 4px 18px rgba(0,0,0,0.5);
  --shadow-hover:0 10px 30px rgba(0,0,0,0.65);
  --font-display:'Bangers',cursive;
  --font-body:'Nunito','Segoe UI',sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0;}
html,body{overflow-x:hidden;width:100%;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  color:var(--text);
  background:var(--black);
  line-height:1.5;
  padding-top:72px;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
input,select,textarea,button{font-family:inherit;font-size:16px;}

.container{max-width:1200px;margin:0 auto;padding:0 20px;}
.section-title{
  font-family:var(--font-display);
  font-size:2.6rem;
  letter-spacing:.03em;
  text-align:center;
  color:var(--yellow);
  margin-bottom:32px;
  text-shadow:0 3px 0 rgba(0,0,0,0.4);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 26px;
  border-radius:50px;
  font-weight:800;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .2s ease,box-shadow .2s ease;
  font-size:16px;
}
.btn:hover{transform:translateY(-2px);box-shadow:var(--shadow-hover);}
.btn-yellow{background:var(--yellow);color:#1A1300;}
.btn-red{background:var(--red);color:#fff;}
.btn-green{background:var(--green);color:#fff;}
.btn-whatsapp{background:#25D366;color:#fff;}
.btn-outline{background:rgba(255,255,255,0.08);color:var(--text);border-color:var(--yellow);}

[data-reveal]{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease;}
[data-reveal].revealed{opacity:1;transform:translateY(0);}

/* ---------------- PAPEL PICADO ---------------- */
.papel-picado{
  height:26px;width:100%;
  background:
    linear-gradient(135deg, transparent 50%, var(--yellow) 50%) 0 0/24px 26px,
    linear-gradient(135deg, transparent 50%, var(--red) 50%) 24px 0/24px 26px,
    linear-gradient(135deg, transparent 50%, var(--green) 50%) 48px 0/24px 26px;
  background-repeat:repeat-x;
  opacity:.9;
}

/* ---------------- NAVBAR ---------------- */
.navbar{
  position:fixed;top:0;left:0;right:0;
  background:var(--black);
  border-bottom:1px solid rgba(255,255,255,0.08);
  z-index:200;
  box-shadow:0 2px 10px rgba(0,0,0,0.5);
}
.navbar-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:72px;
}
.navbar-logo{display:flex;align-items:center;gap:10px;color:var(--text);font-family:var(--font-display);font-size:1.4rem;letter-spacing:.02em;}
.navbar-logo img{width:42px;height:42px;border-radius:50%;object-fit:cover;background:#fff;}
.nav-links{display:flex;gap:26px;}
.nav-links a{color:var(--text);font-weight:700;font-size:.92rem;opacity:.9;transition:color .2s;}
.nav-links a:hover{opacity:1;color:var(--yellow);}
.navbar-actions{display:flex;align-items:center;gap:14px;}
.lang-toggle{
  background:var(--yellow);color:#1A1300;border:none;border-radius:20px;
  padding:6px 14px;font-weight:800;cursor:pointer;font-size:.85rem;
}
.cart-btn{
  position:relative;background:none;border:none;color:var(--text);font-size:1.35rem;cursor:pointer;
}
.cart-count{
  position:absolute;top:-6px;right:-10px;background:var(--red);color:#fff;
  font-size:.65rem;font-weight:800;border-radius:50%;min-width:18px;height:18px;
  display:flex;align-items:center;justify-content:center;padding:0 4px;
}
.nav-burger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px;}
.nav-burger span{width:24px;height:2px;background:var(--text);border-radius:2px;}

@media(max-width:699px){
  .nav-links{
    position:absolute;top:72px;left:0;right:0;background:var(--surface);
    flex-direction:column;gap:0;max-height:0;overflow:hidden;transition:max-height .3s ease;
    border-bottom:3px solid var(--yellow);
  }
  .nav-links.open{max-height:320px;}
  .nav-links a{padding:14px 20px;border-top:1px solid rgba(255,255,255,0.08);}
  .nav-burger{display:flex;}
}
@media(min-width:700px){.nav-burger{display:none;}}

/* ---------------- HERO ---------------- */
.hero{
  position:relative;min-height:88vh;display:flex;align-items:center;justify-content:center;overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;width:100%;height:118%;object-fit:cover;z-index:0;will-change:transform;
}
.hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.45) 45%, rgba(10,10,10,0.85) 100%);
}
.hero-fireballs{position:absolute;inset:0;z-index:2;pointer-events:none;overflow:hidden;}
.hero-fireballs span{
  position:absolute;bottom:-30px;border-radius:50%;
  background:radial-gradient(circle at 35% 35%, #fff59a 0%, #ffb020 35%, var(--red) 70%, rgba(225,55,43,0) 100%);
  box-shadow:0 0 12px 4px rgba(255,140,0,0.65);
  animation:fireballRise linear infinite;
}
.hero-fireballs span:nth-child(1){left:6%;width:16px;height:16px;animation-duration:6.5s;animation-delay:0s;}
.hero-fireballs span:nth-child(2){left:16%;width:10px;height:10px;animation-duration:5.2s;animation-delay:1.1s;}
.hero-fireballs span:nth-child(3){left:28%;width:20px;height:20px;animation-duration:7.8s;animation-delay:2.3s;}
.hero-fireballs span:nth-child(4){left:40%;width:12px;height:12px;animation-duration:5.9s;animation-delay:.6s;}
.hero-fireballs span:nth-child(5){left:52%;width:18px;height:18px;animation-duration:7s;animation-delay:3.1s;}
.hero-fireballs span:nth-child(6){left:64%;width:11px;height:11px;animation-duration:6.1s;animation-delay:1.8s;}
.hero-fireballs span:nth-child(7){left:74%;width:22px;height:22px;animation-duration:8.4s;animation-delay:2.9s;}
.hero-fireballs span:nth-child(8){left:83%;width:14px;height:14px;animation-duration:5.5s;animation-delay:.2s;}
.hero-fireballs span:nth-child(9){left:91%;width:17px;height:17px;animation-duration:7.2s;animation-delay:3.6s;}
.hero-fireballs span:nth-child(10){left:97%;width:9px;height:9px;animation-duration:5s;animation-delay:2s;}
@keyframes fireballRise{
  0%{transform:translateY(0) translateX(0);opacity:0;}
  10%{opacity:.95;}
  50%{transform:translateY(-45vh) translateX(12px);opacity:.85;}
  90%{opacity:0;}
  100%{transform:translateY(-95vh) translateX(-10px);opacity:0;}
}
.hero-content{position:relative;z-index:3;width:100%;text-align:center;color:var(--text);padding:0 20px;}
.hero-logo{
  width:190px;height:190px;object-fit:contain;margin:0 auto 10px;
  animation:heartbeat 1.8s ease-in-out infinite;
  filter:drop-shadow(0 8px 20px rgba(0,0,0,0.6));
}
@keyframes heartbeat{
  0%,100%{transform:scale(1);}
  15%{transform:scale(1.1);}
  30%{transform:scale(1);}
  45%{transform:scale(1.06);}
  60%{transform:scale(1);}
}
.hero-content h1{
  font-family:var(--font-display);
  font-size:clamp(3rem,9vw,5.5rem);
  letter-spacing:.03em;
  color:var(--yellow);
  text-shadow:3px 3px 0 var(--red), 6px 6px 0 rgba(0,0,0,0.5);
}
.hero-tagline{
  font-size:clamp(1.05rem,2.6vw,1.35rem);
  font-weight:800;
  margin:10px 0 26px;
  color:var(--text);
  text-shadow:0 2px 8px rgba(0,0,0,0.6);
}
.hero-buttons{display:flex;flex-wrap:wrap;justify-content:center;gap:14px;}
@media(max-width:699px){
  .hero-logo{width:140px;height:140px;}
  .hero-buttons{flex-direction:column;}
  .hero-buttons .btn{width:100%;}
}
@media(max-width:380px){
  .hero-content h1{font-size:clamp(2.2rem,11vw,5.5rem);}
}

/* ---------------- INFO STRIP ---------------- */
.info-strip{
  background:var(--red);color:#fff;
  display:flex;flex-wrap:wrap;justify-content:center;align-items:center;
  gap:10px 32px;padding:14px 20px;font-size:.9rem;font-weight:800;text-align:center;
}
.info-strip span{display:inline-flex;align-items:center;gap:6px;}
.info-strip svg{flex-shrink:0;}
.info-strip a{color:#fff;}
@media(max-width:699px){
  .info-strip{font-size:.8rem;gap:8px 18px;}
}
@media(max-width:480px){
  .info-strip{flex-direction:column;gap:6px;}
}

/* ---------------- BEST SELLERS ---------------- */
.bestsellers{padding:56px 0 40px;background:var(--black);}
.bestsellers-track-wrap{
  position:relative;width:100%;max-width:1200px;margin:0 auto;padding:0 50px;
}
.bestsellers-scroll{
  overflow-x:auto;scroll-behavior:smooth;scrollbar-width:none;-ms-overflow-style:none;
}
.bestsellers-scroll::-webkit-scrollbar{display:none;}
.bestsellers-track{display:flex;gap:20px;width:max-content;}
.bestseller-card{
  flex:0 0 auto;width:190px;background:var(--surface);border:2px solid var(--yellow);border-radius:var(--radius);
  box-shadow:var(--shadow);overflow:hidden;text-align:center;
}
.bestseller-card img{width:100%;height:130px;object-fit:cover;}
.bestseller-card .bs-info{padding:12px;}
.bestseller-card h4{font-size:.95rem;margin-bottom:4px;color:var(--text);}
.bestseller-card .bs-price{color:var(--yellow);font-weight:800;}
.track-arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:5;
  width:38px;height:38px;border-radius:50%;background:var(--red);color:#fff;border:none;
  cursor:pointer;font-size:1rem;display:flex;align-items:center;justify-content:center;
}
.track-arrow-left{left:0;}
.track-arrow-right{right:0;}
@media(max-width:699px){
  .bestsellers-track-wrap{padding:0 38px;}
  .track-arrow{width:32px;height:32px;font-size:.85rem;}
  .bestseller-card{width:150px;}
  .bestseller-card img{height:100px;}
}

/* ---------------- MENU ---------------- */
.menu-section{padding:60px 0;}
.menu-tabs{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin-bottom:40px;}
.menu-tab{
  background:var(--surface);border:2px solid var(--yellow);color:var(--yellow);
  padding:9px 20px;border-radius:50px;font-weight:800;font-size:.9rem;cursor:pointer;
  transition:background .2s ease,color .2s ease;
}
.menu-tab:hover{background:var(--surface-alt);}
.menu-tab.active{background:var(--yellow);color:#1A1300;}

.menu-category{margin-bottom:50px;}
.menu-category h3{
  font-family:var(--font-display);font-size:1.8rem;letter-spacing:.02em;font-weight:400;
  margin-bottom:20px;padding-bottom:8px;border-bottom:3px solid var(--cat-color,var(--yellow));
  color:var(--cat-color,var(--yellow));
}
.menu-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;}
@media(min-width:700px){.menu-grid{grid-template-columns:repeat(4,1fr);}}

.menu-card{
  background:var(--surface);border:1px solid #2a2419;border-top:4px solid var(--cat-color,var(--yellow));
  border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);
  transition:box-shadow .25s,transform .25s;display:flex;flex-direction:column;
}
.menu-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px);}
.menu-card-img{width:100%;aspect-ratio:3/2;overflow:hidden;background:var(--surface-alt);}
.menu-card-img img{width:100%;height:100%;object-fit:cover;}
.menu-card-body{padding:14px;display:flex;flex-direction:column;gap:8px;flex:1;}
.menu-card-body h3{font-size:1rem;color:var(--text);}
.menu-card-desc{font-size:.78rem;color:var(--muted);}
.menu-card-note{font-size:.72rem;color:var(--yellow);font-style:italic;}
.menu-card-badge{
  display:inline-block;font-size:.65rem;font-weight:800;padding:3px 8px;border-radius:20px;
  background:var(--red);color:#fff;align-self:flex-start;
}
.menu-card-variant label,.menu-card-size label{font-size:.72rem;font-weight:700;color:var(--muted);display:block;margin-bottom:3px;}
.menu-card-variant select,.menu-card-size select{
  width:100%;padding:8px;border:1px solid #333;border-radius:8px;background:var(--surface-alt);color:var(--text);
}
.extras-toggle{
  background:none;border:1px dashed var(--green);color:var(--green);
  padding:8px;border-radius:8px;font-weight:700;font-size:.78rem;cursor:pointer;
}
.extras-panel{
  display:none;flex-direction:column;gap:6px;background:var(--surface-alt);
  border-radius:10px;padding:10px;
}
.extras-panel.open{display:flex;}
.extras-panel label{display:flex;align-items:center;gap:6px;font-size:.78rem;padding:2px 0;cursor:pointer;}
.menu-card-footer{margin-top:auto;display:flex;align-items:center;justify-content:space-between;gap:8px;padding-top:6px;}
.menu-card-price{font-weight:800;color:var(--yellow);font-size:1.05rem;}
.add-to-cart-btn{
  background:var(--cat-color,var(--yellow));color:#1A1300;border:none;padding:9px 14px;border-radius:8px;
  font-weight:800;font-size:.78rem;cursor:pointer;transition:opacity .2s;
}
.add-to-cart-btn:hover{opacity:.85;}
.ask-price-btn{
  background:var(--red);color:#fff;border:none;padding:9px 14px;border-radius:8px;
  font-weight:800;font-size:.78rem;cursor:pointer;
}

/* ---------------- REVIEWS ---------------- */
.reviews-section{padding:60px 0;background:var(--surface-alt);}
.reviews-header{text-align:center;margin-bottom:36px;}
.google-logo{font-size:1.6rem;font-weight:800;margin-bottom:8px;}
.g-blue{color:#4285F4;}.g-red{color:#EA4335;}.g-yellow{color:#FBBC05;}.g-green{color:#34A853;}
.reviews-stars{color:#FBBC05;font-size:1.2rem;letter-spacing:2px;}
.reviews-score{font-weight:800;margin-left:8px;font-size:1.1rem;color:var(--text);}
.reviews-subtitle{color:var(--muted);margin-top:6px;font-size:.9rem;}
.reviews-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(270px,1fr));gap:22px;}
.review-card{
  background:var(--surface);border:1px solid #2a2419;border-radius:var(--radius);box-shadow:var(--shadow);
  padding:18px;display:flex;flex-direction:column;gap:10px;
}
.review-top{display:flex;align-items:center;gap:12px;}
.review-avatar{
  width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  color:#fff;font-weight:800;font-size:.9rem;flex-shrink:0;
}
.review-name{font-weight:700;font-size:.92rem;color:var(--text);}
.review-badge{font-size:.65rem;color:#4285F4;font-weight:700;}
.review-stars{color:#FBBC05;font-size:.85rem;letter-spacing:1px;}
.review-text{font-size:.86rem;color:var(--muted);flex:1;}
.review-photo{width:100%;height:130px;object-fit:cover;border-radius:10px;}

/* ---------------- CATERING ---------------- */
.catering-section{padding:60px 0;}
.catering-grid{display:grid;grid-template-columns:1fr;gap:36px;align-items:center;}
@media(min-width:800px){.catering-grid{grid-template-columns:1fr 1fr;}}
.catering-media img{border-radius:var(--radius);box-shadow:var(--shadow);width:100%;object-fit:cover;border:2px solid var(--yellow);}
.catering-subtitle{color:var(--muted);margin-bottom:20px;}
.catering-form{display:flex;flex-direction:column;gap:6px;}
.catering-form label{font-size:.82rem;font-weight:700;margin-top:8px;color:var(--yellow);}
.catering-form input,.catering-form select,.catering-form textarea{
  padding:12px;border:1px solid #333;border-radius:8px;background:var(--surface);color:var(--text);
}
.catering-form button{margin-top:18px;align-self:flex-start;}

/* ---------------- CONTACT ---------------- */
.contact-section{padding:60px 0;background:var(--surface-alt);}
.contact-grid{display:grid;grid-template-columns:1fr;gap:30px;}
@media(min-width:800px){.contact-grid{grid-template-columns:1fr 1fr;}}
.contact-info{text-align:center;display:flex;flex-direction:column;align-items:center;}
.contact-info p{margin:10px 0;color:var(--muted);}
.contact-info a{color:var(--yellow);font-weight:700;}
.hours-note{display:block;font-size:.75rem;color:#888;font-style:italic;}
.contact-socials{display:flex;justify-content:center;gap:16px;margin-top:16px;}
.contact-socials a{font-weight:700;color:var(--yellow);}
.contact-map{min-height:280px;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);border:2px solid var(--yellow);}
.contact-map iframe{width:100%;height:100%;min-height:280px;}

/* ---------------- FOOTER ---------------- */
.footer{background:var(--surface);color:var(--text);padding-bottom:36px;}
.footer-inner{display:flex;flex-direction:column;align-items:center;gap:14px;text-align:center;padding-top:30px;}
.footer-brand{display:flex;align-items:center;gap:10px;font-family:var(--font-display);font-size:1.3rem;color:var(--yellow);}
.footer-brand img{width:56px;height:56px;object-fit:contain;}
.footer-socials{display:flex;gap:16px;}
.footer-socials svg{width:20px;height:20px;fill:var(--text);}
.footer-credit{font-size:.82rem;color:var(--muted);}
.footer-credit a{color:var(--yellow);font-weight:800;}

/* ---------------- CART DRAWER ---------------- */
.cart-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,0.6);z-index:299;
  opacity:0;pointer-events:none;transition:opacity .25s;
}
.cart-overlay.open{opacity:1;pointer-events:auto;}
.cart-drawer{
  position:fixed;top:0;right:0;height:100%;width:min(380px,100%);
  background:var(--surface);color:var(--text);z-index:300;box-shadow:-8px 0 24px rgba(0,0,0,0.5);
  display:flex;flex-direction:column;border-left:3px solid var(--yellow);
  transform:translateX(100%);transition:transform .3s ease;
}
.cart-drawer.open{transform:translateX(0);}
.cart-drawer-header{
  display:flex;align-items:center;justify-content:space-between;padding:18px;border-bottom:1px solid #2a2419;
}
.cart-drawer-header h3{font-family:var(--font-display);color:var(--yellow);font-size:1.4rem;}
.cart-drawer-header button{background:none;border:none;font-size:1.6rem;cursor:pointer;line-height:1;color:var(--text);}
.cart-items{flex:1;overflow-y:auto;padding:14px 18px;}
.cart-empty{color:var(--muted);text-align:center;margin-top:30px;}
.cart-item{display:flex;gap:10px;padding:12px 0;border-bottom:1px solid #2a2419;}
.cart-item img{width:56px;height:56px;object-fit:cover;border-radius:8px;flex-shrink:0;}
.cart-item-info{flex:1;}
.cart-item-name{font-weight:700;font-size:.88rem;}
.cart-item-meta{font-size:.72rem;color:var(--muted);}
.cart-item-controls{display:flex;align-items:center;gap:8px;margin-top:6px;}
.cart-item-controls button{
  width:22px;height:22px;border-radius:50%;border:1px solid var(--yellow);background:none;
  color:var(--yellow);font-weight:800;cursor:pointer;line-height:1;
}
.cart-item-price{font-weight:800;color:var(--yellow);font-size:.85rem;white-space:nowrap;}
.cart-item-remove{background:none;border:none;color:var(--red);font-size:.7rem;cursor:pointer;margin-top:6px;}
.cart-footer{padding:16px 18px;border-top:1px solid #2a2419;}
.cart-total-row{display:flex;justify-content:space-between;font-weight:800;font-size:1.1rem;margin-bottom:12px;color:var(--yellow);}
.cart-checkout-btn{width:100%;}

.whatsapp-float{
  position:fixed;bottom:22px;right:22px;z-index:250;
  width:58px;height:58px;border-radius:50%;background:#25D366;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.5);
  transition:transform .2s ease;
}
.whatsapp-float:hover{transform:scale(1.08);}
