@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Raleway:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

:root {
  --burgundy: #1A0505;
  --burgundy-mid: #3D0B0B;
  --burgundy-light: #6B1515;
  --saffron: #E8850A;
  --saffron-light: #F5A623;
  --gold: #C9962C;
  --gold-light: #E8C068;
  --cream: #F7EDD8;
  --cream-light: #FDF5E6;
  --charcoal: #1C1C1C;
  --smoke: #2E2E2E;
  --text-muted: #8A7B6A;
  --overlay: rgba(26,5,5,0.85);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--burgundy);
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: default;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--burgundy); }
::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 3px; }

/* ---- LOADER ---- */
#page-loader {
  position: fixed; inset: 0;
  background: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#page-loader.hide { opacity: 0; visibility: hidden; }
.loader-mandala {
  width: 80px; height: 80px;
  border: 2px solid transparent;
  border-top-color: var(--saffron);
  border-bottom-color: var(--gold);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  position: relative;
}
.loader-mandala::after {
  content: '';
  position: absolute; inset: 8px;
  border: 2px solid transparent;
  border-left-color: var(--saffron-light);
  border-right-color: var(--gold-light);
  border-radius: 50%;
  animation: spin 0.8s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- NAVBAR ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(26,5,5,0.96);
  backdrop-filter: blur(20px);
  padding: 0.8rem 4rem;
  border-bottom: 1px solid rgba(232,133,10,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
  box-shadow: 0 4px 15px rgba(232,133,10,0.4);
}
.nav-logo:hover .nav-logo-icon { transform: rotateY(20deg) rotateX(10deg); }
.nav-brand {
  display: flex; flex-direction: column;
  line-height: 1;
}
.nav-brand span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.nav-brand span:last-child {
  font-size: 0.65rem;
  color: var(--saffron);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { opacity: 1; color: var(--saffron-light); }
.cart-btn {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--burgundy) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  display: flex; align-items: center; gap: 8px;
  transition: transform 0.3s, box-shadow 0.3s !important;
  box-shadow: 0 4px 15px rgba(232,133,10,0.35);
}
.cart-btn::after { display: none !important; }
.cart-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,133,10,0.5) !important; }
.cart-count {
  background: var(--burgundy);
  color: var(--saffron);
  font-size: 0.7rem;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  perspective: 1000px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,133,10,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201,150,44,0.06) 0%, transparent 50%),
    linear-gradient(135deg, #1A0505 0%, #2D0808 40%, #1A0505 100%);
}
.hero-texture {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(232,133,10,0.015) 60px, rgba(232,133,10,0.015) 61px),
    repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(232,133,10,0.015) 60px, rgba(232,133,10,0.015) 61px);
}
.spice-particles {
  position: absolute; inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 6rem;
  max-width: 700px;
  transform-style: preserve-3d;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-eyebrow span {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 600;
}
.eyebrow-line {
  flex: 0 0 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--saffron), transparent);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1.0;
  font-weight: 900;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
  text-shadow: 0 0 80px rgba(232,133,10,0.2);
}
.hero-title .accent {
  color: var(--saffron-light);
  font-style: italic;
  display: block;
  text-shadow: 0 0 60px rgba(232,133,10,0.5);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(247,237,216,0.7);
  line-height: 1.8;
  margin: 1.8rem 0 2.5rem;
  font-weight: 300;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
}
.hero-actions {
  display: flex; gap: 1.2rem; align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  color: var(--burgundy);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(232,133,10,0.4);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.5s ease;
}
.btn-primary:hover::before { transform: translateX(100%) skewX(-20deg); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(232,133,10,0.55); }
.btn-outline {
  color: var(--cream);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(247,237,216,0.3);
  transition: all 0.3s ease;
  display: flex; align-items: center; gap: 8px;
}
.btn-outline:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(232,133,10,0.08);
}
.hero-3d-dish {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
  transform-style: preserve-3d;
}
.dish-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: rotateRing linear infinite;
}
.dish-ring:nth-child(1) {
  inset: 0;
  border-color: rgba(232,133,10,0.15);
  animation-duration: 20s;
}
.dish-ring:nth-child(2) {
  inset: 40px;
  border-color: rgba(232,133,10,0.2);
  animation-duration: 15s;
  animation-direction: reverse;
}
.dish-ring:nth-child(3) {
  inset: 80px;
  border-color: rgba(201,150,44,0.25);
  animation-duration: 12s;
}
.dish-ring:nth-child(4) {
  inset: 120px;
  border-color: rgba(232,133,10,0.35);
  border-style: dashed;
  animation-duration: 30s;
  animation-direction: reverse;
}
@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.dish-glow {
  position: absolute;
  inset: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,133,10,0.2) 0%, rgba(201,150,44,0.1) 40%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}
.dish-emoji {
  position: absolute;
  inset: 150px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 120px;
  filter: drop-shadow(0 20px 40px rgba(232,133,10,0.5));
  animation: float-dish 4s ease-in-out infinite;
}
@keyframes float-dish {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  50% { transform: translateY(-15px) rotateY(15deg); }
}
.hero-stats {
  position: absolute;
  bottom: 3rem;
  left: 6rem;
  display: flex; gap: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.4s forwards;
}
.stat-item {}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--saffron-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  background: rgba(247,237,216,0.15);
  align-self: stretch;
}

/* ---- SECTIONS ---- */
.section { padding: 6rem 6rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 1rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, transparent, var(--saffron));
}
.section-eyebrow::after { background: linear-gradient(90deg, var(--saffron), transparent); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}
.section-title em {
  color: var(--saffron-light);
  font-style: italic;
}
.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: rgba(247,237,216,0.6);
  margin-top: 1rem;
  font-weight: 300;
}

/* ---- FEATURED SECTION ---- */
.featured-section { background: var(--burgundy); }
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.dish-card {
  background: var(--burgundy-mid);
  border: 1px solid rgba(232,133,10,0.12);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: pointer;
}
.dish-card:hover {
  transform: translateY(-12px) rotateX(5deg);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(232,133,10,0.3),
    inset 0 1px 0 rgba(232,133,10,0.2);
}
.dish-card-img {
  height: 220px;
  background: var(--burgundy-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.dish-card:hover .dish-card-img { transform: scale(1.05); }
.dish-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--burgundy-mid));
}
.dish-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--saffron);
  color: var(--burgundy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}
.dish-badge.veg { background: #4CAF50; }
.dish-card-body { padding: 1.4rem; }
.dish-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.dish-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.dish-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.dish-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--saffron-light);
}
.dish-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}
.dish-spice {
  display: flex; gap: 3px;
}
.dish-spice .chili { font-size: 14px; }
.dish-spice .chili.off { opacity: 0.2; }
.add-cart-btn {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--burgundy);
  border: none;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.add-cart-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(232,133,10,0.4); }

/* ---- ABOUT SECTION ---- */
.about-section {
  background: linear-gradient(135deg, var(--burgundy-mid) 0%, var(--burgundy) 100%);
  position: relative;
  overflow: hidden;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual {
  position: relative;
  height: 500px;
  perspective: 1000px;
}
.about-3d-frame {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.about-3d-frame:nth-child(1) {
  inset: 0;
  background: linear-gradient(135deg, var(--burgundy-light), #4D1010);
  display: flex; align-items: center; justify-content: center;
  font-size: 160px;
  transform: rotateY(-8deg) rotateX(4deg);
  box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
}
.about-3d-frame:nth-child(2) {
  width: 180px; height: 130px;
  bottom: 20px; right: -30px;
  background: var(--saffron);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: rotateY(-5deg) rotateX(3deg) rotate(-3deg);
  box-shadow: 10px 10px 30px rgba(0,0,0,0.4);
}
.about-3d-frame:nth-child(2) strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--burgundy);
  line-height: 1;
}
.about-3d-frame:nth-child(2) span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.about-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem;
  background: rgba(232,133,10,0.06);
  border: 1px solid rgba(232,133,10,0.12);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.about-feature:hover { background: rgba(232,133,10,0.1); transform: translateX(8px); }
.feature-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.feature-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 3px;
}
.feature-text p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ---- MENU PAGE ---- */
.menu-hero {
  height: 40vh; min-height: 300px;
  background: linear-gradient(135deg, var(--burgundy-mid), var(--burgundy));
  display: flex; align-items: flex-end;
  padding: 3rem 6rem;
  position: relative;
  overflow: hidden;
}
.menu-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(60deg, transparent, transparent 80px, rgba(232,133,10,0.02) 80px, rgba(232,133,10,0.02) 81px);
}
.menu-hero-content { position: relative; z-index: 1; }
.menu-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cream);
}
.menu-hero h1 em { color: var(--saffron-light); font-style: italic; }
.menu-hero p { color: var(--text-muted); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }

.menu-filters {
  background: rgba(61,11,11,0.8);
  backdrop-filter: blur(10px);
  padding: 1.5rem 6rem;
  border-bottom: 1px solid rgba(232,133,10,0.15);
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
  position: sticky; top: 70px; z-index: 100;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(247,237,216,0.2);
  color: var(--cream);
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  font-family: 'Raleway', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--burgundy);
  font-weight: 700;
}
.menu-content { padding: 3rem 6rem; }
.menu-category { margin-bottom: 4rem; }
.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.3rem;
  display: flex; align-items: center; gap: 12px;
}
.category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(232,133,10,0.4), transparent);
}
.category-count { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.8rem; }
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.menu-item {
  background: var(--burgundy-mid);
  border: 1px solid rgba(232,133,10,0.1);
  border-radius: 16px;
  padding: 1.2rem;
  display: flex; gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.menu-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--saffron), var(--gold));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
.menu-item:hover { transform: translateX(6px); border-color: rgba(232,133,10,0.3); }
.menu-item:hover::before { transform: scaleY(1); }
.menu-item-emoji {
  width: 80px; height: 80px;
  border-radius: 12px;
  background: var(--burgundy-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.menu-item:hover .menu-item-emoji { transform: scale(1.1) rotate(5deg); }
.menu-item-details { flex: 1; }
.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 3px;
}
.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.menu-item-meta {
  display: flex; align-items: center; justify-content: space-between;
}
.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--saffron-light);
}
.menu-item-actions { display: flex; gap: 6px; align-items: center; }
.qty-btn {
  width: 28px; height: 28px;
  background: rgba(232,133,10,0.15);
  border: 1px solid rgba(232,133,10,0.3);
  color: var(--saffron);
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
  font-family: 'Raleway', sans-serif;
}
.qty-btn:hover { background: var(--saffron); color: var(--burgundy); }
.qty-display {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
  min-width: 20px;
  text-align: center;
}

/* ---- CART PAGE ---- */
.cart-section { padding: 2rem 6rem 4rem; min-height: 70vh; }
.cart-grid { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; align-items: start; }
.cart-items-list { display: flex; flex-direction: column; gap: 1rem; }
.cart-item {
  background: var(--burgundy-mid);
  border: 1px solid rgba(232,133,10,0.1);
  border-radius: 16px;
  padding: 1.2rem;
  display: flex; gap: 1rem; align-items: center;
  transition: all 0.3s ease;
}
.cart-item:hover { border-color: rgba(232,133,10,0.25); }
.cart-item-emoji {
  width: 70px; height: 70px;
  border-radius: 12px;
  background: var(--burgundy-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}
.cart-item-details { flex: 1; }
.cart-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.cart-item-price { font-size: 0.82rem; color: var(--text-muted); }
.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.cart-item-total {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--saffron-light);
  min-width: 70px;
  text-align: right;
}
.remove-btn {
  background: transparent;
  border: 1px solid rgba(255,100,100,0.3);
  color: #ff6b6b;
  width: 28px; height: 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.remove-btn:hover { background: rgba(255,100,100,0.2); }
.cart-summary {
  background: var(--burgundy-mid);
  border: 1px solid rgba(232,133,10,0.15);
  border-radius: 20px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.summary-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(232,133,10,0.15);
}
.summary-row {
  display: flex; justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}
.summary-total {
  display: flex; justify-content: space-between;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  padding-top: 1rem;
  border-top: 1px solid rgba(232,133,10,0.2);
  margin-top: 0.8rem;
}
.checkout-btn {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--burgundy);
  padding: 1rem;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(232,133,10,0.3);
}
.checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(232,133,10,0.5); }
.coupon-form { display: flex; gap: 8px; margin-top: 1rem; }
.coupon-input {
  flex: 1;
  background: var(--burgundy);
  border: 1px solid rgba(247,237,216,0.15);
  color: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-family: 'Raleway', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}
.coupon-input:focus { border-color: var(--saffron); }
.coupon-apply {
  background: transparent;
  border: 1px solid var(--saffron);
  color: var(--saffron);
  padding: 0.6rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  transition: all 0.3s;
}
.coupon-apply:hover { background: var(--saffron); color: var(--burgundy); }
.cart-empty {
  text-align: center;
  padding: 5rem 2rem;
}
.cart-empty-icon { font-size: 5rem; margin-bottom: 1.5rem; opacity: 0.5; }
.cart-empty h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.cart-empty p { color: var(--text-muted); margin-bottom: 2rem; }

/* ---- CHECKOUT ---- */
.checkout-section { padding: 2rem 6rem 4rem; }
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; }
.checkout-form-card {
  background: var(--burgundy-mid);
  border: 1px solid rgba(232,133,10,0.12);
  border-radius: 20px;
  padding: 2rem;
}
.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 10px;
}
.form-section-title::before {
  content: '';
  width: 4px; height: 20px;
  background: linear-gradient(to bottom, var(--saffron), var(--gold));
  border-radius: 2px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.form-input, .form-select, .form-textarea {
  background: var(--burgundy);
  border: 1px solid rgba(247,237,216,0.12);
  color: var(--cream);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'Raleway', sans-serif;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232,133,10,0.15);
}
.form-select option { background: var(--burgundy-mid); }
.form-textarea { resize: vertical; min-height: 80px; }
.payment-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-bottom: 1.5rem; }
.payment-option {
  background: var(--burgundy);
  border: 1px solid rgba(247,237,216,0.12);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.payment-option:hover, .payment-option.selected {
  border-color: var(--saffron);
  background: rgba(232,133,10,0.1);
}
.payment-option .payment-icon { font-size: 1.8rem; margin-bottom: 6px; }
.payment-option span { font-size: 0.75rem; color: var(--text-muted); }
.place-order-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--burgundy);
  border: none;
  padding: 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(232,133,10,0.35);
}
.place-order-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(232,133,10,0.55); }

/* ---- ORDER SUCCESS ---- */
.success-section {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 2rem;
}
.success-card {
  background: var(--burgundy-mid);
  border: 1px solid rgba(232,133,10,0.2);
  border-radius: 24px;
  padding: 3rem;
  max-width: 560px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.success-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
}
.success-icon { font-size: 5rem; margin-bottom: 1.5rem; animation: bounce 0.8s ease; }
@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.success-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.success-card p { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.order-number {
  background: var(--burgundy);
  border: 1px solid rgba(232,133,10,0.2);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 2rem;
}
.order-number span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.order-number strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--saffron-light);
  font-weight: 700;
}

/* ---- FOOTER ---- */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(232,133,10,0.1);
  padding: 4rem 6rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin: 1rem 0; }
.footer-brand .social-links { display: flex; gap: 0.8rem; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(232,133,10,0.1);
  border: 1px solid rgba(232,133,10,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-btn:hover { background: var(--saffron); border-color: var(--saffron); transform: translateY(-3px); }
.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--saffron-light); }
.footer-bottom {
  border-top: 1px solid rgba(247,237,216,0.06);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--saffron); text-decoration: none; }

/* ---- ALERT/TOAST ---- */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--burgundy-mid);
  border: 1px solid rgba(232,133,10,0.3);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  z-index: 9000;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 1.5rem; }
.toast-title { font-size: 0.9rem; font-weight: 600; color: var(--cream); }
.toast-msg { font-size: 0.78rem; color: var(--text-muted); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- PAGE TITLE AREA ---- */
.page-header {
  padding: 8rem 6rem 3rem;
  background: linear-gradient(135deg, var(--burgundy-mid) 0%, var(--burgundy) 100%);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(60deg, transparent, transparent 80px, rgba(232,133,10,0.02) 80px, rgba(232,133,10,0.02) 81px);
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--cream);
  position: relative;
}
.page-header h1 em { color: var(--saffron-light); font-style: italic; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  position: relative;
}
.breadcrumb a { color: var(--saffron); text-decoration: none; }
.breadcrumb span { opacity: 0.5; }

/* ---- ALERTS ---- */
.alert {
  padding: 1rem 1.4rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem;
}
.alert-success { background: rgba(76,175,80,0.1); border: 1px solid rgba(76,175,80,0.3); color: #81C784; }
.alert-error { background: rgba(244,67,54,0.1); border: 1px solid rgba(244,67,54,0.3); color: #ef9a9a; }
.alert-info { background: rgba(232,133,10,0.1); border: 1px solid rgba(232,133,10,0.25); color: var(--saffron-light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: 0.8rem 2rem; }
  .section { padding: 4rem 2rem; }
  .hero-content { padding: 0 2rem; }
  .hero-3d-dish { display: none; }
  .hero-stats { left: 2rem; }
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-grid, .checkout-grid { grid-template-columns: 1fr; }
  .menu-filters, .menu-content, .cart-section, .checkout-section { padding-left: 2rem; padding-right: 2rem; }
  .page-header { padding: 7rem 2rem 2rem; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .dishes-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { display: none; }
  .hero-title { font-size: 2.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .payment-options { grid-template-columns: 1fr; }
}
