:root {
  --bg-dark: #0f0f11;
  --bg-card: #1a1a1e;
  --bg-card-light: #26262b;
  --brand-yellow: #ffcc00;
  --brand-orange: #ff6b00;
  --brand-red: #e63946;
  --card-blue: #256dd3;
  --brand-green: #25d366;
  --text-light: #f8f9fa;
  --text-muted: #a0a0ab;
  --font-heading: 'Bangers', cursive;
  --font-body: 'Outfit', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-glow: 0 8px 32px rgba(255, 204, 0, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding-bottom: 90px;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
.heading-font {
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* NAVIGATION */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 15, 17, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(255, 204, 0, 0.15);
  padding: 12px 20px;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--brand-yellow);
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-yellow);
}

.cart-badge-btn {
  position: relative;
  background: var(--brand-yellow);
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
  transition: transform 0.2s;
}

.cart-badge-btn:active {
  transform: scale(0.95);
}

.cart-count {
  background: var(--brand-red);
  color: white;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 0.8rem;
}

/* MOBILE BOTTOM NAV */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #141417;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  z-index: 999;
  justify-content: space-around;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 3px;
  cursor: pointer;
}

.mobile-nav-item.active {
  color: var(--brand-yellow);
}

.mobile-nav-item span {
  font-size: 1.3rem;
}

/* LAYOUT CONTAINERS */
.page-section {
  display: none;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px;
  animation: fadeIn 0.3s ease-in-out;
}

.google-map {
  width: 100%;
  height: 250px;
  background: #26262b;
  border-radius: var(--radius-md);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
}

.google-map iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.page-section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 40px 0 20px 0;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid var(--brand-orange);
  color: var(--brand-orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 3.8rem;
  line-height: 0.95;
  color: var(--brand-yellow);
  text-shadow: 3px 3px 0px var(--brand-red);
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 24px auto;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-yellow), var(--brand-orange));
  color: #000;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s;
  text-transform: uppercase;
}

.btn-secondary {
  background: var(--bg-card-light);
  color: var(--text-light);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  text-transform: uppercase;
}

.btn-primary:active,
.btn-secondary:active {
  transform: scale(0.96);
}

/* CATEGORY TABS */
.category-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 24px;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--brand-yellow);
  color: #000;
  border-color: var(--brand-yellow);
}

/* MENU GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.menu-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s;
}

.menu-card:hover {
  border-color: var(--brand-yellow);
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.item-num {
  background: var(--brand-orange);
  color: white;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 6px;
}

.item-title {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}

.item-price {
  color: var(--brand-yellow);
  font-size: 1.2rem;
  font-weight: 900;
}

.item-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
  flex-grow: 1;
}

.add-to-cart-btn {
  background: var(--bg-card-light);
  color: var(--brand-yellow);
  border: 1px solid var(--brand-yellow);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.add-to-cart-btn:active {
  background: var(--brand-yellow);
  color: #000;
}

/* CART & CHECKOUT */
.cart-drawer {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card-light);
  padding: 4px 8px;
  border-radius: 50px;
}

.qty-btn {
  background: none;
  border: none;
  color: var(--brand-yellow);
  font-weight: 900;
  font-size: 1.1rem;
  cursor: pointer;
  width: 24px;
  height: 24px;
}

/* FORM FIELDS */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  text-align: left;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: var(--bg-card-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 1rem;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-yellow);
}

/* PAYMENT BUTTON */
.btn-payment {
  background: var(--card-blue);
  color: #fff;
  font-weight: 900;
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 109, 211, 0.4);
}

/* RESPONSIVE DISPLAY */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-bottom-nav {
    display: flex;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}