/* ============================================================
   CHICKEN TONIGHT UGANDA — MAIN STYLESHEET
   Faithful port of the v0.app React/Tailwind design
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

/* === CSS CUSTOM PROPERTIES (Design Tokens) === */
:root {
  /* Brand Colors */
  --color-gold:       #FFD700;
  --color-gold-dark:  #E6B800;
  --color-gold-light: #FFF0A0;
  --color-black:      #1a1a1a;
  --color-white:      #ffffff;

  /* Semantic Tokens — Light Mode */
  --background:            #ffffff;
  --foreground:            #1a1a1a;
  --card:                  #ffffff;
  --card-foreground:       #1a1a1a;
  --popover:               #ffffff;
  --popover-foreground:    #1a1a1a;
  --primary:               #FFD700;
  --primary-foreground:    #1a1a1a;
  --secondary:             #1f1f1f;
  --secondary-foreground:  #ffffff;
  --muted:                 #f4f4f4;
  --muted-foreground:      #6b7280;
  --accent:                #F5C400;
  --accent-foreground:     #1a1a1a;
  --destructive:           #dc2626;
  --destructive-foreground:#ffffff;
  --border:                #e5e7eb;
  --input:                 #f4f4f4;
  --ring:                  #FFD700;
  --radius:                0.75rem;
  --sidebar-bg:            #f9f9f9;

  /* Typography */
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-oswald:'Oswald', serif;
  --font-mono:  'Courier New', monospace;
}

/* === DARK MODE === */
.dark, [data-theme="dark"] {
  --background:           #141414;
  --foreground:           #f9fafb;
  --card:                 #1e1e1e;
  --card-foreground:      #f9fafb;
  --popover:              #1e1e1e;
  --popover-foreground:   #f9fafb;
  --primary:              #FFD700;
  --primary-foreground:   #1a1a1a;
  --secondary:            #2d2d2d;
  --secondary-foreground: #f9fafb;
  --muted:                #262626;
  --muted-foreground:     #9ca3af;
  --accent:               #F5C400;
  --accent-foreground:    #1a1a1a;
  --destructive:          #ef4444;
  --destructive-foreground:#ffffff;
  --border:               #374151;
  --input:                #262626;
  --ring:                 #FFD700;
  --sidebar-bg:           #1a1a1a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f4f4f4; }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* === UTILITIES === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.min-h-screen { min-height: 100vh; }
.flex-1 { flex: 1 1 0%; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.hidden { display: none; }
.block { display: block; }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.15em; }
.tracking-tight { letter-spacing: -0.025em; }
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.pointer-events-none { pointer-events: none; }
.transition-all { transition: all 0.2s ease; }
.transition-opacity { transition: opacity 0.7s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: var(--radius); }
.object-cover { object-fit: cover; }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-muted { background-color: var(--muted); }
.bg-card { background-color: var(--card); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }
.text-white { color: #ffffff; }
.grid { display: grid; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }

/* Gold Gradient */
.bg-gold-gradient {
  background: linear-gradient(135deg, #FFD700 0%, #E6B800 100%);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.625rem 1.25rem;
  transition: background-color 0.15s, color 0.15s, box-shadow 0.15s, opacity 0.15s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover { background-color: var(--color-gold-dark); }

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}
.btn-secondary:hover { opacity: 0.85; }

.btn-ghost {
  background-color: transparent;
  color: var(--foreground);
}
.btn-ghost:hover { background-color: var(--muted); }

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}
.btn-outline:hover { background-color: var(--muted); }

.btn-destructive {
  background-color: var(--destructive);
  color: var(--destructive-foreground);
}
.btn-destructive:hover { opacity: 0.9; }

.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.8125rem; }
.btn-lg { padding: 0.875rem 2rem; font-size: 1.0625rem; }
.btn-icon { width: 2.25rem; height: 2.25rem; padding: 0; }
.btn-icon-lg { width: 2.75rem; height: 2.75rem; padding: 0; }

/* === CARDS === */
.card {
  background-color: var(--card);
  color: var(--card-foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.card-header { padding: 1.5rem 1.5rem 0; }
.card-content { padding: 1.5rem; }
.card-footer { padding: 0 1.5rem 1.5rem; }
.card-title { font-size: 1.25rem; font-weight: 700; line-height: 1.2; }
.card-description { font-size: 0.875rem; color: var(--muted-foreground); }

/* === BADGE === */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}
.badge-default { background-color: var(--primary); color: var(--primary-foreground); }
.badge-secondary { background-color: var(--secondary); color: var(--secondary-foreground); }
.badge-outline { border: 1px solid var(--border); color: var(--foreground); background: transparent; }
.badge-destructive { background-color: var(--destructive); color: var(--destructive-foreground); }
.badge-success { background-color: #16a34a; color: #ffffff; }

/* === INPUTS === */
.input {
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--input);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  padding: 0.625rem 0.875rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input:focus { border-color: var(--ring); box-shadow: 0 0 0 2px rgba(255,215,0,0.25); }
.input::placeholder { color: var(--muted-foreground); }

textarea.input { resize: vertical; min-height: 100px; }

.label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--foreground);
}

.field-group { display: flex; flex-direction: column; gap: 1rem; }

/* === HEADER / NAVIGATION === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(229,231,235,0.4);
  background-color: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dark .site-header {
  background-color: rgba(20,20,20,0.95);
  border-bottom-color: rgba(55,65,81,0.4);
}

.site-header .header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo img {
  height: 3rem;
  width: auto;
  object-fit: contain;
}

.site-header nav.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .site-header nav.desktop-nav { display: flex; }
}

.site-header nav.desktop-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.15s;
}
.site-header nav.desktop-nav a:hover,
.site-header nav.desktop-nav a.active { color: var(--foreground); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }

.cart-badge-btn {
  position: relative;
}
.cart-badge-btn .cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.5);
}
.mobile-menu-overlay.open { display: block; }

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: var(--background);
  z-index: 101;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-menu-overlay.open .mobile-menu-panel { transform: translateX(0); }

.mobile-menu-panel .mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  padding: 0.5rem 0;
  transition: color 0.15s;
}
.mobile-menu-panel .mobile-nav-link:hover { color: var(--primary); }
.mobile-menu-panel hr { border: none; border-top: 1px solid var(--border); margin: 0.5rem 0; }

/* === HERO SECTION === */
.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  transition: opacity 0.7s ease;
}
.hero-slide.inactive { opacity: 0; pointer-events: none; }
.hero-slide.active { opacity: 1; }

.hero-slide img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 50%, transparent 100%);
}
.dark .hero-overlay {
  background: linear-gradient(to right, rgba(20,20,20,0.95) 0%, rgba(20,20,20,0.7) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
}

.hero-text { max-width: 36rem; }

.hero-subtitle {
  font-family: var(--font-oswald);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: var(--font-oswald);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--foreground);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.5);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  color: var(--foreground);
}
.hero-nav-btn:hover { background: rgba(255,255,255,0.8); }
.dark .hero-nav-btn { background: rgba(0,0,0,0.4); }
.dark .hero-nav-btn:hover { background: rgba(0,0,0,0.7); }
.hero-nav-btn.prev { left: 1rem; }
.hero-nav-btn.next { right: 1rem; }
.hero-nav-btn svg { width: 1.5rem; height: 1.5rem; }

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background: rgba(0,0,0,0.3);
  border: none;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
  padding: 0;
}
.dark .hero-dot { background: rgba(255,255,255,0.3); }
.hero-dot.active { width: 2rem; background: var(--primary); }

/* === LOCATION SELECTOR === */
.location-selector {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--muted);
  padding: 1rem 0;
}
.location-selector .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.location-selector .left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.location-selector .loc-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-selector .loc-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary-foreground); }
.location-selector .loc-label { font-size: 0.75rem; color: var(--muted-foreground); }
.location-selector .loc-name { font-weight: 600; font-size: 0.9375rem; }

/* === SECTION HEADERS === */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  font-family: var(--font-oswald);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-oswald);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.section-desc { color: var(--muted-foreground); max-width: 36rem; margin: 0 auto; }

/* === CATEGORIES SECTION === */
.categories-section { padding: 4rem 0; background: var(--muted); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 480px)  { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .categories-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .categories-grid { grid-template-columns: repeat(6, 1fr); } }

.category-card {
  background: var(--card);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.category-card:hover { border-color: var(--primary); box-shadow: 0 4px 12px rgba(255,215,0,0.2); transform: translateY(-2px); }
.category-card.active { border-color: var(--primary); background: rgba(255,215,0,0.08); }

.category-icon {
  font-size: 2rem;
  width: 4rem;
  height: 4rem;
  background: var(--muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-card.active .category-icon { background: rgba(255,215,0,0.2); }
.category-name { font-weight: 600; font-size: 0.875rem; }
.category-count { font-size: 0.75rem; color: var(--muted-foreground); }

/* === DEALS SECTION === */
.deals-section { padding: 4rem 0; }

.deals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .deals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .deals-grid { grid-template-columns: repeat(3, 1fr); } }

.deal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.deal-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }

.deal-image-wrap {
  position: relative;
  height: 13rem;
  overflow: hidden;
}
.deal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.deal-card:hover .deal-image-wrap img { transform: scale(1.05); }

.deal-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.deal-body { padding: 1.25rem; }
.deal-title { font-weight: 700; font-size: 1.0625rem; margin-bottom: 0.5rem; }
.deal-desc { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.deal-pricing { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.deal-sale-price { font-size: 1.375rem; font-weight: 700; color: var(--primary); }
.deal-original-price { font-size: 0.9375rem; color: var(--muted-foreground); text-decoration: line-through; }
.deal-timer { font-size: 0.75rem; color: var(--muted-foreground); display: flex; align-items: center; gap: 0.25rem; margin-bottom: 1rem; }
.deal-actions { display: flex; gap: 0.5rem; }
.deal-actions .btn { flex: 1; }

/* === FEATURED PRODUCTS === */
.featured-section { padding: 4rem 0; background: var(--muted); }

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }

.product-image-wrap {
  position: relative;
  height: 11rem;
  overflow: hidden;
}
.product-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-image-wrap img { transform: scale(1.05); }

.product-popular-badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
}

.product-body { padding: 1rem; }
.product-name { font-weight: 700; font-size: 0.9375rem; margin-bottom: 0.375rem; }
.product-desc { font-size: 0.8125rem; color: var(--muted-foreground); margin-bottom: 0.75rem; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1.125rem; font-weight: 700; color: var(--primary); }

/* === HOW TO ORDER === */
.how-to-order { }
.how-to-order .steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.how-step { display: flex; gap: 1rem; }
.how-step-num {
  width: 3rem; height: 3rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-oswald);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.how-step-content h3 { font-weight: 700; margin-bottom: 0.25rem; }
.how-step-content p { font-size: 0.875rem; color: var(--muted-foreground); }

/* === FEEDBACK FORM === */
.feedback-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.feedback-form h2 { font-family: var(--font-oswald); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; }
.feedback-form p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }

.rating-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.rating-star {
  font-size: 1.75rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.15s;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}
.rating-star.active, .rating-star:hover { color: var(--primary); }

/* === TESTIMONIALS === */
.testimonials-section { padding: 4rem 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.testimonial-stars { display: flex; gap: 0.125rem; margin-bottom: 0.75rem; }
.testimonial-star { color: var(--primary); font-size: 1rem; }
.testimonial-text { font-size: 0.9375rem; color: var(--muted-foreground); margin-bottom: 1rem; line-height: 1.6; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.875rem; }
.testimonial-location { font-size: 0.75rem; color: var(--muted-foreground); }

/* === FOOTER === */
.site-footer { border-top: 1px solid var(--border); background: var(--card); }

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-logo img { height: 4rem; width: auto; object-fit: contain; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 2.5rem; height: 2.5rem;
  background: var(--muted);
  color: var(--muted-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.footer-social a:hover { background: var(--primary); color: var(--primary-foreground); }
.footer-social svg { width: 1.25rem; height: 1.25rem; }

.footer-heading {
  font-family: var(--font-oswald);
  font-size: 1.0625rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-branch-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-branch-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.footer-branch-item svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.footer-branch-item strong { color: var(--foreground); }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.15s; }
.footer-links a:hover { color: var(--primary); }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.footer-contact-item svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact-item a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.footer-bottom .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom .inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p { font-size: 0.875rem; color: var(--muted-foreground); }

/* === FLOATING CART === */
.floating-cart {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
}
.floating-cart-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  border: none;
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
}
.floating-cart-btn:hover { background: #333; transform: scale(1.03); }
.floating-cart-btn svg { width: 1.25rem; height: 1.25rem; }
.floating-cart-price { color: var(--primary); }

/* === PAGE HEADER === */
.page-hero {
  border-bottom: 1px solid var(--border);
  background: var(--muted);
  padding: 2rem 0;
}
.page-hero h1 {
  font-family: var(--font-oswald);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
}
.page-hero p { font-size: 0.9375rem; color: var(--muted-foreground); margin-top: 0.375rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.breadcrumb a:hover { color: var(--foreground); }

/* === MENU PAGE === */
.menu-filters {
  position: sticky;
  top: 4rem;
  z-index: 30;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.menu-category-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.menu-category-bar::-webkit-scrollbar { display: none; }

.menu-cat-btn {
  flex-shrink: 0;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.menu-cat-btn:hover { border-color: var(--primary); color: var(--foreground); }
.menu-cat-btn.active { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }

.menu-search-wrap { position: relative; }
.menu-search-wrap svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  width: 1rem;
  height: 1rem;
}
.menu-search-wrap .input { padding-left: 2.25rem; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 0 4rem;
}
@media (min-width: 640px)  { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .menu-grid { grid-template-columns: repeat(4, 1fr); } }

/* === PRODUCT DIALOG === */
.dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.dialog-overlay.open { opacity: 1; pointer-events: all; }

.dialog-panel {
  background: var(--background);
  border-radius: var(--radius);
  width: 100%;
  max-width: 36rem;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.2s;
}
.dialog-overlay.open .dialog-panel { transform: scale(1); }

.dialog-header { padding: 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: start; justify-content: space-between; }
.dialog-title { font-size: 1.125rem; font-weight: 700; }
.dialog-body { padding: 1.5rem; }
.dialog-footer { padding: 0 1.5rem 1.5rem; display: flex; gap: 0.75rem; }

.dialog-product-img { width: 100%; height: 14rem; object-fit: cover; }
.dialog-price { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.addon-option { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: background 0.15s; }
.addon-option:hover { background: var(--muted); }
.addon-option input[type="checkbox"] { accent-color: var(--primary); width: 1rem; height: 1rem; }

/* === CART PAGE === */
.cart-page { padding: 2rem 0 4rem; }

.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) { .cart-layout { grid-template-columns: 1fr 22rem; } }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 5rem; height: 5rem; object-fit: cover; border-radius: calc(var(--radius) - 4px); flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 600; }
.cart-item-addon { font-size: 0.75rem; color: var(--muted-foreground); }
.cart-item-price { font-weight: 700; color: var(--primary); }
.cart-qty { display: flex; align-items: center; gap: 0.5rem; }
.cart-qty button {
  width: 1.75rem; height: 1.75rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cart-qty button:hover { background: var(--muted); }
.cart-qty span { font-weight: 600; min-width: 1.5rem; text-align: center; }

.order-summary { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.order-summary h2 { font-weight: 700; font-size: 1.125rem; margin-bottom: 1rem; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.9375rem; margin-bottom: 0.625rem; }
.summary-row.total { font-size: 1.125rem; font-weight: 700; padding-top: 0.625rem; border-top: 1px solid var(--border); margin-top: 0.625rem; }
.summary-row.total span:last-child { color: var(--primary); }

/* === CHECKOUT PAGE === */
.checkout-page { padding: 2rem 0 4rem; }
.checkout-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .checkout-layout { grid-template-columns: 1fr 22rem; } }

.checkout-section-title {
  font-family: var(--font-oswald);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s;
  margin-bottom: 0.75rem;
}
.payment-option.active { border-color: var(--primary); background: rgba(255,215,0,0.06); }
.payment-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: var(--muted); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.payment-icon svg { width: 1.25rem; height: 1.25rem; }
.payment-label { font-weight: 600; }
.payment-desc { font-size: 0.8125rem; color: var(--muted-foreground); }
.payment-radio { margin-left: auto; accent-color: var(--primary); }

/* === ORDER TRACKING === */
.track-page { padding: 2rem 0 4rem; }

.track-search { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; margin-bottom: 2rem; }
.track-search h2 { font-family: var(--font-oswald); font-size: 1.375rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; }
.track-search p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1.25rem; }
.track-search-row { display: flex; gap: 0.75rem; }
.track-search-row .input { flex: 1; }

.order-status-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.order-status-header { background: linear-gradient(135deg, #FFD700 0%, #E6B800 100%); padding: 1.5rem; color: #1a1a1a; }
.order-status-header h2 { font-family: var(--font-oswald); font-size: 1.5rem; font-weight: 700; }

.progress-bar { width: 100%; height: 0.5rem; background: rgba(0,0,0,0.15); border-radius: 9999px; margin: 1rem 0; overflow: hidden; }
.progress-fill { height: 100%; background: #1a1a1a; border-radius: 9999px; transition: width 0.6s ease; }

.track-steps { display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem; }
.track-step { display: flex; gap: 1rem; align-items: flex-start; }
.track-step-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.track-step-icon.done { background: var(--primary); color: var(--primary-foreground); }
.track-step-icon.current { background: var(--secondary); color: var(--secondary-foreground); }
.track-step-icon.pending { background: var(--muted); color: var(--muted-foreground); }
.track-step-icon svg { width: 1.25rem; height: 1.25rem; }
.track-step-label { font-weight: 600; }
.track-step-desc { font-size: 0.8125rem; color: var(--muted-foreground); }

.rider-card { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; border-top: 1px solid var(--border); }
.rider-avatar {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.rider-name { font-weight: 600; }
.rider-sub { font-size: 0.8125rem; color: var(--muted-foreground); }
.rider-actions { margin-left: auto; display: flex; gap: 0.5rem; }

/* === LOCATIONS PAGE === */
.locations-page { padding: 2rem 0 4rem; }

.locations-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }

.location-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.location-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }

.location-card-header { padding: 1.25rem; display: flex; align-items: start; justify-content: space-between; border-bottom: 1px solid var(--border); }
.location-name { font-weight: 700; font-size: 1.0625rem; }
.location-address { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.25rem; display: flex; align-items: start; gap: 0.375rem; }
.location-address svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; margin-top: 0.125rem; color: var(--primary); }

.location-card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.location-info-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.location-info-row svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; }

.location-features { display: flex; flex-wrap: wrap; gap: 0.375rem; }

.location-rating { display: flex; align-items: center; gap: 0.25rem; font-weight: 600; }
.location-rating .star { color: var(--primary); font-size: 0.875rem; }

.location-card-footer { padding: 1rem 1.25rem; border-top: 1px solid var(--border); display: flex; gap: 0.75rem; }
.location-card-footer .btn { flex: 1; font-size: 0.8125rem; }

/* === ACCOUNT PAGE === */
.account-page { padding: 2rem 0 4rem; }

.account-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .account-layout { grid-template-columns: 15rem 1fr; } }

.account-sidebar { display: flex; flex-direction: column; gap: 0.25rem; }
.account-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted-foreground);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}
.account-nav-btn:hover { background: var(--muted); color: var(--foreground); }
.account-nav-btn.active { background: var(--primary); color: var(--primary-foreground); }
.account-nav-btn svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }

.account-profile-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.account-avatar {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-oswald);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
}

.loyalty-progress-wrap { margin-top: 1rem; }
.loyalty-bar { width: 100%; height: 0.5rem; background: var(--muted); border-radius: 9999px; overflow: hidden; margin: 0.5rem 0; }
.loyalty-fill { height: 100%; background: var(--primary); border-radius: 9999px; }

.order-history-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.order-history-header { display: flex; align-items: start; justify-content: space-between; margin-bottom: 0.75rem; }
.order-id { font-weight: 700; }
.order-date { font-size: 0.8125rem; color: var(--muted-foreground); }
.order-items-preview { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; }
.order-item-thumb { width: 3.5rem; height: 3.5rem; object-fit: cover; border-radius: 0.5rem; }
.order-total { font-weight: 700; color: var(--primary); }

/* === MANAGER DASHBOARD === */
.manager-page { min-height: 100vh; background: var(--background); }

.manager-header {
  background: linear-gradient(135deg, #FFD700 0%, #E6B800 100%);
  padding: 1rem 0;
  color: #1a1a1a;
}
.manager-header h1 { font-family: var(--font-oswald); font-size: 1.5rem; font-weight: 700; }

.manager-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
}
@media (min-width: 1024px) { .manager-stats { grid-template-columns: repeat(4, 1fr); } }

.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.stat-label { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.25rem; display: flex; align-items: center; gap: 0.375rem; }
.stat-value { font-family: var(--font-oswald); font-size: 2rem; font-weight: 700; }
.stat-value.gold { color: var(--primary); }
.stat-sub { font-size: 0.8125rem; color: var(--muted-foreground); margin-top: 0.25rem; display: flex; align-items: center; gap: 0.25rem; }
.stat-sub.up { color: #16a34a; }

.manager-tabs { display: flex; gap: 0.25rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.manager-tab {
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  color: var(--muted-foreground);
  transition: color 0.15s, border-color 0.15s;
}
.manager-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

.order-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; }
.order-card-header { padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); background: var(--muted); }
.order-card-id { font-family: var(--font-oswald); font-weight: 700; font-size: 1.0625rem; }
.order-card-body { padding: 1.25rem; }
.order-line { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 0.375rem; color: var(--muted-foreground); }
.order-line span:last-child { font-weight: 600; color: var(--foreground); }
.order-card-footer { padding: 0.875rem 1.25rem; border-top: 1px solid var(--border); display: flex; gap: 0.5rem; }
.order-card-footer .btn { flex: 1; }

/* === TOAST NOTIFICATIONS === */
.ct-toast-container {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
  width: min(400px, 90vw);
}
.ct-toast {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: all;
  animation: toastIn 0.3s ease;
}
.ct-toast.success { border-left: 4px solid var(--primary); }
.ct-toast.error { border-left: 4px solid var(--destructive); }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(1rem); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === SEPARATOR === */
.separator { border: none; border-top: 1px solid var(--border); margin: 1rem 0; }

/* === EMPTY STATE === */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state svg { width: 4rem; height: 4rem; color: var(--muted-foreground); margin: 0 auto 1rem; }
.empty-state h2 { font-size: 1.375rem; font-weight: 700; margin-bottom: 0.5rem; }
.empty-state p { color: var(--muted-foreground); margin-bottom: 1.5rem; }

/* === RESPONSIVE HELPERS === */
@media (min-width: 640px) {
  .sm\:hidden { display: none; }
  .sm\:flex { display: flex; }
  .sm\:block { display: block; }
}
@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:block { display: block; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:block { display: block; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

/* How to Order + Feedback combined layout */
.two-col-section { padding: 4rem 0; }
.two-col-section .inner-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .two-col-section .inner-grid { grid-template-columns: 1fr 1fr; }
}

/* === SELECTION === */
::selection { background: rgba(255,215,0,0.35); }
