/* ===================== Dish & Dine — Design System ===================== */
:root {
  --dd-green-950: #0a1f16;
  --dd-green-900: #0f2e1f;
  --dd-green-800: #123a27;
  --dd-green-700: #16482f;
  --dd-green-600: #1c5c3b;
  --dd-gold-500: #d4a94a;
  --dd-gold-400: #e4c06a;
  --dd-gold-300: #f0d894;
  --dd-cream: #fdf8ef;
  --dd-cream-dark: #f4ecd8;
  --dd-charcoal: #1a1a1a;
  --dd-red: #c0392b;
  --shadow-soft: 0 10px 30px -10px rgba(0,0,0,0.25);
  --shadow-strong: 0 20px 50px -12px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dd-charcoal);
  background: var(--dd-cream);
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-display {
  font-family: 'Playfair Display', serif;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--dd-gold-400); color: var(--dd-green-950); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--dd-cream-dark); }
::-webkit-scrollbar-thumb { background: var(--dd-green-700); border-radius: 10px; }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s ease; border: none; cursor: pointer; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--dd-gold-400), var(--dd-gold-500));
  color: var(--dd-green-950);
  box-shadow: 0 8px 20px -6px rgba(212,169,74,0.55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -6px rgba(212,169,74,0.7); }
.btn-outline-gold {
  background: transparent; color: var(--dd-gold-400); border: 2px solid var(--dd-gold-400);
}
.btn-outline-gold:hover { background: var(--dd-gold-400); color: var(--dd-green-950); }
.btn-green {
  background: var(--dd-green-700); color: var(--dd-cream);
}
.btn-green:hover { background: var(--dd-green-600); transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ===================== Header ===================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 31, 22, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,169,74,0.25);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0.7rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-logo { width: 46px; height: 46px; border-radius: 50%; object-fit: contain; background: var(--dd-green-800); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.35rem; color: var(--dd-gold-300); }
.brand-amp { color: var(--dd-cream); }
.brand-tag { font-size: 0.62rem; letter-spacing: 0.08em; color: var(--dd-cream-dark); text-transform: uppercase; opacity: 0.8; }

.desktop-nav { display: none; gap: 1.8rem; align-items: center; }
.nav-link { color: var(--dd-cream-dark); font-size: 0.92rem; font-weight: 500; position: relative; padding: 0.3rem 0; transition: color 0.2s; }
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px;
  background: var(--dd-gold-400); transition: width 0.25s;
}
.nav-link:hover, .nav-link-active { color: var(--dd-gold-300); }
.nav-link:hover::after, .nav-link-active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 0.8rem; }
.hidden-mobile { display: none; }
.cart-toggle-btn {
  position: relative; background: rgba(212,169,74,0.15); border: 1px solid rgba(212,169,74,0.4);
  color: var(--dd-gold-300); width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.cart-toggle-btn:hover { background: rgba(212,169,74,0.3); }
.cart-count-badge {
  position: absolute; top: -6px; right: -6px; background: var(--dd-red); color: white;
  font-size: 0.65rem; font-weight: 700; width: 19px; height: 19px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-toggle { background: none; border: none; color: var(--dd-cream); font-size: 1.4rem; }

.mobile-nav {
  display: none; flex-direction: column; background: var(--dd-green-950);
  border-top: 1px solid rgba(212,169,74,0.2); padding: 0.5rem 1.5rem 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link { padding: 0.75rem 0; color: var(--dd-cream-dark); border-bottom: 1px solid rgba(255,255,255,0.06); font-weight: 500; }
.mobile-nav-link-active { color: var(--dd-gold-300); }

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .hidden-mobile { display: inline-flex; }
  .mobile-menu-toggle { display: none; }
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  background: radial-gradient(ellipse at top right, var(--dd-green-800) 0%, var(--dd-green-950) 55%, #06120c 100%);
  overflow: hidden;
  padding-top: 2rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(212,169,74,0.12), transparent 40%),
                     radial-gradient(circle at 85% 75%, rgba(212,169,74,0.10), transparent 45%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 2rem 1.5rem;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; width: 100%;
  position: relative; z-index: 2;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: 1.5rem; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; color: var(--dd-gold-300);
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
  border: 1px solid rgba(212,169,74,0.4); padding: 0.4rem 1rem; border-radius: 999px;
  background: rgba(212,169,74,0.08);
}
.hero-title {
  color: var(--dd-cream); font-size: 2.6rem; line-height: 1.08; font-weight: 800; margin: 1.2rem 0 1.2rem;
}
.hero-title .accent { color: var(--dd-gold-400); font-style: italic; }
@media (min-width: 768px) { .hero-title { font-size: 3.6rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 4.2rem; } }
.hero-desc { color: var(--dd-cream-dark); font-size: 1.05rem; max-width: 540px; line-height: 1.7; opacity: 0.9; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-stats { display: flex; gap: 2.2rem; margin-top: 2.8rem; flex-wrap: wrap; }
.hero-stat-num { color: var(--dd-gold-400); font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; }
.hero-stat-label { color: var(--dd-cream-dark); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.75; }

.hero-3d-wrap {
  position: relative; height: 380px; border-radius: 28px; overflow: hidden;
  perspective: 1200px;
}
@media (min-width: 1024px) { .hero-3d-wrap { height: 520px; } }
.hero-3d-badge {
  position: absolute; top: 1rem; right: 1rem; background: rgba(10,31,22,0.85);
  color: var(--dd-gold-300); font-size: 0.72rem; padding: 0.4rem 0.9rem; border-radius: 999px;
  border: 1px solid rgba(212,169,74,0.35); display: flex; align-items: center; gap: 0.4rem; z-index: 5;
  backdrop-filter: blur(6px);
}
.hero-3d-ring {
  position: absolute; inset: -20%; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(212,169,74,0.25), transparent 60%);
  animation: spin 14s linear infinite; z-index: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-3d-glow {
  position: absolute; left: 50%; top: 54%; width: 78%; height: 46%; transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(228,192,106,0.35) 0%, rgba(228,192,106,0.08) 45%, transparent 72%);
  filter: blur(6px); z-index: 1; pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse { 0%,100% { opacity: 0.75; } 50% { opacity: 1; } }

.hero-3d-stage {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center;
  transform-style: preserve-3d; will-change: transform;
  transition: transform 0.25s ease-out;
}
.hero-3d-burger {
  width: 78%; max-width: 420px; height: auto; object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.55)) drop-shadow(0 6px 10px rgba(0,0,0,0.35));
  transform: translateZ(40px);
  animation: hero-float 4.5s ease-in-out infinite;
  position: relative; z-index: 2;
  transition: filter 0.3s;
}
.hero-3d-shadow {
  position: absolute; left: 50%; bottom: 8%; width: 46%; height: 7%; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 55%, transparent 80%);
  border-radius: 50%; z-index: 1; filter: blur(2px);
  animation: hero-shadow-pulse 4.5s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateZ(40px) translateY(0); }
  50% { transform: translateZ(60px) translateY(-16px); }
}
@keyframes hero-shadow-pulse {
  0%, 100% { opacity: 0.85; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.55; transform: translateX(-50%) scale(0.88); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-3d-burger, .hero-3d-shadow, .hero-3d-glow { animation: none; }
}

.scroll-indicator {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  color: var(--dd-gold-300); opacity: 0.7; z-index: 3; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* ===================== Section basics ===================== */
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3.5rem 1.5rem; }
.container { max-width: 1280px; margin: 0 auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-eyebrow {
  color: var(--dd-green-700); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  font-size: 0.8rem; display: inline-flex; align-items: center; gap: 0.5rem;
}
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 24px; height: 2px; background: var(--dd-gold-500); }
.section-title { font-size: 2.2rem; font-weight: 800; margin: 0.8rem 0 0.8rem; color: var(--dd-green-950); }
@media (min-width: 768px) { .section-title { font-size: 2.8rem; } }
.section-desc { color: #5c5c5c; font-size: 1.02rem; line-height: 1.7; }
.section-dark { background: var(--dd-green-950); color: var(--dd-cream); }
.section-dark .section-title { color: var(--dd-cream); }
.section-dark .section-desc { color: var(--dd-cream-dark); opacity: 0.85; }

/* ===================== Category Pills ===================== */
.category-scroller { display: flex; gap: 0.8rem; overflow-x: auto; padding-bottom: 1rem; scrollbar-width: thin; }
.category-pill {
  flex-shrink: 0; padding: 0.7rem 1.4rem; border-radius: 999px; border: 1.5px solid var(--dd-green-700);
  color: var(--dd-green-800); font-weight: 600; font-size: 0.88rem; background: white;
  display: flex; align-items: center; gap: 0.5rem; transition: all 0.2s;
}
.category-pill:hover { background: var(--dd-green-800); color: white; }
.category-pill.active { background: var(--dd-green-800); color: white; box-shadow: var(--shadow-soft); }

/* ===================== Menu Card (3D tilt) ===================== */
.menu-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.6rem; }
@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); } }

.menu-card {
  background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s, transform 0.2s; transform-style: preserve-3d; will-change: transform;
  border: 1px solid rgba(0,0,0,0.04);
}
.menu-card:hover { box-shadow: var(--shadow-strong); }
.menu-card-img-wrap { position: relative; height: 190px; overflow: hidden; transform: translateZ(20px); }
.menu-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.menu-card:hover .menu-card-img { transform: scale(1.08); }
.menu-card-badges { position: absolute; top: 0.7rem; left: 0.7rem; display: flex; gap: 0.4rem; }
.badge { font-size: 0.68rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 999px; display: flex; align-items: center; gap: 0.25rem; }
.badge-featured { background: var(--dd-gold-400); color: var(--dd-green-950); }
.badge-spicy { background: var(--dd-red); color: white; }
.menu-card-body { padding: 1.2rem; }
.menu-card-cat { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dd-green-700); font-weight: 700; }
.menu-card-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; margin: 0.3rem 0 0.4rem; color: var(--dd-green-950); }
.menu-card-desc { font-size: 0.84rem; color: #666; line-height: 1.5; min-height: 2.5em; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.menu-card-price { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.3rem; color: var(--dd-red); }
.menu-card-price .cur { font-size: 0.9rem; }
.add-to-cart-btn {
  background: var(--dd-green-800); color: white; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; border: none; transition: all 0.2s;
}
.add-to-cart-btn:hover { background: var(--dd-gold-500); color: var(--dd-green-950); transform: rotate(90deg); }

/* Qty stepper on cards after add */
.qty-stepper { display: flex; align-items: center; gap: 0.6rem; background: var(--dd-green-800); border-radius: 999px; padding: 0.3rem; }
.qty-stepper button { background: none; border: none; color: white; width: 26px; height: 26px; border-radius: 50%; }
.qty-stepper button:hover { background: rgba(255,255,255,0.15); }
.qty-stepper span { color: white; font-weight: 700; min-width: 18px; text-align: center; }

/* ===================== About / Gallery ===================== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; grid-auto-rows: 180px;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; } }
.gallery-item { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,31,22,0.75), transparent 60%);
  display: flex; align-items: flex-end; padding: 0.9rem; opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-weight: 600; font-size: 0.85rem; }

/* Feature/Stats/Icon Cards */
.feature-card {
  background: white; border-radius: 20px; padding: 2rem 1.6rem; text-align: center; box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-8px); }
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--dd-green-700), var(--dd-green-900));
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; color: var(--dd-gold-400); font-size: 1.5rem;
}
.feature-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--dd-green-950); }
.feature-desc { font-size: 0.88rem; color: #666; line-height: 1.6; }

/* Testimonial */
.testimonial-card {
  background: var(--dd-green-900); border-radius: 20px; padding: 2rem; color: var(--dd-cream);
  position: relative; height: 100%;
}
.testimonial-quote { color: var(--dd-gold-400); font-size: 2rem; opacity: 0.4; }
.testimonial-text { font-size: 0.95rem; line-height: 1.7; opacity: 0.9; margin: 0.5rem 0 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.7rem; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--dd-gold-500); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--dd-green-950); }
.stars { color: var(--dd-gold-400); font-size: 0.85rem; margin-bottom: 0.6rem; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--dd-green-900), var(--dd-green-950));
  border-radius: 28px; padding: 3rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0; opacity: 0.5;
  background: radial-gradient(circle at 20% 30%, rgba(212,169,74,0.18), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(212,169,74,0.15), transparent 45%);
}

/* ===================== Cart Drawer ===================== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: -420px; width: 100%; max-width: 420px; height: 100%; background: white;
  z-index: 201; transition: right 0.35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0,0,0,0.2);
}
.cart-drawer.open { right: 0; }
.cart-drawer-header { padding: 1.3rem 1.5rem; border-bottom: 1px solid #eee; display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-header h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--dd-green-950); }
.cart-drawer-header button { background: none; border: none; font-size: 1.2rem; color: #999; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-item { display: flex; gap: 0.9rem; padding: 0.9rem 0; border-bottom: 1px solid #f0f0f0; align-items: center; }
.cart-item img { width: 58px; height: 58px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.9rem; color: var(--dd-green-950); }
.cart-item-price { font-size: 0.8rem; color: #888; }
.cart-item-remove { background: none; border: none; color: #ccc; font-size: 0.9rem; }
.cart-item-remove:hover { color: var(--dd-red); }
.cart-empty { text-align: center; padding: 3rem 1rem; color: #999; }
.cart-drawer-footer { padding: 1.3rem 1.5rem; border-top: 1px solid #eee; }
.cart-subtotal-row { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem; color: var(--dd-green-950); }

/* ===================== Forms ===================== */
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dd-green-950); margin-bottom: 0.4rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.8rem 1rem; border-radius: 12px; border: 1.5px solid #e2ddd0;
  font-family: inherit; font-size: 0.95rem; transition: border-color 0.2s; background: white;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--dd-green-700); }
.form-textarea { resize: vertical; min-height: 100px; }
.radio-card {
  display: flex; align-items: center; gap: 0.8rem; padding: 0.9rem 1rem; border-radius: 14px;
  border: 1.5px solid #e2ddd0; cursor: pointer; transition: all 0.2s;
}
.radio-card:hover { border-color: var(--dd-green-500); }
.radio-card.selected { border-color: var(--dd-green-700); background: rgba(22,72,47,0.05); }
.radio-card input { accent-color: var(--dd-green-700); width: 18px; height: 18px; }

/* Order summary box */
.order-summary-box { background: var(--dd-cream-dark); border-radius: 20px; padding: 1.6rem; position: sticky; top: 100px; }
.order-summary-row { display: flex; justify-content: space-between; padding: 0.55rem 0; font-size: 0.92rem; color: #444; }
.order-summary-total { display: flex; justify-content: space-between; padding-top: 0.9rem; margin-top: 0.6rem; border-top: 2px dashed #d8cfb8; font-weight: 800; font-size: 1.2rem; color: var(--dd-green-950); }

/* ===================== Footer ===================== */
.site-footer { background: var(--dd-green-950); color: var(--dd-cream-dark); padding: 4rem 1.5rem 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-logo { width: 56px; height: 56px; border-radius: 50%; margin-bottom: 1rem; object-fit: contain; background: var(--dd-green-800); }
.footer-desc { font-size: 0.86rem; line-height: 1.7; opacity: 0.75; max-width: 320px; }
.footer-socials { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.footer-socials a:hover { background: var(--dd-gold-400); color: var(--dd-green-950); }
.footer-col h4 { color: var(--dd-gold-300); font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.87rem; margin-bottom: 0.7rem; opacity: 0.8; line-height: 1.6; }
.footer-col a:hover { opacity: 1; color: var(--dd-gold-300); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.3rem 0; text-align: center; font-size: 0.8rem; opacity: 0.6; }

/* ===================== Toast ===================== */
.toast-container { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 300; display: flex; flex-direction: column; gap: 0.6rem; }
.toast {
  background: var(--dd-green-950); color: white; padding: 0.9rem 1.4rem; border-radius: 12px; box-shadow: var(--shadow-strong);
  display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; border-left: 4px solid var(--dd-gold-400);
  animation: slideIn 0.3s ease;
}
.toast.error { border-left-color: var(--dd-red); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* Loading spinner */
.spinner { width: 40px; height: 40px; border: 4px solid rgba(22,72,47,0.15); border-top-color: var(--dd-green-700); border-radius: 50%; animation: spin-loader 0.8s linear infinite; margin: 2rem auto; }
@keyframes spin-loader { to { transform: rotate(360deg); } }

/* Utility */
.text-gold { color: var(--dd-gold-500); }
.text-green { color: var(--dd-green-800); }
.bg-cream { background: var(--dd-cream); }
.bg-cream-dark { background: var(--dd-cream-dark); }
.divider-gold { width: 70px; height: 3px; background: var(--dd-gold-500); margin: 0.8rem auto; border-radius: 3px; }

/* Admin-specific tweaks live in admin.css but a few shared here */
.pill-status {
  font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 999px; text-transform: capitalize;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.pill-pending { background: #fff3cd; color: #856404; }
.pill-confirmed { background: #cfe2ff; color: #084298; }
.pill-preparing { background: #e2d9f3; color: #5a2d82; }
.pill-out_for_delivery { background: #d1ecf1; color: #0c5460; }
.pill-completed { background: #d4edda; color: #155724; }
.pill-cancelled { background: #f8d7da; color: #721c24; }
.pill-paid { background: #d4edda; color: #155724; }
.pill-unpaid { background: #fff3cd; color: #856404; }
.pill-refunded { background: #e2e3e5; color: #383d41; }
