:root {
  --dark: #111111;
  --dark-soft: #191919;
  --yellow: #ffc107;
  --orange: #ff8a00;
  --text: #262626;
  --muted: #6c757d;
  --bg: #fff8ef;
  --radius: 1.5rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
}

a { text-decoration: none; }

img { max-width: 100%; }

.fw-black { font-weight: 900; letter-spacing: -0.04em; }
.text-white-75 { color: rgba(255,255,255,.75); }
.section-padding { padding: 88px 0; }
.bg-dark-soft { background: var(--dark-soft); }
.shadow-soft { box-shadow: 0 24px 60px rgba(0,0,0,.16); }

.glass-navbar {
  background: rgba(17, 17, 17, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.navbar .nav-link {
  color: rgba(255,255,255,.78);
  font-weight: 600;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus { color: #fff; }

.brand-icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  margin-right: .35rem;
}

.hero-section {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #111 0%, #1f1206 45%, #5b2b00 100%);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(255,193,7,.2), transparent 35%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.08));
}

.hero-stats span {
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: .55rem .85rem;
  font-weight: 700;
  font-size: .92rem;
}

.hero-card { position: relative; }
.hero-card img { aspect-ratio: 1 / 1.1; object-fit: cover; box-shadow: 0 30px 80px rgba(0,0,0,.45); }

.floating-offer {
  position: absolute;
  left: -28px;
  bottom: 34px;
  background: #fff;
  color: var(--dark);
  padding: 1rem 1.25rem;
  border-radius: 1.25rem;
  display: grid;
  gap: 2px;
}

.floating-offer small { color: var(--muted); font-weight: 700; }
.floating-offer span { color: #198754; font-weight: 900; }

.feature-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform .25s ease, background .25s ease;
}
.feature-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.09); }
.feature-card i { color: var(--yellow); font-size: 2rem; }
.feature-card h3 { font-size: 1.1rem; margin: 1rem 0 .5rem; font-weight: 800; }
.feature-card p { margin: 0; color: rgba(255,255,255,.7); }

.section-kicker {
  color: var(--orange);
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .16em;
  font-weight: 900;
}
.section-title {
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: .4rem 0 .8rem;
}
.section-description { color: var(--muted); font-size: 1.08rem; }

.menu-section { background: var(--bg); }

.search-box {
  min-height: 54px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 0 1.1rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.search-box i { color: var(--orange); font-size: 1.2rem; }
.search-box input {
  border: 0;
  outline: 0;
  width: 100%;
  font-weight: 600;
  background: transparent;
}

.sticky-top-tabs {
  position: sticky;
  top: 72px;
  z-index: 10;
  background: rgba(255,248,239,.92);
  backdrop-filter: blur(10px);
  padding: .75rem 0;
}

.category-tabs {
  display: flex;
  gap: .75rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.category-btn {
  border: 0;
  white-space: nowrap;
  min-height: 44px;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.category-btn.active,
.category-btn:hover { background: var(--dark); color: #fff; }

.menu-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.menu-card:hover { transform: translateY(-5px); box-shadow: 0 24px 54px rgba(0,0,0,.12); }
.menu-card img { width: 100%; height: 210px; object-fit: cover; }
.menu-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.menu-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: .3rem .7rem;
  background: rgba(255,193,7,.22);
  color: #9b5d00;
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: .8rem;
}
.menu-card h3 { font-size: 1.25rem; font-weight: 900; }
.menu-card p { color: var(--muted); flex: 1; }
.price { font-size: 1.25rem; font-weight: 900; color: #198754; }
.add-btn { min-height: 44px; }

.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted);
}
.empty-state i { font-size: 3rem; color: var(--orange); }

.promo-section { background: var(--dark); }
.promo-box { background: linear-gradient(135deg, rgba(255,193,7,.18), rgba(255,138,0,.1)), #171717; border: 1px solid rgba(255,255,255,.08); }

.review-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0,0,0,.07);
}
.stars { color: var(--yellow); letter-spacing: .08em; font-weight: 900; margin-bottom: .75rem; }

.gallery-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
}

.contact-section { background: #111; }
.contact-list p { display: flex; gap: .75rem; align-items: flex-start; color: rgba(255,255,255,.78); }
.contact-list i { color: var(--yellow); font-size: 1.2rem; }
.map-placeholder {
  min-height: 360px;
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
}
.map-placeholder i { font-size: 3rem; color: var(--yellow); }

.footer { background: #080808; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.7); font-weight: 700; }
.footer-links a:hover { color: #fff; }
.social-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  margin-left: .35rem;
}
.social-link:hover { background: var(--yellow); color: var(--dark); }

.cart-floating,
.whatsapp-floating {
  position: fixed;
  right: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  z-index: 1040;
  display: grid;
  place-items: center;
  border: 0;
  box-shadow: 0 16px 32px rgba(0,0,0,.22);
}
.cart-floating {
  bottom: 92px;
  background: var(--yellow);
  color: var(--dark);
}
.whatsapp-floating {
  bottom: 24px;
  background: #25d366;
  color: #fff;
  font-size: 1.5rem;
}
.cart-floating i { font-size: 1.35rem; }
.cart-floating span {
  position: absolute;
  top: -4px;
  right: -2px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: #dc3545;
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 900;
}

.cart-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: .75rem;
  align-items: center;
  padding: .85rem 0;
  border-bottom: 1px solid #eee;
}
.cart-item img { width: 58px; height: 58px; object-fit: cover; border-radius: .9rem; }
.cart-item h4 { font-size: .95rem; font-weight: 900; margin: 0; }
.cart-item small { color: var(--muted); }
.qty-controls { display: flex; align-items: center; gap: .4rem; }
.qty-controls button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  font-weight: 900;
}

@media (max-width: 991px) {
  .section-padding { padding: 68px 0; }
  .hero-section { min-height: auto; }
  .hero-section .min-vh-100 { min-height: 780px !important; }
}

@media (max-width: 575px) {
  .hero-section .min-vh-100 { min-height: 720px !important; }
  .hero-stats span { width: 100%; }
  .menu-card img { height: 190px; }
  .cart-floating, .whatsapp-floating { right: 14px; }
}
