/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #f0d98a;
  --dark: #1A1A1A;
  --mid: #555;
  --soft: #888;
  --border: #e8e8e8;
  --card-bg: #ffffff;
  --bg: #F9F8F6;
  --red-pill: #e74c3c;
  --brown-pill: #8B5E3C;
  --green-pill: #2e7d32;
  --yellow-pill: #B8860B;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.12);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  padding: 28px 20px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.header-badge {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.site-header h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.gold-bar {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 10px auto 12px;
  border-radius: 2px;
}

.header-tagline {
  font-size: 12px;
  color: var(--soft);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-location {
  font-size: 11px;
  color: #bbb;
  margin-top: 4px;
}

/* ===== STICKY NAV ===== */
.nav-container {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.super-nav {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.super-nav::-webkit-scrollbar { display: none; }

.super-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--dark);
  background: #fff;
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.super-tab:hover, .super-tab.active {
  background: var(--dark);
  color: #fff;
}

.super-tab-icon {
  font-size: 15px;
  flex-shrink: 0;
}

.cat-nav {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.cat-nav::-webkit-scrollbar { display: none; }

.cat-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  background: #fff;
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.cat-pill:hover, .cat-pill.active {
  background: var(--gold);
  color: #fff;
}

/* ===== MAIN CONTENT ===== */
.menu-main {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 0 60px;
  flex: 1;
  width: 100%;
}

/* ===== CATEGORY SECTION ===== */
.cat-section {
  padding: 24px 16px 8px;
}

.cat-header {
  position: relative;
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.cat-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-header-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cat-tag {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cat-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.cat-note {
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
  padding: 6px 12px;
  background: #fdf8ee;
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
}

/* ===== SUBCATEGORY LABEL ===== */
.subcat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--soft);
  margin: 16px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

/* ===== ITEM CARD ===== */
.item-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.item-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

.item-card-info {
  flex: 1;
  min-width: 0;
}

.item-name {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 5px;
}

.item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 6px;
}

.gravy-pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 2px 7px;
  border-radius: 20px;
  color: #fff;
}
.gravy-RED { background: var(--red-pill); }
.gravy-BROWN { background: var(--brown-pill); }
.gravy-GREEN { background: var(--green-pill); }
.gravy-YELLOW, .gravy-SWEET { background: var(--yellow-pill); }
.gravy-DRY { background: #555; }

.spicy-tag {
  font-size: 10px;
  color: var(--red-pill);
}

.item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-body);
}

.price-symbol {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
}

/* ===== BULK PRICE TABLE CARD ===== */
.bulk-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.bulk-card:hover { box-shadow: var(--shadow-hover); }

.bulk-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px 8px;
  border-bottom: 1px solid var(--border);
}

.bulk-item-name {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--dark);
  flex: 1;
}

.bulk-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bulk-price-cell {
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bulk-price-cell:first-child {
  border-right: 1px solid var(--border);
}

.bulk-qty-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--soft);
}

.bulk-price-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}

/* ===== SPECIAL BANNER ===== */
.special-banner {
  background: linear-gradient(135deg, #1A1A1A 0%, #2d2d2d 100%);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #333;
}

.special-banner-title {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.special-banner-sub {
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.special-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.special-item {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(201,168,76,0.2);
}

.special-item-name {
  font-size: 11px;
  color: #ddd;
  margin-bottom: 3px;
  line-height: 1.3;
}

.special-item-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

/* ===== DIVIDER ===== */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 16px 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: #aaa;
  text-align: center;
  padding: 24px 20px;
  font-size: 12px;
}
.footer-name {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-location { color: #666; font-size: 11px; }

/* ===== SCROLL INDICATOR ===== */
.scroll-hint {
  text-align: center;
  padding: 6px 0 2px;
  font-size: 10px;
  color: #bbb;
  letter-spacing: 0.5px;
}
.scroll-hint span { margin: 0 4px; }

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 360px) {
  .cat-title { font-size: 18px; }
  .item-name { font-size: 13px; }
  .bulk-price-val { font-size: 14px; }
}
