:root{
  --y:#3B82F6;
  --o:#38BDF8;
  --r:#0A2540;

  --ink:#EAF0FF;
  --muted: rgba(234,240,255,.74);

  --bg0:#020617;
  --bg1:#0A2540;
  --bg2:#0F172A;

  --glassA: rgba(255,255,255,.08);
  --glassB: rgba(255,255,255,.04);
  --stroke: rgba(255,255,255,.18);

  --shadow: 0 22px 70px rgba(0,0,0,.55);
  --shadow2: 0 12px 35px rgba(0,0,0,.35);

  --radius: 22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--ink);

  background:
    radial-gradient(900px 600px at 12% 12%, rgba(59,130,246,0.18), transparent 60%),
    radial-gradient(900px 650px at 88% 18%, rgba(56,189,248,0.15), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg0));

  overflow-x: hidden;
}

/* ===== BACKGROUND IMAGE LAYER (assets/img/background.jpg) ===== */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  background: url("../img/background.jpg") center / cover no-repeat;
  filter: blur(22px) saturate(1.05);
  transform: scale(1.08);
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,1));
}

.container{width:min(1480px, 96vw); margin:0 auto}
a{color:inherit; text-decoration:none}

.glass{
  background: linear-gradient(135deg, var(--glassA), var(--glassB));
  border:1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius);
}

.small{font-size:.92rem; color: var(--muted); font-weight:650}

/* Logos */
.brand-logo{width:44px;height:44px;object-fit:contain;filter: drop-shadow(0 10px 30px rgba(0,0,0,.45));}
.footer-logo{width:42px;height:42px;object-fit:contain;opacity:.95}

/* Icons */
.icon{width:18px;height:18px;display:inline-block;vertical-align:-3px;color:rgba(234,240,255,.88)}
.icon.lg{width:20px;height:20px}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.55rem;
  padding:.92rem 1.05rem;
  border-radius: 999px;

  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  color: rgba(234,240,255,.92);

  font-weight:950;
  letter-spacing:.2px;

  box-shadow: 0 18px 45px rgba(0,0,0,.45);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, filter .22s ease;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}
.btn::after{
  content:"";
  position:absolute; inset:-130%;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,.35), transparent);
  transform: rotate(18deg) translateX(-35%);
  transition: transform .65s ease;
}

/* Base Hover */
.btn:hover{
  transform: translateY(-2px) !important;
  border-color: rgba(59,130,246,0.7) !important; 
  box-shadow: 0 26px 70px rgba(59,130,246,0.45) !important;
  filter: saturate(1.08) !important;
}
.btn:hover::after{
  transform: rotate(18deg) translateX(40%) !important;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.35), transparent) !important;
}

/* Primary Button Hover */
.btn.primary:hover{
  background: linear-gradient(135deg, rgba(59,130,246,.85), rgba(56,189,248,.75)) !important;
  color: #fff !important;
  box-shadow: 0 28px 105px rgba(59,130,246,.45) !important;
}
.btn.primary:hover{
  box-shadow: 0 28px 105px rgba(59,130,246,.45); /* Blue glow */
}

/* Danger Button */
.btn.danger{
  background: linear-gradient(135deg, rgba(207,15,15,.20), rgba(59,130,246,.15));
  border-color: rgba(59,130,246,.35);
  color: rgba(234,240,255,.92);
}
.btn.danger:hover{
  box-shadow: 0 28px 70px rgba(59,130,246,.35);
  border-color: rgba(59,130,246,.7);
}

/* WhatsApp Button */
.btn.whatsapp{
  background: linear-gradient(135deg, rgba(59,130,246,.75), rgba(56,189,248,.65));
  color: #fff;
  border-color: rgba(59,130,246,.22);
}
.btn.whatsapp:hover{
  box-shadow: 0 28px 70px rgba(59,130,246,.45);
  border-color: rgba(59,130,246,.7);
}

/* Pill */
.pill{
  padding:.55rem .88rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  color: rgba(234,240,255,.88);
  font-weight:900;
  font-size:.92rem;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  cursor:pointer;
}
.pill:hover{
  transform: translateY(-1px);
  border-color: rgba(59,130,246,.7); /* Blue border on hover */
  box-shadow: 0 12px 35px rgba(59,130,246,.35);
}
.pill.active{
  background: linear-gradient(135deg, rgba(59,130,246,.30), rgba(56,189,248,.22));
  border-color: rgba(59,130,246,.45);
}

/* Header */
header.site-header{
  position:sticky; top:0; z-index:50;
  padding: .9rem 0;
}
.header-bar{
  display:flex; align-items:center; justify-content:space-between;
  padding: .8rem 1rem;
}

.brand{display:flex; align-items:center; gap:.75rem}
.brand .title{font-weight:1000; letter-spacing:.2px}

.nav{display:flex; align-items:center; gap:1.1rem; font-weight:900; color: rgba(234,240,255,.82)}
.nav a{position:relative; padding:.35rem .2rem; opacity:.9; transition:opacity .18s ease}
.nav a:hover{opacity:1}
.nav a::after{
  content:""; position:absolute; left:.2rem; right:.2rem; bottom:-.18rem; height:2px;
  background: linear-gradient(90deg, var(--y), var(--o), var(--r));
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .22s ease;
  border-radius:99px;
}
.nav a:hover::after{transform:scaleX(1)}

.header-actions{display:flex; align-items:center; gap:.6rem}
.icon-btn{
  width:46px; height:46px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  box-shadow: var(--shadow2);
  display:grid; place-items:center;
  cursor:pointer;
  position:relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  color: rgba(234,240,255,.96);
}
.icon-btn:hover{transform: translateY(-2px); box-shadow: 0 26px 90px rgba(0,0,0,.6); border-color: rgba(255,229,42,.45);}

.badge{
  position:absolute; top:-6px; right:-6px;
  min-width:20px; height:20px; padding:0 6px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--r), var(--o));
  color:white;
  display:flex; align-items:center; justify-content:center;
  font-size:.75rem; font-weight:1000;
  border:2px solid rgba(10,12,18,.75);
  box-shadow: 0 10px 22px rgba(207,15,15,.25);
}

/* Hero */
.hero{padding: 2.2rem 0 1.4rem;}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.6rem;
  align-items:center;
}
.kicker{display:inline-flex; gap:.5rem; align-items:center; color: rgba(234,240,255,.78); font-weight:950}
.kicker .dot{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(135deg, var(--y), var(--o), var(--r));
  box-shadow: 0 0 0 7px rgba(255,229,42,.12);
}
.hero h1{
  font-size: clamp(2.3rem, 3.2vw, 3.35rem);
  line-height:1.07;
  margin:.75rem 0 .8rem;
  letter-spacing:-.8px;
}
.hero h1 .highlight{
  display:inline-flex;
  align-items:center;
  line-height:1;
  padding:.18rem .72rem .22rem;
  border-radius: 999px;
  transform: translateY(2px);
  background: linear-gradient(135deg, rgba(255,229,42,.22), rgba(247,154,25,.14));
  border:1px solid rgba(255,229,42,.35);
  box-shadow: 0 14px 40px rgba(247,154,25,.18);
}
.hero p{color: rgba(234,240,255,.72); max-width: 50ch; font-weight:680}
.hero-cta{display:flex; gap:1rem; align-items:center; margin: 1.1rem 0 0.8rem; flex-wrap:wrap}
.hero-meta{display:flex; gap:1.25rem; align-items:center; color: rgba(234,240,255,.70); font-weight:850; margin-top:.65rem}

.hero-art{
  position:relative;
  display:grid; place-items:center;
  min-height: 470px;
}
.dashed-ring{
  position:absolute;
  width:min(430px, 88%);
  aspect-ratio:1/1;
  border-radius:50%;
  border: 5px dashed rgba(247,154,25,.55);
  filter: drop-shadow(0 26px 75px rgba(247,154,25,.22));
  animation: spin 20s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}

.plate{
  width:min(420px, 90%);
  aspect-ratio:1/1;
  border-radius:50%;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.12), rgba(255,255,255,.03));
  display:grid; place-items:center;
  box-shadow: 0 55px 140px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.14);
  overflow:hidden;
  position:relative;
}
.plate img{width:100%; height:100%; object-fit:cover}

.hero-float-card{
  position:absolute;
  left: 0;
  bottom: 26px;
  width: min(330px, 82%);
  padding: .85rem .9rem;
  display:flex; gap:.85rem; align-items:center;
  transform: translateX(-12%);
}
.hero-float-card img{width:56px; height:56px; border-radius:14px; object-fit:cover; border:1px solid rgba(255,255,255,.14)}
.stars{color: rgba(255,229,42,.95); font-weight:1000; letter-spacing:.4px}
.price{font-weight:1000; color: rgba(255,255,255,.92)}

/* Sections */
.section{padding: 2.2rem 0}
.section h2{font-size: clamp(1.55rem, 2.2vw, 2.1rem); margin:0 0 .75rem; letter-spacing:-.4px}
.section .sub{color: rgba(234,240,255,.72); font-weight:650; margin:0 0 1.25rem; max-width: 70ch}

.cat-pills{display:flex; gap:.55rem; flex-wrap:wrap; margin: .6rem 0 1.2rem}

.grid{display:grid; gap: 1.1rem}
.food-grid{grid-template-columns: repeat(4, 1fr)}
@media (max-width: 1200px){ .food-grid{grid-template-columns: repeat(3, 1fr)} }
@media (max-width: 950px){ .hero-grid{grid-template-columns:1fr} .hero-art{min-height: 430px} .food-grid{grid-template-columns: repeat(2, 1fr)} }
@media (max-width: 760px){ .nav{display:none} }
@media (max-width: 520px){ .food-grid{grid-template-columns:1fr} .hero-float-card{transform:none; left: 8px; right: 8px} }

.food-card{
  position:relative;
  overflow:hidden;
  padding: .85rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.food-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  border-color: rgba(247,154,25,.45);
}
.food-img{
  width:100%;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 45px rgba(0,0,0,.40);
  position:relative;
}
.food-img img{width:100%; height:100%; object-fit:cover; transition: transform .35s ease}
.food-card:hover .food-img img{transform: scale(1.06)}
.food-body{padding:.75rem .1rem 0}
.food-title{font-weight:1000; margin:0; letter-spacing:-.2px; color: rgba(234,240,255,.92)}
.food-price{font-weight:1000; color: rgba(255,229,42,.95); margin:.25rem 0 .65rem}
.food-actions{display:flex; justify-content:space-between; align-items:center; gap:.6rem}
.tag{
  font-size:.78rem; font-weight:1000;
  padding:.32rem .55rem;
  border-radius:999px;
  background: rgba(255,229,42,.20);
  border:1px solid rgba(255,229,42,.32);
  color: rgba(234,240,255,.92);
}

.overlay{
  position:absolute; inset:0;
  padding: 1rem;
  display:flex; flex-direction:column; justify-content:flex-end;
  background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.78));
  opacity:0;
  transition: opacity .22s ease;
}
.food-card:hover .overlay{opacity:1}
.overlay .meta{ color: rgba(255,255,255,.95); font-weight:900; }
.overlay .desc{ color: rgba(255,255,255,.85); font-weight:650; margin:.35rem 0 0; font-size:.92rem; }

/* About aesthetics */
.about-card{position:relative; overflow:hidden}
.about-card::before{
  content:"";
  position:absolute; inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,229,42,.12), transparent 55%),
              radial-gradient(circle at 80% 20%, rgba(247,154,25,.10), transparent 55%),
              radial-gradient(circle at 70% 80%, rgba(207,15,15,.10), transparent 55%);
  filter: blur(14px);
  z-index:0;
}
.about-card > *{position:relative; z-index:1}

.feature-chips{display:flex; flex-wrap:wrap; gap:.55rem; margin-top:.85rem}
.chip{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.55rem .75rem;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight:900;
  color: rgba(234,240,255,.85);
}

/* Toast */
.toast{
  position:fixed;
  left: 16px;
  bottom: 16px;
  z-index: 90;
  padding:.8rem .95rem;
  display:flex; gap:.6rem; align-items:flex-start;
  max-width:min(360px, 90vw);
  opacity:0; transform: translateY(10px);
  pointer-events:none;
  transition: opacity .22s ease, transform .22s ease;
}
.toast.show{opacity:1; transform:none}
.toast .tick{
  width:26px; height:26px; border-radius:999px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--y), var(--o), var(--r));
  color:#1b1600; font-weight:1000;
}

/* Cart drawer */
.drawer-backdrop{
  position:fixed; inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity:0; pointer-events:none;
  transition: opacity .22s ease;
  z-index: 80;
}
.drawer-backdrop.show{opacity:1; pointer-events:auto}

.drawer{
  position:fixed;
  top: 0; right: 0;
  width: min(430px, 92vw);
  height: 100vh;
  transform: translateX(100%);
  transition: transform .26s ease;
  z-index: 85;
  border-radius: 26px 0 0 26px;
  border-left: 1px solid rgba(255,255,255,.14);
}
.drawer.open{transform: translateX(0)}
.drawer-header{
  padding: 1rem 1rem .6rem;
  display:flex; align-items:center; justify-content:space-between; gap: .8rem;
}
.drawer-title{font-weight:1000}
.drawer-close{
  width:42px; height:42px; border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  cursor:pointer;
  color: rgba(234,240,255,.92);
  display:grid; place-items:center;
}
.drawer-body{
  padding: .35rem 1rem 1rem;
  height: calc(100vh - 72px);
  overflow:auto;
}

.cart-list{display:flex; flex-direction:column; gap:.75rem; margin:.6rem 0 1rem}
.cart-item{
  display:flex; gap:.8rem; align-items:center;
  padding: .75rem;
}
.cart-item img{width:56px; height:56px; border-radius: 14px; object-fit:cover; border:1px solid rgba(255,255,255,.14)}
.cart-item .name{font-weight:1000}
.cart-item .meta{color: rgba(234,240,255,.70); font-weight:750; font-size:.92rem}
.cart-item .right{margin-left:auto; display:flex; align-items:center; gap:.5rem}
.qty{
  width:34px; height:34px; border-radius: 12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  display:grid; place-items:center;
  font-weight:1000;
}
.remove{
  width:34px; height:34px; border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  cursor:pointer;
  font-weight:1000;
  color: rgba(234,240,255,.92);
}

.totalbox{
  padding: .9rem;
  display:flex; align-items:center; justify-content:space-between;
  margin-top: .9rem;
}
.totalbox .t{font-weight:1000}
.totalbox .v{font-weight:1100; color: rgba(255,229,42,.95)}
.cart-actions{display:flex; gap:.6rem; flex-wrap:wrap; margin-top:.9rem}

/* Reviews */
.reviews-grid{grid-template-columns: repeat(3, 1fr)}
@media (max-width: 900px){ .reviews-grid{grid-template-columns: 1fr 1fr} }
@media (max-width: 560px){ .reviews-grid{grid-template-columns: 1fr} }

.review-card{padding: 1rem}
.review-top{display:flex; align-items:center; justify-content:space-between}
.review-name{font-weight:1000}
.review-stars{color: rgba(255,229,42,.92); font-weight:1000}
.review-comment{margin:.6rem 0 0; color: rgba(234,240,255,.72); font-weight:650}

/* Map/contact */
.map-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap: 1.1rem; align-items:stretch}
@media (max-width: 900px){ .map-grid{grid-template-columns: 1fr} }

.map-frame{
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow2);
}
.map-frame iframe{width:100%; height: 360px; border:0; filter: saturate(1.05) contrast(1.05);}

/* Contact button cleanup */
.contact-actions .btn::after{display:none}
.contact-actions .btn{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 16px 50px rgba(0,0,0,.45);
}
.contact-actions .btn:hover{
  border-color: rgba(255,229,42,.40);
  transform: translateY(-2px);
}
.contact-actions .btn.primary{
  background: linear-gradient(135deg, rgba(255,229,42,.96), rgba(247,154,25,.90), rgba(207,15,15,.90));
  color:#120a00;
  border:0;
}

/* Footer */
.footer{
  padding: 1.6rem 0 2.2rem;
  margin-top: 1.2rem;
}
.footer-grid{display:grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 1rem}
@media (max-width: 900px){ .footer-grid{grid-template-columns: 1fr} }
.footer small{color: rgba(234,240,255,.70); font-weight:650}
.footer h4{margin:0 0 .55rem}
.footer a{color: rgba(234,240,255,.74); font-weight:800}
.footer a:hover{color: rgba(255,229,42,.95)}

/* Reveal */
.reveal{opacity:0; transform: translateY(12px); transition: opacity .55s ease, transform .55s ease}
.reveal.show{opacity:1; transform:none}

.hero-meta span{display:inline-flex; align-items:center; gap:.45rem}
.contact-actions .btn{justify-content:center}
