/* ============================================
   GIZDODOSPECIALS — Customer-Facing Styles
   #EBB213 Primary · Black Text · Nunito Font · Mobile-First
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
  --bg:          #FFFBF5;
  --bg-secondary:#FFF8EC;
  --bg-card:     #FFFFFF;
  --text:        #111111;
  --text-muted:  #6B6B6B;
  --text-subtle: #333333;
  --primary:     #EBB213;
  --primary-dark:#D49E10;
  --primary-pale:#FFF6D6;
  --accent:      #FEF0B8;
  --accent-fg:   #1A1A1A;
  --border:      #E8D5A0;
  --border-input:#D4C090;
  --destructive: #DC2626;
  --success:     #16A34A;
  --overlay:     rgba(0,0,0,0.5);
  --footer-bg:   #B91C1C;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-full: 9999px;
  --shadow-sm:   0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 24px rgba(0,0,0,0.12);
  --transition:  0.2s ease;
  --font:        'Nunito', system-ui, -apple-system, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-input); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #C0A870; }

/* --- Skip Nav --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}
.skip-nav:focus { top: 16px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand img { height: 36px; width: auto; object-fit: contain; border-radius: 4px; }
.navbar-brand span {
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.navbar-links {
  display: none;
  gap: 4px;
  list-style: none;
}
.navbar-links a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--primary-dark); }
.navbar-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.navbar-actions { display: flex; align-items: center; gap: 8px; }

.navbar-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--text);
  transition: color var(--transition), background var(--transition);
}
.navbar-cart-btn:hover { color: var(--primary); background: rgba(235,178,19,0.1); }
.navbar-cart-btn svg { width: 22px; height: 22px; }

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: var(--destructive);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: var(--radius-full);
  pointer-events: none;
}

.navbar-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: color var(--transition), background var(--transition);
}
.navbar-menu-btn:hover { color: var(--primary); background: rgba(235,178,19,0.1); }
.navbar-menu-btn svg { width: 22px; height: 22px; }

/* Mobile nav sheet */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 288px;
  height: 100vh;
  z-index: 200;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { right: 0; }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-nav-header { display: flex; align-items: center; padding: 20px 24px; }
.mobile-nav-header img { height: 32px; border-radius: 4px; }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 0 24px; }
.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 12px;
  list-style: none;
}
.mobile-nav-links a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active { color: var(--primary); background: rgba(235,178,19,0.08); }
.mobile-nav-footer { padding: 16px 24px; font-size: 12px; color: var(--text-muted); }

@media (min-width: 768px) {
  .navbar { padding: 0 24px; }
  .navbar-links { display: flex; }
  .navbar-menu-btn { display: none; }
}

/* ============================================
   HERO SECTION (image background)
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/gizdodo-regular.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 64px 16px 48px;
}
.hero h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}
.hero-subtitle {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.hero .btn-primary {
  background: var(--primary);
  color: var(--text);
}
.hero .btn-primary:hover { background: var(--primary-dark); }
.hero .btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.hero .btn-outline:hover { background: rgba(255,255,255,0.15); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1       { animation: fadeUp 0.5s ease both; }
.hero-subtitle { animation: fadeUp 0.5s ease 0.1s both; }
.hero-actions  { animation: fadeUp 0.5s ease 0.2s both; }

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

@media (min-width: 640px) {
  .hero { min-height: 480px; }
  .hero-content { padding: 96px 24px 64px; }
  .hero h1 { font-size: 40px; white-space: normal; }
  .hero-subtitle { font-size: 16px; }
  .hero-actions { flex-direction: row; justify-content: center; }
}
@media (min-width: 1024px) {
  .hero { min-height: 540px; }
  .hero-content { padding: 112px 32px 80px; }
  .hero h1 { font-size: 48px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--text); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary-pale); }
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-icon { width: 36px; height: 36px; padding: 0; border-radius: var(--radius-full); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ============================================
   BUSINESS INFO SECTION
   ============================================ */
.biz-info {
  padding: 56px 16px;
  background: var(--bg);
}
.biz-info-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.biz-info-card h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}
.biz-info-card p {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.7;
}
.biz-info-card .hours {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.biz-info-card .thanks {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.7;
}
@media (min-width: 640px) {
  .biz-info { padding: 80px 24px; }
  .biz-info-card { padding: 36px 32px; }
  .biz-info-card h2 { font-size: 24px; }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose {
  padding: 56px 16px;
  background: var(--bg);
}
.why-choose-heading { text-align: center; margin-bottom: 40px; }
.why-choose-heading h2 { font-size: 24px; font-weight: 800; color: var(--text); }
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.why-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: var(--radius-full);
  background: var(--primary-pale);
}
.why-card-icon svg { width: 24px; height: 24px; color: var(--primary); }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.why-card p { font-size: 14px; font-weight: 500; color: var(--text-muted); line-height: 1.7; }
@media (min-width: 640px) {
  .why-choose { padding: 80px 24px; }
  .why-choose-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .why-choose-heading h2 { font-size: 30px; }
  .why-card h3 { font-size: 18px; }
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
  padding: 56px 16px;
  background: var(--bg);
  min-height: 80vh;
}
.menu-container { max-width: 1100px; margin: 0 auto; }
.menu-heading { text-align: center; margin-bottom: 8px; }
.menu-heading h2 { font-size: 28px; font-weight: 800; color: var(--text); }
.menu-subtitle { text-align: center; font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }

/* Category tabs — All / Mains / Drinks only */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.category-tab {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.category-tab:hover { background: var(--primary-pale); }
.category-tab.active { background: var(--primary); color: var(--text); border-color: var(--primary); }

/* Product grid — 3 per row */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.section-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

/* ============================================
   PRODUCT CARD
   ============================================ */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-card:hover { box-shadow: var(--shadow-md); border-color: rgba(235,178,19,0.3); }

.product-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  position: relative;
}
/* Tier-based image area backgrounds */
.product-card.tier-regular .product-card-image {
  background: linear-gradient(135deg, #FFF8EC 0%, #FCEABB 50%, #F5D78E 100%);
}
.product-card.tier-maxi .product-card-image {
  background: linear-gradient(135deg, #FFF0F0 0%, #FECACA 50%, #F8A0A0 100%);
}
.product-card.tier-combo .product-card-image {
  background: linear-gradient(135deg, #2D1B00 0%, #4A3000 50%, #6B4700 100%);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.03); }
.product-card-image .placeholder-icon {
  color: var(--primary);
  opacity: 0.3;
}
.product-card-image .placeholder-icon svg { width: 48px; height: 48px; }

.product-card-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-card-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.product-card-body .desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Per-card extras indicator (always visible for products with extras) */
.extras-indicator {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.extras-indicator-red {
  color: var(--destructive);
}

/* Per-product tier radio buttons — compact inline chips */
.product-tier-radios {
  display: flex;
  flex-direction: row;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.ptier-radio {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
  color: var(--text-muted);
}
.ptier-radio:hover:not(.active) {
  color: var(--text);
}
.ptier-radio.active {
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.ptier-radio .ptier-label {
  font-size: 12px;
  font-weight: 700;
  color: inherit;
}
.ptier-radio .ptier-price {
  font-size: 12px;
  font-weight: 700;
  color: inherit;
}
/* Tier colors — only applied when active */
.ptier-regular.active { background: #EBB213; color: #111; }
.ptier-maxi.active   { background: #DC2626; color: #fff; }
.ptier-combo.active  { background: #1A1A1A; color: #fff; }

/* Combo badge — shown next to product name when Special Combo is selected */
.combo-badge {
  display: inline-flex;
  align-items: center;
  background: var(--primary-pale);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 6px;
  vertical-align: middle;
  line-height: 1.4;
}

/* ============================================
   EXTRAS PICKER SHEET
   ============================================ */
.extras-picker {
  position: fixed; top: 0; right: -420px; width: 100%; max-width: 400px; height: 100vh;
  z-index: 450; background: var(--bg-card); border-left: 1px solid var(--border);
  display: flex; flex-direction: column; transition: right 0.3s ease;
}
.extras-picker.open { right: 0; }
.extras-picker-overlay {
  position: fixed; inset: 0; z-index: 449; background: var(--overlay); opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.extras-picker-overlay.open { opacity: 1; pointer-events: auto; }
.extras-picker-header {
  display: flex; align-items: center; gap: 12px; padding: 20px 24px 16px;
}
.extras-picker-header h3 { font-size: 18px; font-weight: 700; color: var(--text); }
.extras-picker-pending {
  padding: 0 24px 16px; border-bottom: 1px solid var(--border);
}
.extras-picker-pending .name { font-size: 16px; font-weight: 700; color: var(--text); }
.extras-picker-pending .tier { font-size: 14px; color: var(--text-muted); margin-top: 2px; }
.extras-picker-body {
  flex: 1; overflow-y: auto; padding: 20px 24px;
}
.extras-picker-body .extras-section-title {
  font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 12px;
}
.extras-item {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border-radius: var(--radius-lg); border: 1.5px solid var(--border);
  background: var(--bg-card); cursor: pointer; transition: all var(--transition); margin-bottom: 8px;
}
.extras-item:hover { border-color: rgba(235,178,19,0.3); }
.extras-item.selected { border-color: var(--primary); background: var(--primary-pale); }
.extras-item-check {
  width: 22px; height: 22px; border-radius: 6px; border: 2px solid var(--border-input); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition);
}
.extras-item.selected .extras-item-check { background: var(--primary); border-color: var(--primary); color: var(--text); }
.extras-item-check svg { width: 14px; height: 14px; opacity: 0; }
.extras-item.selected .extras-item-check svg { opacity: 1; }
.extras-item-name { flex: 1; font-size: 14px; font-weight: 600; color: var(--text); }
.extras-item-price { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.extras-picker-footer {
  padding: 16px 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px;
}
.extras-total-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.extras-total-row .label { color: var(--text-muted); }
.extras-total-row .value { font-size: 18px; font-weight: 700; color: var(--text); }

.product-card.tier-drink .product-card-image {
  background: linear-gradient(135deg, #FFF8EC 0%, #FCEABB 50%, #F5D78E 100%);
}

/* Add-to-order button in card */
.product-add-btn {
  margin-top: 12px;
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}
.product-add-btn:hover { background: var(--primary-dark); }
.product-add-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* 3-col grid at 768+ */
@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-heading h2 { font-size: 32px; }
}



/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 56px 16px;
  background: var(--bg-secondary);
  text-align: center;
}
.cta-section h2 { font-size: 24px; font-weight: 800; color: var(--text); }
.cta-section p { margin-top: 12px; font-size: 15px; font-weight: 500; color: var(--text-muted); line-height: 1.7; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-section .btn { margin-top: 24px; }
@media (min-width: 640px) {
  .cta-section { padding: 80px 24px; }
  .cta-section h2 { font-size: 30px; }
}

/* ============================================
   TRACK ORDER SECTION
   ============================================ */
.track-section {
  padding: 56px 16px;
  background: var(--bg);
  min-height: 80vh;
}
.track-container { max-width: 640px; margin: 0 auto; }
.track-heading { text-align: center; margin-bottom: 8px; }
.track-heading h2 { font-size: 24px; font-weight: 800; color: var(--text); }
.track-subtitle { text-align: center; font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.track-search { display: flex; gap: 12px; margin-bottom: 32px; }
.track-search input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-lg);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.track-search input::placeholder { color: rgba(107,107,107,0.4); }
.track-search input:focus { border-color: rgba(235,178,19,0.6); box-shadow: 0 0 0 3px rgba(235,178,19,0.15); }
.track-error {
  background: rgba(220,38,38,0.05);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--destructive);
  margin-bottom: 32px;
}

.track-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
}
.track-card-header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.track-order-num { font-size: 12px; color: var(--text-muted); }
.track-order-num strong { display: block; font-size: 18px; font-family: 'Courier New', monospace; font-weight: 700; color: var(--text); }
.status-badge { display: inline-block; padding: 4px 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; border-radius: var(--radius-full); color: #fff; }
.status-badge.payment_pending  { background: var(--primary); }
.status-badge.confirmed       { background: var(--success); }
.status-badge.preparing       { background: var(--primary); }
.status-badge.ready           { background: var(--destructive); }
.status-badge.out_for_delivery{ background: var(--primary); }
.status-badge.delivered       { background: #15803D; }
.status-badge.cancelled       { background: var(--destructive); }

.track-details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; font-size: 13px; }
.track-detail-label { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.track-detail-value { font-weight: 600; color: var(--text); }
.track-detail-value.total { color: var(--primary); font-weight: 700; }

.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-step { display: flex; gap: 16px; }
.timeline-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full); background: var(--bg); border: 2px solid var(--border);
  color: rgba(107,107,107,0.4); flex-shrink: 0; transition: all 0.3s ease;
}
.timeline-icon svg { width: 20px; height: 20px; }
.timeline-step.completed .timeline-icon { background: var(--primary); border-color: var(--primary); color: var(--text); }
.timeline-step.current .timeline-icon { background: var(--primary); border-color: var(--primary); color: var(--text); box-shadow: 0 0 0 6px rgba(235,178,19,0.2); }
.timeline-line { width: 2px; height: 48px; margin-left: 19px; background: var(--border); transition: background 0.3s ease; }
.timeline-line.completed { background: var(--primary); }
.timeline-content { padding-top: 10px; padding-bottom: 24px; }
.timeline-content .label { font-size: 14px; font-weight: 600; color: var(--text); }
.timeline-content .current-label { font-size: 12px; color: var(--primary); font-weight: 600; margin-top: 4px; }
.timeline-step:not(.completed):not(.current) .timeline-content .label { color: rgba(107,107,107,0.4); }

.track-items { margin-bottom: 24px; }
.track-item-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; font-size: 14px; padding: 8px 0; }
.track-item-row + .track-item-row { border-top: 1px solid var(--border); }
.track-item-total { display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); margin-top: 4px; font-weight: 700; }
.track-item-total .amount { color: var(--primary); }

@media (min-width: 640px) {
  .track-heading h2 { font-size: 30px; }
  .track-details-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { padding: 56px 16px; background: var(--bg); min-height: 80vh; }
.contact-container { max-width: 720px; margin: 0 auto; }
.contact-heading { text-align: center; margin-bottom: 8px; }
.contact-heading h2 { font-size: 24px; font-weight: 800; color: var(--text); }
.contact-subtitle { text-align: center; font-size: 14px; color: var(--text-muted); margin-bottom: 40px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: rgba(235,178,19,0.3); }
.contact-card-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--radius-full); background: var(--primary-pale); margin-bottom: 16px; }
.contact-card-icon svg { width: 24px; height: 24px; color: var(--primary); }
.contact-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.contact-card p { font-size: 14px; font-weight: 500; color: var(--text-muted); line-height: 1.7; }
.contact-card a { color: var(--primary); font-weight: 600; font-size: 14px; margin-top: 12px; display: block; }
.contact-card a:hover { text-decoration: underline; }

.payment-info-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-top: 32px;
}
.payment-info-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.payment-info-card-header .icon-wrap { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius-full); background: var(--primary-pale); }
.payment-info-card-header .icon-wrap svg { width: 20px; height: 20px; color: var(--primary); }
.payment-info-card-header h3 { font-size: 16px; font-weight: 700; color: var(--text); }
.payment-info-card > p { font-size: 14px; font-weight: 500; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.payment-info-row { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; }
.payment-info-row .label { color: var(--text-muted); }
.payment-info-row .value { color: var(--text); font-weight: 600; }
.payment-info-row .value.mono { font-family: 'Courier New', monospace; }

@media (min-width: 640px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-heading h2 { font-size: 30px; }
}

/* ============================================
   FOOTER (red bg, white text, 4-column, IG only)
   ============================================ */
.footer {
  background: var(--footer-bg);
  padding: 56px 16px 24px;
  position: relative;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.footer-brand {
  grid-column: 1 / -1;
}
.footer-brand-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 480px;
}
.footer-links h4,
.footer-info h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 16px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-info .hours-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.footer-info .hours-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}
.footer-info .socials {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  color: #fff;
  transition: background var(--transition), transform var(--transition);
}
.footer-social-link:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }
.footer-social-link svg { width: 20px; height: 20px; }
.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-brand { grid-column: 1; }
}
@media (min-width: 640px) {
  .footer { padding: 64px 24px 24px; }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background var(--transition);
  transform: translateY(12px);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); }
.back-to-top svg { width: 20px; height: 20px; }

/* ============================================
   CART DRAWER
   ============================================ */
.cart-drawer {
  position: fixed; top: 0; right: -420px; width: 100%; max-width: 400px; height: 100vh;
  z-index: 400; background: var(--bg-card); border-left: 1px solid var(--border);
  display: flex; flex-direction: column; transition: right 0.3s ease;
}
.cart-drawer.open { right: 0; }
.cart-drawer-overlay { position: fixed; inset: 0; z-index: 399; background: var(--overlay); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.cart-drawer-overlay.open { opacity: 1; pointer-events: auto; }

.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 20px 12px; }
.cart-header h3 { font-size: 18px; font-weight: 700; color: var(--text); }
.cart-header .count { font-size: 13px; color: var(--text-muted); font-weight: 500; }

.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 24px; text-align: center; }
.cart-empty-icon { width: 80px; height: 80px; border-radius: var(--radius-full); background: var(--primary-pale); display: flex; align-items: center; justify-content: center; }
.cart-empty-icon svg { width: 40px; height: 40px; color: var(--primary); opacity: 0.6; }
.cart-empty p { font-size: 16px; font-weight: 600; color: var(--text); opacity: 0.6; }

.cart-items { flex: 1; overflow-y: auto; padding: 8px 20px; display: flex; flex-direction: column; gap: 12px; }
.cart-item { display: flex; gap: 12px; padding: 12px; background: var(--bg); border-radius: var(--radius-lg); border: 1px solid var(--border); }
.cart-item-img { width: 56px; height: 56px; border-radius: var(--radius-sm); background: var(--bg-secondary); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-img svg { width: 24px; height: 24px; color: var(--primary); opacity: 0.4; }
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-name-row { display: flex; align-items: center; gap: 8px; }
.cart-item-name { font-size: 14px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-badge { display: inline-block; padding: 1px 6px; font-size: 10px; font-weight: 700; background: var(--primary); color: var(--text); border-radius: var(--radius-full); flex-shrink: 0; }
.cart-item-extras { font-size: 11px; color: var(--text-muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.cart-item-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-full); border: 1px solid var(--border); color: var(--text-muted); transition: all var(--transition); }
.qty-btn:hover { border-color: var(--primary); color: var(--primary); }
.qty-btn svg { width: 14px; height: 14px; }
.qty-value { font-size: 14px; font-weight: 700; color: var(--text); width: 24px; text-align: center; }
.cart-item-line-total { font-size: 14px; font-weight: 700; color: var(--text); }
.cart-item-remove { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-full); color: rgba(220,38,38,0.6); transition: color var(--transition), background var(--transition); }
.cart-item-remove:hover { color: var(--destructive); background: rgba(220,38,38,0.1); }
.cart-item-remove svg { width: 14px; height: 14px; }

.cart-footer { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; }
.cart-total-row .label { font-size: 14px; color: var(--text-muted); }
.cart-total-row .value { font-size: 18px; font-weight: 700; color: var(--text); }

/* ============================================
   CHECKOUT SHEET
   ============================================ */
.checkout-sheet {
  position: fixed; top: 0; right: -520px; width: 100%; max-width: 480px; height: 100vh;
  z-index: 500; background: var(--bg-card); border-left: 1px solid var(--border);
  display: flex; flex-direction: column; transition: right 0.3s ease;
}
.checkout-sheet.open { right: 0; }
.checkout-overlay { position: fixed; inset: 0; z-index: 499; background: var(--overlay); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.checkout-overlay.open { opacity: 1; pointer-events: auto; }

.checkout-header { display: flex; align-items: center; gap: 12px; padding: 20px 24px 16px; }
.checkback-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-full); color: var(--text-muted); transition: background var(--transition); }
.checkback-btn:hover { background: var(--primary-pale); color: var(--text); }
.checkout-header h3 { font-size: 18px; font-weight: 700; color: var(--text); }

.checkout-body { flex: 1; overflow-y: auto; padding: 8px 24px 24px; display: flex; flex-direction: column; gap: 24px; }
.checkout-section-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text); margin-bottom: 12px; }

.form-group { margin-bottom: 12px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.form-label .required { color: var(--destructive); }
.form-label .optional { color: var(--text-muted); font-weight: 400; text-transform: none; letter-spacing: normal; font-size: 11px; }
.form-input, .form-textarea { width: 100%; padding: 10px 14px; background: var(--bg-card); border: 1px solid var(--border-input); border-radius: var(--radius-md); font-size: 14px; color: var(--text); outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(107,107,107,0.4); }
.form-input:focus, .form-textarea:focus { border-color: rgba(235,178,19,0.6); box-shadow: 0 0 0 3px rgba(235,178,19,0.15); }
.form-textarea { resize: none; line-height: 1.6; }

.delivery-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.delivery-option { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px; border: 2px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-card); cursor: pointer; transition: all var(--transition); }
.delivery-option:hover { border-color: rgba(235,178,19,0.5); }
.delivery-option.active { border-color: var(--primary); background: #FFF8EC; }
.delivery-option svg { width: 20px; height: 20px; }
.delivery-option .opt-label { font-size: 14px; font-weight: 600; color: var(--text); }
.delivery-option .opt-sub { font-size: 11px; color: var(--text-muted); }
.delivery-option.active svg { color: var(--primary); }
.delivery-option:not(.active) svg { color: rgba(107,107,107,0.5); }

.checkout-sep { height: 1px; background: var(--border); }

.payment-info { padding: 24px; background: #FFF8EC; border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 10px; }
.payment-info-row { display: flex; justify-content: space-between; font-size: 14px; }
.payment-info-row .label { color: var(--text-muted); }
.payment-info-row .value { color: var(--text); font-weight: 600; }
.payment-info-row .value.mono { font-family: 'Courier New', monospace; }
.payment-info-row .value.amount { color: var(--primary); font-weight: 700; font-size: 16px; }
.payment-info-sep { height: 1px; background: var(--border); }

/* Checkout notices */
.checkout-notice {
  padding: 16px 18px;
  background: rgba(235,178,19,0.06);
  border: 1px solid rgba(235,178,19,0.2);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.checkout-notice + .checkout-notice { margin-top: 12px; }
.checkout-notice strong { color: var(--text); font-weight: 700; }
.checkout-notice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--primary-pale);
  margin-bottom: 10px;
}
.checkout-notice-icon svg { width: 16px; height: 16px; color: var(--primary); }

.checkbox-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; margin-top: 16px; }
.checkbox-input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; cursor: pointer; }
.checkbox-text { font-size: 14px; font-weight: 500; color: var(--text-muted); line-height: 1.6; }
.checkbox-text strong { color: var(--primary); font-weight: 700; }

.order-summary-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; font-size: 14px; padding: 4px 0; }
.order-summary-item .item-name { flex: 1; min-width: 0; color: var(--text); }
.order-summary-item .item-extras { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.order-summary-item .item-qty { color: rgba(107,107,107,0.5); }
.order-summary-item .item-total { font-weight: 600; color: var(--text); flex-shrink: 0; }
.order-summary-total { display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); margin-top: 8px; }
.order-summary-total .label { font-size: 14px; font-weight: 600; color: var(--text); }
.order-summary-total .value { font-size: 20px; font-weight: 700; color: var(--primary); }

.checkout-footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.checkout-footer .btn { width: 100%; padding: 16px; font-size: 16px; }

/* ============================================
   TOAST
   ============================================ */
.toast-container { position: fixed; top: 80px; right: 16px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast { display: flex; align-items: center; gap: 8px; padding: 12px 20px; background: #FFFDF7; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); font-size: 14px; font-weight: 600; color: var(--text); pointer-events: auto; animation: toastIn 0.3s ease; max-width: 360px; }
.toast.success { border-color: rgba(22,163,74,0.3); }
.toast.error   { border-color: rgba(220,38,38,0.3); }
.toast-icon svg { width: 18px; height: 18px; flex-shrink: 0; }
.toast.success .toast-icon { color: var(--success); }
.toast.error .toast-icon { color: var(--destructive); }
@keyframes toastIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(20px); } }

/* ============================================
   LOADING SKELETON
   ============================================ */
.skeleton { background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--border) 50%, var(--bg-secondary) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ============================================
   SUCCESS MODAL
   ============================================ */
.modal-overlay { position: fixed; inset: 0; z-index: 600; background: var(--overlay); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box { background: var(--bg-card); border-radius: var(--radius-xl); padding: 40px 32px; text-align: center; max-width: 400px; width: 100%; box-shadow: var(--shadow-lg); }
.modal-box .success-icon { width: 64px; height: 64px; border-radius: var(--radius-full); background: rgba(22,163,74,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.modal-box .success-icon svg { width: 32px; height: 32px; color: var(--success); }
.modal-box h3 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.modal-box p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

/* ============================================
   PRINT
   ============================================ */
@media print {
  .navbar, .footer, .cart-drawer, .cart-drawer-overlay,
  .checkout-sheet, .checkout-overlay, .mobile-nav,
  .mobile-nav-overlay, .toast-container, .btn, .back-to-top { display: none !important; }
  .product-card, .contact-card, .why-card, .biz-info-card, .track-card { break-inside: avoid; }
  body { color: #000; background: #fff; }
}

/* ============================================
   UTILITY
   ============================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
