/* =========================================
   DRAGON PEARL — Main Stylesheet
   ========================================= */

:root {
  --vermillion: #C8392B;
  --gold: #D4A843;
  --gold-light: #F0C96A;
  --ink: #1A0A00;
  --cream: #FAF5ED;
  --warm-gray: #8A7968;
  --paper: #F5EDD8;
  --dark-red: #8B1A0E;
  --jade: #3A7D5C;
}

/* ── RESET ─────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAVIGATION ─────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(26, 10, 0, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-symbol {
  font-family: 'Noto Serif SC', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(250, 245, 237, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  cursor: pointer;
}

.nav-links a:hover { color: var(--gold); }

.cart-btn {
  background: var(--vermillion);
  color: white;
  border: none;
  padding: 0.6rem 1.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
}

.cart-btn:hover { background: var(--dark-red); }

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── PAGES ──────────────────────────────── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ── HERO ───────────────────────────────── */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200, 57, 43, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212, 168, 67, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #1A0A00 0%, #2D1510 50%, #1A0A00 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A843' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 700px;
  animation: heroIn 1.2s ease forwards;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  flex: 0 0 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  color: rgba(250, 245, 237, 0.6);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--vermillion);
  color: white;
  padding: 1rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { background: var(--dark-red); transform: translateY(-2px); }

.btn-outline {
  border: 1px solid rgba(212, 168, 67, 0.5);
  color: var(--gold);
  padding: 1rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--gold); background: rgba(212, 168, 67, 0.1); }

.hero-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
  opacity: 0.35;
}

.hero-chars {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Noto Serif SC', serif;
  font-size: 12rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 0.85;
  opacity: 0.15;
  letter-spacing: -0.05em;
}

/* ── DELIVERY BADGES ────────────────────── */
.delivery-badges {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  display: flex;
  gap: 0.8rem;
  z-index: 3;
}

.badge {
  background: rgba(26, 10, 0, 0.8);
  border: 1px solid rgba(212, 168, 67, 0.3);
  padding: 0.7rem 1.2rem;
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.badge:hover { border-color: var(--gold); background: rgba(212, 168, 67, 0.1); }
.badge-icon { font-size: 1.1rem; }
.badge.swiggy  .badge-icon { color: #FC8019; }
.badge.zomato  .badge-icon { color: #E23744; }
.badge.whatsapp .badge-icon { color: #25D366; }

/* ── SECTION SHARED ─────────────────────── */
section { padding: 6rem 4rem; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
}

/* ── FEATURES STRIP ─────────────────────── */
.features {
  background: var(--ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-item {
  padding: 3rem;
  border-right: 1px solid rgba(212, 168, 67, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(212, 168, 67, 0.05); }

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
}

.feature-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.feature-item p {
  color: rgba(250, 245, 237, 0.5);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
}

/* ── MENU ───────────────────────────────── */
.menu-section { background: var(--paper); }

.menu-categories {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cat-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: all 0.3s;
  background: transparent;
  color: var(--warm-gray);
  border-color: rgba(138, 121, 104, 0.3);
}

.cat-btn.active,
.cat-btn:hover {
  background: var(--vermillion);
  color: white;
  border-color: var(--vermillion);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--cream);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26, 10, 0, 0.12);
}

.menu-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #2D1510, #1A0A00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.menu-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--vermillion);
  color: white;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  font-weight: 600;
}

.menu-card-body { padding: 1.2rem; }

.menu-card-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.menu-card-body p {
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--vermillion);
}

.add-btn {
  background: var(--ink);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.add-btn:hover { background: var(--vermillion); }

/* ── ORDER OPTIONS SECTION ──────────────── */
.order-section { background: var(--cream); }

.order-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.order-card {
  border: 1px solid rgba(26, 10, 0, 0.1);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.order-card:hover { border-color: var(--vermillion); box-shadow: 0 10px 30px rgba(200, 57, 43, 0.1); }

.order-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.order-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.order-card p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.order-card .cta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--vermillion);
}

.order-card.whatsapp-card:hover { border-color: #25D366; }
.order-card.swiggy-card:hover   { border-color: #FC8019; }
.order-card.zomato-card:hover   { border-color: #E23744; }

/* ── TESTIMONIALS ───────────────────────── */
.testimonials { background: var(--ink); padding: 6rem 4rem; }
.testimonials .section-title { color: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  background: rgba(212, 168, 67, 0.05);
  border: 1px solid rgba(212, 168, 67, 0.15);
  padding: 2rem;
  position: relative;
}

.stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; }

.testimonial p {
  color: rgba(250, 245, 237, 0.7);
  line-height: 1.7;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── ABOUT STRIP ────────────────────────── */
.about-strip {
  background: var(--paper);
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--warm-gray);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-box {
  background: var(--ink);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-align: center;
  padding: 1.5rem;
}

.about-box:nth-child(2) { background: var(--vermillion); margin-top: 2rem; }
.about-box:nth-child(3) { background: var(--gold); color: var(--ink); margin-top: -2rem; }
.about-box:nth-child(4) { background: rgba(26, 10, 0, 0.7); }

.about-box .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about-box .label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; }

/* ── CONTACT PAGE ───────────────────────── */
.contact-page {
  padding-top: 120px;
  background: var(--cream);
  min-height: 100vh;
}

.contact-hero {
  background: var(--ink);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '龍珠';
  position: absolute;
  font-family: 'Noto Serif SC', serif;
  font-size: 20rem;
  color: var(--gold);
  opacity: 0.03;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}

.contact-hero p { color: rgba(250, 245, 237, 0.6); max-width: 500px; margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 4rem;
}

.contact-info {
  padding: 3rem 3rem 3rem 0;
  border-right: 1px solid rgba(26, 10, 0, 0.1);
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--ink);
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }

.info-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.info-item p { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.5; }

.contact-form { padding: 3rem 0 3rem 3rem; }

.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid rgba(26, 10, 0, 0.15);
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--vermillion); }
.form-group textarea { resize: vertical; min-height: 100px; }

.submit-btn {
  background: var(--vermillion);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.submit-btn:hover { background: var(--dark-red); }

/* ── ORDERS PAGE ────────────────────────── */
.orders-page {
  padding-top: 120px;
  min-height: 100vh;
  background: var(--cream);
}

.orders-hero {
  background: var(--ink);
  padding: 5rem 4rem;
  text-align: center;
}

.orders-hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}

.orders-hero p { color: rgba(250, 245, 237, 0.6); }

.orders-container { padding: 4rem; max-width: 900px; margin: 0 auto; }

.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.platform-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 2px solid transparent;
  background: white;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.platform-card.wa { border-color: #25D366; }
.platform-card.sw { border-color: #FC8019; }
.platform-card.zo { border-color: #E23744; }

.platform-logo { font-size: 3.5rem; margin-bottom: 1rem; }

.platform-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.platform-card p { font-size: 0.85rem; color: var(--warm-gray); margin-bottom: 1.5rem; line-height: 1.5; }

.platform-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  border: none;
}

.platform-card.wa .platform-btn { background: #25D366; color: white; }
.platform-card.sw .platform-btn { background: #FC8019; color: white; }
.platform-card.zo .platform-btn { background: #E23744; color: white; }

.platform-card:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); }

/* ── CART OVERLAY ───────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: none;
  backdrop-filter: blur(4px);
}

.cart-overlay.open { display: flex; justify-content: flex-end; }

.cart-drawer {
  background: var(--cream);
  width: 420px;
  height: 100%;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.cart-header {
  background: var(--ink);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: 400;
}

.close-cart {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.close-cart:hover { opacity: 1; }

.cart-body { padding: 2rem; }

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--warm-gray);
}

.cart-empty .empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.cart-empty p { font-size: 0.9rem; }

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26, 10, 0, 0.08);
}

.cart-item-emoji { font-size: 2rem; }
.cart-item-details { flex: 1; }

.cart-item-details h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.cart-item-details .item-price { font-size: 0.85rem; color: var(--vermillion); font-weight: 600; }

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  background: var(--ink);
  color: white;
  border: none;
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-btn:hover { background: var(--vermillion); }
.qty-num { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }

.cart-footer {
  padding: 1.5rem 2rem;
  background: var(--paper);
  border-top: 1px solid rgba(26, 10, 0, 0.1);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cart-total span { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-gray); }
.cart-total strong { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--vermillion); }

.checkout-section { display: flex; flex-direction: column; gap: 0.8rem; }

.wa-checkout, .swiggy-checkout, .zomato-checkout {
  padding: 0.85rem;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
  text-decoration: none;
  display: block;
  text-align: center;
}

.wa-checkout     { background: #25D366; color: white; }
.swiggy-checkout { background: #FC8019; color: white; }
.zomato-checkout { background: #E23744; color: white; }
.wa-checkout:hover, .swiggy-checkout:hover, .zomato-checkout:hover { opacity: 0.85; }

/* ── FOOTER ─────────────────────────────── */
footer {
  background: var(--ink);
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  border-top: 1px solid rgba(212, 168, 67, 0.2);
}

.footer-brand .logo-text { color: var(--cream); font-size: 1.3rem; }
.footer-brand p { color: rgba(250, 245, 237, 0.4); font-size: 0.85rem; line-height: 1.6; margin-top: 1rem; font-weight: 300; }

footer h4 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 0.6rem; }
footer ul li a {
  color: rgba(250, 245, 237, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
  cursor: pointer;
}
footer ul li a:hover { color: var(--gold); }

.footer-bottom {
  background: var(--ink);
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { color: rgba(250, 245, 237, 0.3); font-size: 0.8rem; }

/* ── TOAST ──────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  z-index: 9999;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-left: 3px solid var(--gold);
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* ── HAMBURGER BUTTON ───────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ──────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 10, 0, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 5rem 2rem 3rem;
  backdrop-filter: blur(12px);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: color 0.3s;
  text-align: center;
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-divider {
  width: 40px;
  height: 1px;
  background: rgba(212, 168, 67, 0.3);
  margin: 1rem 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet  (≤ 1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 1rem 2rem; }

  .hero-content { padding: 0 2.5rem; max-width: 600px; }
  .hero-chars { font-size: 8rem; opacity: 0.1; }

  .about-strip { padding: 5rem 2.5rem; gap: 3rem; }

  .features { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(1),
  .feature-item:nth-child(2) { border-bottom: 1px solid rgba(212, 168, 67, 0.15); }

  .testimonials { padding: 5rem 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .contact-grid { padding: 0 2.5rem; }

  footer { padding: 3rem 2.5rem; }
  .footer-bottom { padding: 1.5rem 2.5rem; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile  (≤ 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  nav {
    padding: 1rem 1.2rem;
    gap: 0.8rem;
  }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .logo-text { font-size: 1.1rem; }
  .logo-symbol { font-size: 1.6rem; }
  .cart-btn { padding: 0.55rem 1rem; font-size: 0.75rem; }

  /* ── HERO ── */
  .hero {
    height: auto;
    min-height: 100svh;
    padding: 6rem 0 2rem;
    align-items: flex-start;
  }
  .hero-content {
    padding: 2rem 1.2rem 0;
    max-width: 100%;
  }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-desc { font-size: 0.9rem; max-width: 100%; }
  .hero-chars { display: none; }
  .hero-right { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 0.9rem 1.5rem; }

  /* Delivery badges — stack below hero content, not absolute */
  .delivery-badges {
    position: static;
    flex-direction: column;
    margin: 1.5rem 1.2rem 2rem;
    gap: 0.6rem;
  }
  .badge { justify-content: center; font-size: 0.82rem; padding: 0.75rem 1rem; }

  /* ── SECTIONS ── */
  section { padding: 3.5rem 1.2rem; }
  .section-header { margin-bottom: 2.5rem; }

  /* ── FEATURES ── */
  .features { grid-template-columns: 1fr; }
  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    padding: 2rem 1.5rem;
  }
  .feature-item:last-child { border-bottom: none; }

  /* ── ABOUT STRIP ── */
  .about-strip {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.2rem;
  }
  .about-visual { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  /* Remove the stagger that causes overflow on small screens */
  .about-box:nth-child(2) { margin-top: 0; }
  .about-box:nth-child(3) { margin-top: 0; }
  .about-box .num { font-size: 2rem; }

  /* ── MENU ── */
  .menu-section { padding: 3.5rem 1.2rem; }
  .menu-categories { gap: 0.4rem; }
  .cat-btn { padding: 0.5rem 1rem; font-size: 0.72rem; }
  .menu-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .menu-card-img { height: 140px; }

  /* ── ORDER OPTIONS ── */
  .order-options { grid-template-columns: 1fr; gap: 1rem; }
  .order-card { padding: 1.8rem 1.5rem; }

  /* ── TESTIMONIALS ── */
  .testimonials { padding: 3.5rem 1.2rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .testimonial { padding: 1.5rem; }

  /* ── PLATFORM CARDS (Orders page) ── */
  .platform-cards { grid-template-columns: 1fr; gap: 1.2rem; }
  .orders-container { padding: 2.5rem 1.2rem; }
  .orders-hero { padding: 3rem 1.2rem; }
  .orders-hero h2 { font-size: 2.5rem; }

  /* ── CONTACT ── */
  .contact-page { padding-top: 80px; }
  .contact-hero { padding: 3rem 1.2rem; }
  .contact-hero h2 { font-size: 2.5rem; }
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 1.2rem;
    margin: 2rem auto;
  }
  .contact-info {
    border-right: none;
    padding: 0 0 2rem 0;
    border-bottom: 1px solid rgba(26, 10, 0, 0.1);
  }
  .contact-form { padding: 2rem 0 0 0; }
  .contact-form h3, .contact-info h3 { font-size: 1.6rem; }

  /* ── CART DRAWER ── */
  .cart-drawer { width: 100%; }
  .cart-body { padding: 1.2rem; }
  .cart-footer { padding: 1.2rem; }

  /* ── TOAST ── */
  .toast {
    width: calc(100% - 2.4rem);
    left: 1.2rem;
    right: 1.2rem;
    transform: translateY(100px);
    justify-content: center;
  }
  .toast.show { transform: translateY(0); }

  /* ── FOOTER ── */
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem 1.2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    padding: 1.2rem 1.2rem;
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Small phones  (≤ 420px)
═══════════════════════════════════════════ */
@media (max-width: 420px) {
  .hero h1 { font-size: 2rem; }
  .hero-eyebrow { font-size: 0.85rem; }
  .hero-eyebrow::before, .hero-eyebrow::after { flex: 0 0 20px; }

  .about-visual { grid-template-columns: 1fr 1fr; }
  .about-box { padding: 1rem; }
  .about-box .num { font-size: 1.6rem; }

  footer { grid-template-columns: 1fr; }
  .footer-brand { grid-column: unset; }

  .badge { font-size: 0.75rem; }
  .menu-categories { gap: 0.3rem; }
  .cat-btn { padding: 0.45rem 0.8rem; font-size: 0.68rem; }

  .contact-hero::before { font-size: 10rem; }
}
