/* ============================================================
   Chacha Biryani – Main Stylesheet
   Design: Mughal Luxury — dark, gold, warm saffron
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --bg-deep:      #080202;
  --bg-dark:      #120605;
  --bg-card:      #1c0c08;
  --bg-card-hover:#241009;
  --bg-section:   #0f0403;

  --gold:         #C8860A;
  --gold-light:   #E8A820;
  --gold-pale:    #f5d080;
  --gold-dim:     rgba(200,134,10,0.15);
  --gold-border:  rgba(200,134,10,0.3);

  --saffron:      #E0580A;
  --maroon:       #7B1528;
  --maroon-light: #a01e36;

  --cream:        #FDF4E3;
  --cream-dim:    #d4c4a0;
  --text-muted:   #8a7060;

  --white:        #FFFFFF;
  --shadow:       0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold:  0 4px 24px rgba(200,134,10,0.25);

  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.3s ease;

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Nunito', 'Segoe UI', sans-serif;

  --header-h:     72px;
  --max-w:        1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-deep);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cream);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem,  4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--cream-dim); }

/* ── Utility Classes ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 100px 0; }
.section-pad--sm { padding: 64px 0; }

.text-gold     { color: var(--gold); }
.text-saffron  { color: var(--saffron); }
.text-center   { text-align: center; }

.ornament {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
  margin: 16px auto;
}
.ornament--left { margin-left: 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(8, 2, 2, 0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}

.site-header.scrolled .header-inner {
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  border-bottom: 1px solid var(--gold-border);
  height: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
  text-decoration: none;
}

.site-logo__main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.site-logo__sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Navigation */
.site-nav { display: flex; align-items: center; gap: 36px; }

.site-nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.site-nav a:hover,
.site-nav a.active { color: var(--gold); }
.site-nav a:hover::after { width: 100%; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 16px; }

.cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color var(--transition);
}
.cart-link:hover { color: var(--gold); }

.cart-link svg { width: 20px; height: 20px; }

.chacha-cart-count {
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Order button in header */
.btn-order-header {
  background: var(--gold);
  color: var(--bg-deep);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-order-header:hover {
  background: var(--gold-light);
  color: var(--bg-deep);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(8, 2, 2, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold-border);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 0;
}

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

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--gold-border);
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;                        /* old browsers */
  min-height: calc(var(--dvh, 1vh) * 100);  /* JS fix for iOS */
  min-height: 100dvh;                       /* modern browsers */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(123,21,40,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(200,134,10,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(224,88,10,0.1) 0%, transparent 50%);
  z-index: 0;
}

/* Decorative grid pattern */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,134,10,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,134,10,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 60px;
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  background: rgba(200,134,10,0.05);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 8px;
}

.hero__title span {
  display: inline-block;
  padding-bottom: 0.12em;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream-dim);
  max-width: 540px;
  margin: 24px auto 40px;
  line-height: 1.8;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--bg-deep);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--bg-deep);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(253,244,227,0.3);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── Hero background image (set via customizer or inline style) ── */
.hero--has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* ── Hero dish slider ── */
.hero-dishes {
  position: absolute;
  bottom: 72px;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  padding: 10px 0;
}

.hero-dishes__track {
  display: flex;
  gap: 18px;
  animation: dishScroll 32s linear infinite;
  width: max-content;
}

.hero-dishes__track:hover { animation-play-state: paused; }

.hero-dishes__item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
}

.hero-dishes__img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 2px solid rgba(200,134,10,0.5);
  overflow: hidden;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  transition: border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.hero-dishes__item:hover .hero-dishes__img {
  border-color: var(--gold);
  transform: scale(1.08);
}

.hero-dishes__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dishes__name {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(253,244,227,0.6);
  text-align: center;
  max-width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes dishScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Push scroll indicator above slider */
.hero__scroll { bottom: 8px; }

/* ══════════════════════════════════════════════════════════════
   INFO STRIP
══════════════════════════════════════════════════════════════ */
.info-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 20px 0;
}

.info-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.info-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream-dim);
}

.info-strip__item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════════ */
.about-section {
  background: var(--bg-section);
  padding: 100px 0;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 { margin-bottom: 24px; }
.about-text p { font-size: 1rem; line-height: 1.9; margin-bottom: 16px; }

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold), var(--saffron), var(--maroon));
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-image__inner {
  position: relative;
  z-index: 1;
  margin: 2px;
  border-radius: calc(var(--radius-lg) - 2px);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
}

.about-image__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid var(--gold-border);
  padding-top: 32px;
}

.about-stat { text-align: center; }

.about-stat__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.about-stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   SIGNATURE DISHES
══════════════════════════════════════════════════════════════ */
.dishes-section {
  background: var(--bg-deep);
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 { margin-bottom: 0; }

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dish-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.dish-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(200,134,10,0.2);
}

.dish-card__image {
  aspect-ratio: 4/3;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.dish-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dish-card:hover .dish-card__image img { transform: scale(1.05); }

.dish-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-section));
  font-size: 3rem;
}

.dish-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.dish-card__body {
  padding: 20px 22px;
}

.dish-card__category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

.dish-card__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.3;
}

.dish-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dish-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dish-card__price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.dish-card__price span { font-size: 0.75rem; color: var(--text-muted); margin-left: 2px; }

/* ══════════════════════════════════════════════════════════════
   DELIVERY ZONES SECTION
══════════════════════════════════════════════════════════════ */
.delivery-section {
  background: var(--bg-card);
  padding: 100px 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.delivery-text h2 { margin-bottom: 20px; }
.delivery-text p { margin-bottom: 24px; }

.delivery-zones {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zone-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-section);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color var(--transition), background var(--transition);
}

.zone-card:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
}

.zone-card__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.zone-card:nth-child(1) .zone-card__num { background: rgba(200,134,10,0.2); color: var(--gold-light); }
.zone-card:nth-child(2) .zone-card__num { background: rgba(224,88,10,0.2); color: var(--saffron); }
.zone-card:nth-child(3) .zone-card__num { background: rgba(123,21,40,0.3); color: var(--maroon-light); }

.zone-card__info { flex: 1; }

.zone-card__range {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
}

.zone-card__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
  display: block;
}

.zone-card__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.delivery-visual {
  position: relative;
}

.delivery-map-graphic {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bg-section);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  max-width: 380px;
  margin: 0 auto;
}

.delivery-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.delivery-ring:nth-child(1) { width: 30%; height: 30%; border-color: rgba(200,134,10,0.6); }
.delivery-ring:nth-child(2) { width: 58%; height: 58%; border-color: rgba(224,88,10,0.45); }
.delivery-ring:nth-child(3) { width: 88%; height: 88%; border-color: rgba(123,21,40,0.45); }

.delivery-center-pin {
  position: relative;
  z-index: 2;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(200,134,10,0.2), 0 0 20px rgba(200,134,10,0.4);
}

.delivery-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.delivery-label {
  position: absolute;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--bg-card);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--gold-border);
  white-space: nowrap;
}

.delivery-label--1 { top: 44%; left: 54%; }
.delivery-label--2 { top: 30%; left: 64%; }
.delivery-label--3 { top: 18%; left: 55%; }

/* Payment methods */
.payment-methods {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-tag {
  background: var(--bg-section);
  border: 1px solid var(--gold-border);
  color: var(--cream-dim);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ══════════════════════════════════════════════════════════════
   CALL TO ACTION
══════════════════════════════════════════════════════════════ */
.cta-section {
  background:
    radial-gradient(ellipse at center, rgba(123,21,40,0.4) 0%, transparent 70%),
    var(--bg-deep);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--gold-border);
}

.cta-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

.cta-section p { font-size: 1.1rem; max-width: 480px; margin: 0 auto 40px; }

/* ══════════════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--bg-section);
  padding: 100px 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h2 { margin-bottom: 32px; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item__text strong {
  display: block;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-item__text span,
.contact-item__text a {
  color: var(--cream-dim);
  font-size: 0.95rem;
  text-decoration: none;
}

.contact-item__text a:hover { color: var(--gold); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  height: 100%;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  filter: invert(0.9) hue-rotate(200deg) saturate(0.5);
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--gold-border);
  margin-top: 64px;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gold-border);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 300px;
  margin-top: 16px;
  line-height: 1.8;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-contact-list svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-bottom a { color: var(--gold); }


/* ══════════════════════════════════════════════════════════════
   WOOCOMMERCE – SHOP / MENU PAGE
══════════════════════════════════════════════════════════════ */
.wc-menu-page {
  padding-top: calc(var(--header-h) + 48px);
  background: var(--bg-deep);
  min-height: 100vh;
}

.menu-page-header {
  text-align: center;
  padding: 60px 24px 48px;
  max-width: 700px;
  margin: 0 auto;
}

.menu-page-header h1 { margin-bottom: 12px; }
.menu-page-header p { font-size: 1rem; }

/* Category tabs */
.category-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 24px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar { display: none; }

.category-tab {
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: var(--cream-dim);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.category-tab:hover,
.category-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-deep);
}

/* Products grid */
.woocommerce-loop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 24px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* WC Product Card */
.woocommerce ul.products li.product,
.products.columns-3 li.product {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  list-style: none;
  position: relative;
}

.woocommerce ul.products li.product:hover,
.products.columns-3 li.product:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(200,134,10,0.18);
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
  text-decoration: none;
}

.woocommerce ul.products li.product img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-bottom: 1px solid var(--gold-border);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  padding: 16px 18px 6px;
  margin: 0;
}

.woocommerce ul.products li.product .price {
  display: block;
  padding: 0 18px 8px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.woocommerce ul.products li.product .price .woocommerce-Price-currencySymbol { font-size: 0.85em; }

.woocommerce ul.products li.product .short-description,
.woocommerce ul.products li.product .woocommerce-product-details__short-description {
  padding: 0 18px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product a.button {
  display: block;
  margin: 0 18px 18px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--bg-deep) !important;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.woocommerce ul.products li.product .add_to_cart_button:hover { opacity: 0.88; transform: translateY(-1px); }

/* WC Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notice {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  border-left: 4px solid var(--gold);
  list-style: none;
}

.woocommerce-error { border-left-color: var(--maroon-light); }

/* ══════════════════════════════════════════════════════════════
   WOOCOMMERCE – CART & CHECKOUT
══════════════════════════════════════════════════════════════ */
.is-woocommerce .site-main {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 80px;
  background: var(--bg-deep);
  min-height: 100vh;
}

.woocommerce-cart-form,
.woocommerce-checkout,
.woocommerce-order-details,
.woocommerce-customer-details {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Checkout headings */
.woocommerce .checkout h3,
.woocommerce-page h1,
.woocommerce-page h2,
.woocommerce-page h3 {
  font-family: var(--font-heading);
  color: var(--cream);
}

/* Form fields */
.woocommerce form .form-row label {
  color: var(--cream-dim);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color var(--transition);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px var(--gold-dim);
}

/* WC Buttons */
.woocommerce #place_order,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce button.button.alt {
  background: linear-gradient(135deg, var(--gold), var(--saffron)) !important;
  color: var(--bg-deep) !important;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
}

.woocommerce #place_order:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* Order summary */
.woocommerce-checkout-review-order-table,
.shop_table {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-collapse: collapse;
}

.woocommerce-checkout-review-order-table th,
.shop_table th {
  background: var(--bg-section);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gold-border);
}

.woocommerce-checkout-review-order-table td,
.shop_table td {
  padding: 14px 20px;
  color: var(--cream);
  border-bottom: 1px solid var(--gold-border);
  font-size: 0.9rem;
}

/* Delivery feedback widget */
.chacha-delivery-feedback {
  margin: 16px 0;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid;
}

.chacha-delivery-feedback.available {
  background: rgba(200,134,10,0.08);
  border-color: var(--gold);
  color: var(--gold-light);
}

.chacha-delivery-feedback.unavailable {
  background: rgba(123,21,40,0.15);
  border-color: var(--maroon-light);
  color: #e07090;
}

.chacha-delivery-feedback.checking {
  background: var(--bg-card);
  border-color: var(--gold-border);
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   PAGE TEMPLATE
══════════════════════════════════════════════════════════════ */
.page-main {
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 80px;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.page-main .entry-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 32px;
}

.page-main .entry-content { color: var(--cream-dim); }
.page-main .entry-content h2, .page-main .entry-content h3 { color: var(--cream); }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .delivery-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .woocommerce-loop { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .site-nav, .btn-order-header { display: none; }
  .menu-toggle { display: flex; }

  .dishes-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .info-strip__inner { gap: 20px; justify-content: flex-start; flex-direction: column; align-items: flex-start; }
  .woocommerce-loop { grid-template-columns: 1fr; }
  .woocommerce ul.products { display: grid; grid-template-columns: 1fr; }

  /* ── Mobile Hero fixes ── */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    align-items: flex-start;   /* push content to top so it's visible below header */
  }

  .hero__content {
    padding: calc(var(--header-h) + 28px) 20px 160px; /* room for dish slider */
    max-width: 100%;
  }

  .hero__badge {
    font-size: 0.6rem;
    padding: 6px 14px;
    letter-spacing: 0.15em;
  }

  .hero__title {
    font-size: clamp(2.4rem, 12vw, 4rem);
    line-height: 1.08;
  }

  .hero__subtitle {
    font-size: 0.9rem;
    margin: 16px auto 28px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero__ctas .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero__scroll { display: none; } /* hide scroll indicator on mobile */

  /* Dish slider on mobile */
  .hero-dishes { bottom: 12px; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; gap: 12px; }
  .about-stat { display: flex; align-items: center; gap: 12px; text-align: left; }
}
