/* ========================================================
   KRISPIE'S — BRAND STYLESHEET
   Bakery & Cafe | Your Celebrations Partner | Since 1996
   ======================================================== */

/* ---- 1. VARIABLES ---- */
:root {
  --black:       #0A0A0A;
  --black-2:     #111111;
  --black-3:     #1A1A1A;
  --black-4:     #222222;
  --gold:        #C9A870;
  --gold-light:  #E5CFA0;
  --gold-faint:  rgba(201, 168, 112, 0.12);
  --gold-dark:   #9A7A48;
  --cream:       #FAF7F0;
  --cream-2:     #F0E8D5;
  --border-gold: rgba(201, 168, 112, 0.28);
  --shadow-gold: 0 8px 40px rgba(201, 168, 112, 0.18);

  --text-on-dark:   #E8D9C0;
  --text-muted:     rgba(232, 217, 192, 0.55);
  --text-on-light:  #1A1208;
  --text-muted-lt:  #6B5B3E;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h:   90px;
  --promo-h: 36px;
  --pad-xl:  120px;
  --pad-lg:  100px;
  --pad-md:  70px;
  --pad-sm:  48px;
  --radius:  6px;
  --radius-lg: 14px;

  --ease:      0.3s ease;
  --ease-slow: 0.6s ease;
}

/* ---- 2. RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-on-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ---- 3. TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
}

/* ---- 4. UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  display: block;
}
.gold-line {
  display: block;
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin: 14px auto;
}
.gold-line--left { margin-left: 0; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
}
.section-title--light { color: var(--text-on-light); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 64px; }

/* ---- 5. BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--ease);
  border: none;
  font-family: var(--font-body);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,112,0.35); }
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: var(--gold-faint); transform: translateY(-2px); }
.btn-zomato { background: #CB202D; color: #fff; }
.btn-zomato:hover { background: #a5141f; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(203,32,45,0.35); }
.btn-swiggy { background: #FC8019; color: #fff; }
.btn-swiggy:hover { background: #e06b0a; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(252,128,25,0.35); }
.btn-dark { background: var(--black); color: var(--gold); border: 1.5px solid var(--border-gold); }
.btn-dark:hover { border-color: var(--gold); background: var(--gold-faint); }
/* Outline button for use on light (cream) backgrounds */
.btn-outline-dark { background: transparent; color: #6B4C1E; border: 1.5px solid rgba(107,76,30,0.45); }
.btn-outline-dark:hover { background: rgba(107,76,30,0.07); border-color: #6B4C1E; transform: translateY(-2px); }

/* ---- 6. NAVIGATION ---- */
/* ---- PROMO BAR ---- */
.promo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  height: var(--promo-h);
  background: var(--gold);
  color: var(--text-on-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  padding: 0 48px;
  letter-spacing: 0.01em;
}
.promo-bar__text { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.promo-bar__code {
  display: inline-block;
  background: rgba(0,0,0,0.18);
  border: 1.5px dashed rgba(0,0,0,0.35);
  border-radius: 4px;
  padding: 1px 8px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}
.promo-bar__short { display: none; }
.promo-bar__close {
  position: absolute; right: 16px;
  background: none; border: none;
  color: var(--text-on-light);
  font-size: 1.3rem; line-height: 1;
  cursor: pointer; padding: 4px 8px;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.promo-bar__close:hover { opacity: 1; }

.nav {
  position: fixed; top: var(--promo-h); left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  gap: 40px;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.96);
  box-shadow: 0 1px 0 var(--border-gold);
}
.nav__inner {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.nav__logo img { height: 72px; width: auto; margin-right: 32px; }
.nav__links {
  display: flex; gap: 32px; align-items: center;
}
.nav__links a {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav__links a:hover,
.nav__links a.active { color: var(--gold); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__cta { display: flex; gap: 10px; margin-left: 32px; }
.nav__order-btn { padding: 9px 18px; font-size: 0.72rem; }
.nav__hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav__hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--gold); transition: var(--ease);
}
.nav__mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  padding: 32px 28px 40px;
  border-top: 1px solid var(--border-gold);
  z-index: 999;
  flex-direction: column; gap: 20px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 0.9rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
  transition: var(--ease);
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile-order { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* ---- 7. HERO BANNER CAROUSEL ---- */
.hero {
  position: relative;
  width: 100%;
  height: clamp(700px, calc(100vh - var(--nav-h)), 960px);
  overflow: hidden;
  background: #FDF8F0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, rgba(201,168,112,0.2) 10%, var(--gold) 40%, var(--gold-dark) 50%, var(--gold) 60%, rgba(201,168,112,0.2) 90%, transparent 100%);
  z-index: 20;
}

/* Track holds all slides side-by-side */
.hero__track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

/* Each slide */
.hero__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Slide backgrounds — swap background-image for real photos */
.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.hero__slide--1 .hero__slide-bg {
  background:
    linear-gradient(135deg, #FDF8F0 0%, #F5E6CC 50%, #E8D5B0 100%);
}
.hero__slide--2 .hero__slide-bg {
  background:
    linear-gradient(135deg, #FFF5F0 0%, #FFE4D6 50%, #F5C9A8 100%);
}
.hero__slide--3 .hero__slide-bg {
  background:
    linear-gradient(135deg, #F0F5FF 0%, #D6E4FF 50%, #A8C4F5 100%);
}
.hero__slide--4 .hero__slide-bg {
  background:
    linear-gradient(135deg, #F5FFF0 0%, #D6F5C0 50%, #A8E090 100%);
}
.hero__slide--5 .hero__slide-bg {
  background:
    linear-gradient(135deg, #FFF8F0 0%, #FFE4A8 50%, #F5CC70 100%);
}

/* Overlay to keep text readable */
.hero__slide-overlay {
  position: absolute; inset: 0;
  background: rgba(255, 248, 240, 0.35);
}

/* Layout: content left, art right */
.hero__slide-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  gap: 48px;
}

.hero__content {
  flex: 0 0 auto;
  max-width: 520px;
  text-align: left;
}

.hero__eyebrow {
  display: inline-block;
  padding: 5px 18px;
  border: 1px solid rgba(201,168,112,0.5);
  border-radius: 50px;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,168,112,0.1);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: #1A1208;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero__title em { font-style: italic; color: var(--gold-dark); }

.hero__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: #4A3828;
  margin-bottom: 38px;
  line-height: 1.65;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Emoji art panel (right side) */
.hero__art {
  flex: 0 0 auto;
  width: clamp(200px, 30vw, 380px);
  height: clamp(200px, 30vw, 380px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(6rem, 13vw, 11rem);
  background: rgba(255,255,255,0.45);
  box-shadow: 0 20px 60px rgba(0,0,0,0.10), inset 0 0 0 1px rgba(201,168,112,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  line-height: 1;
  user-select: none;
  /* Replace this div with an <img> tag for real photos */
}

/* Navigation arrows */
.hero__arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(154,122,72,0.45);
  background: rgba(255,255,255,0.75);
  color: #9A7A48;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}
.hero__arrow:hover {
  background: #fff;
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  box-shadow: 0 4px 20px rgba(154,122,72,0.25);
}
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }

/* Dots */
.hero__dots {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hero__dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1.5px solid rgba(154,122,72,0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.hero__dot.active {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: scale(1.25);
}

/* Scroll hint */
.hero__scroll {
  position: absolute; bottom: 62px; right: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #9A7A48;
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
  z-index: 10;
}
.hero__scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, #9A7A48, transparent); }

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ---- 8. STRIP / STATS ---- */
.strip {
  background: var(--black-2);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 56px 0;
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip__item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border-gold);
}
.strip__item:last-child { border-right: none; }
.strip__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.strip__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- 9. MENU PREVIEW ---- */
.menu-preview { padding: var(--pad-lg) 0; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
  margin-bottom: 48px;
}
.menu-card {
  background: var(--black-3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.menu-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: var(--ease);
}
.menu-card:hover { border-color: var(--gold); transform: translateY(-7px); box-shadow: var(--shadow-gold); }
.menu-card:hover::after { opacity: 1; }
.menu-card__icon { font-size: 3.2rem; margin-bottom: 18px; display: block; }
.menu-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--cream); margin-bottom: 10px;
}
.menu-card__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.menu-card__pill {
  display: inline-block; margin-top: 18px;
  padding: 4px 14px; border: 1px solid var(--border-gold);
  border-radius: 50px; font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
}

/* ---- 10. STORY SNIPPET ---- */
.story-snap { padding: var(--pad-lg) 0; background: var(--cream); }
.story-snap__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.story-snap__visual { position: relative; }
.story-snap__frame {
  width: 100%; aspect-ratio: 4/5;
  background: var(--black);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,112,0.25);
  overflow: hidden; position: relative;
}
.story-snap__frame-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,112,0.12) 0%, transparent 70%);
}
.story-snap__frame-content { text-align: center; padding: 48px; position: relative; z-index: 1; }
.story-snap__frame-year {
  font-family: var(--font-display);
  font-size: 7rem; color: var(--gold); opacity: 0.15; line-height: 1; margin-bottom: 16px;
}
.story-snap__frame-logo { width: 100px; margin: 0 auto; }
.story-snap__badge {
  position: absolute; bottom: -24px; right: -24px;
  width: 110px; height: 110px;
  background: var(--gold); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; border: 4px solid var(--black);
}
.story-snap__badge-big {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--black); line-height: 1; font-weight: 700;
}
.story-snap__badge-sm {
  font-size: 0.52rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--black-3); font-weight: 700;
}
.story-snap__content { padding: 8px 0; }
.story-snap__content .section-label { color: var(--gold-dark); }
.story-snap__content .gold-line { margin: 12px 0; }
.story-snap__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text-on-light); margin-bottom: 20px;
}
.story-snap__text {
  color: var(--text-muted-lt); font-size: 0.975rem; line-height: 1.85; margin-bottom: 14px;
}

/* ---- 11. VIDEO SECTION ---- */
.videos { padding: var(--pad-lg) 0; background: var(--black); }
.videos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--black-3); border: 1px solid var(--border-gold);
  aspect-ratio: 16/9; position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.video-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.video-card iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.video-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 24px; text-align: center;
}
.video-placeholder__play {
  width: 60px; height: 60px;
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.5rem;
  transition: var(--ease);
}
.video-card:hover .video-placeholder__play {
  background: var(--gold-faint);
}
.video-placeholder__title {
  font-family: var(--font-display); font-size: 1rem; color: var(--cream);
}
.video-placeholder__sub { font-size: 0.75rem; color: var(--text-muted); }

/* ---- 12. TESTIMONIALS ---- */
.testimonials { padding: var(--pad-lg) 0; background: var(--black-2); overflow: hidden; }
.testimonials__overflow { overflow: hidden; }
.testimonials__track {
  display: flex; gap: 22px;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.tcard {
  min-width: calc(33.33% - 15px);
  background: var(--black-3); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 40px 32px;
  transition: var(--ease);
}
.tcard:hover { border-color: rgba(201,168,112,0.6); }
.tcard__quote {
  font-family: var(--font-display); font-size: 4.5rem;
  color: var(--gold); opacity: 0.25; line-height: 0.7; margin-bottom: 18px;
  user-select: none;
}
.tcard__stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
.tcard__text {
  font-size: 0.975rem; color: var(--text-on-dark); line-height: 1.8;
  font-style: italic; margin-bottom: 28px;
}
.tcard__author { display: flex; align-items: center; gap: 12px; }
.tcard__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--black); font-weight: 700; flex-shrink: 0;
}
.tcard__name { font-weight: 600; font-size: 0.9rem; color: var(--cream); }
.tcard__loc { font-size: 0.75rem; color: var(--text-muted); }
.testimonials__controls {
  display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 44px;
}
.tctl-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border-gold); background: transparent;
  color: var(--gold); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.tctl-btn:hover { background: var(--gold-faint); border-color: var(--gold); }
.tctl-dots { display: flex; gap: 8px; align-items: center; }
.tctl-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border-gold); cursor: pointer; transition: var(--ease);
  border: none;
}
.tctl-dot.active { background: var(--gold); width: 22px; border-radius: 3px; }

/* ---- 13. LOCATIONS ---- */
.locations { padding: var(--pad-lg) 0; background: var(--cream); }
.locations__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 40px;
}
.loc-card {
  background: var(--black); border-radius: var(--radius-lg);
  padding: 28px 16px; text-align: center;
  border: 1px solid rgba(201,168,112,0.2);
  transition: var(--ease);
}
.loc-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
.loc-card__pin { font-size: 1.8rem; margin-bottom: 12px; }
.loc-card__name {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--cream); margin-bottom: 4px;
}
.loc-card__city {
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.loc-card__link {
  font-size: 0.72rem; color: var(--text-muted);
  transition: var(--ease); display: inline-flex; align-items: center; gap: 4px;
}
.loc-card__link:hover { color: var(--gold); }

/* ---- 14. ORDER CTA ---- */
.order-cta {
  padding: 88px 0; text-align: center;
  background: var(--black); border-top: 1px solid var(--border-gold);
}
.order-cta__tag { margin-bottom: 16px; }
.order-cta__title { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--cream); margin-bottom: 12px; }
.order-cta__sub { color: var(--text-muted); margin-bottom: 44px; }
.order-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.order-cta__btn { padding: 16px 40px; font-size: 0.85rem; gap: 12px; }

/* ---- 15. SOCIAL CTA ---- */
.social-cta {
  padding: 64px 0; background: var(--black-2); text-align: center;
  border-top: 1px solid var(--border-gold);
}
.social-cta__links { display: flex; gap: 16px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 28px; border: 1px solid var(--border-gold);
  border-radius: 50px; font-size: 0.83rem;
  color: var(--text-on-dark); transition: var(--ease);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-faint); }
.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- WhatsApp floating button ---- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 68px; height: 68px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
  text-decoration: none; transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease;
}
.wa-float:hover {
  transform: scale(1.22);
  box-shadow: 0 10px 40px rgba(37,211,102,0.75), 0 0 0 6px rgba(37,211,102,0.18);
}
.wa-float svg { width: 36px; height: 36px; fill: #fff; position: relative; z-index: 1; }
.wa-float__pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ---- 16. FOOTER ---- */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border-gold);
  padding: 70px 0 32px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 56px;
  margin-bottom: 56px;
}
.footer__logo { height: 56px; width: auto; margin-bottom: 18px; }
.footer__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; max-width: 280px; }
.footer__col-title {
  font-family: var(--font-display); font-size: 1rem;
  color: var(--cream); margin-bottom: 22px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 0.85rem; color: var(--text-muted); transition: var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__contact-row {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px;
}
.footer__contact-icon { color: var(--gold); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer__contact-text { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }
.footer__contact-text a { transition: var(--ease); }
.footer__contact-text a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid var(--border-gold); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer__copy { font-size: 0.78rem; color: var(--text-muted); }
.footer__social-links { display: flex; gap: 12px; }
.footer__social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--ease);
}
.footer__social-links a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-faint); }
.footer__social-links svg { width: 15px; height: 15px; }

/* ---- 17. PAGE HERO (inner pages) ---- */
.page-hero {
  padding: calc(160px + var(--promo-h)) 0 80px; text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(201,168,112,0.12) 0%, transparent 65%),
    var(--black);
}
.page-hero__title { font-size: clamp(2.5rem, 5.5vw, 4.5rem); color: var(--cream); }
.page-hero__sub { color: var(--text-muted); font-size: 1.1rem; margin-top: 14px; }

/* ---- 18. MENU PAGE ---- */
.menu-section { padding: var(--pad-md) 0; }
.menu-section + .menu-section { border-top: 1px solid var(--border-gold); }
.menu-section__header { margin-bottom: 36px; }
.menu-section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--cream);
  display: flex; align-items: center; gap: 14px;
}
.menu-section__icon { font-size: 1.8rem; }
.menu-section__desc { font-size: 0.9rem; color: var(--text-muted); margin-top: 8px; max-width: 500px; }
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.item-card {
  background: var(--black-3); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 24px;
  transition: var(--ease);
}
.item-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.item-card__name {
  font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); margin-bottom: 6px;
}
.item-card__desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; }
.item-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.item-card__tag {
  padding: 3px 10px; border-radius: 50px;
  font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.tag-best { background: rgba(201,168,112,0.14); color: var(--gold); border: 1px solid var(--border-gold); }
.tag-new  { background: rgba(100,210,150,0.1); color: #6DC898; border: 1px solid rgba(109,200,152,0.3); }
.tag-seasonal { background: rgba(255,150,50,0.1); color: #FF9632; border: 1px solid rgba(255,150,50,0.3); }
.tag-custom { background: rgba(180,130,240,0.1); color: #B482F0; border: 1px solid rgba(180,130,240,0.3); }

/* ---- 19. STORY PAGE ---- */
.story-page { padding: var(--pad-lg) 0; }
.story-page__inner { max-width: 820px; margin: 0 auto; }
.story-lead {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--gold); line-height: 1.55; font-style: italic;
  margin-bottom: 44px; border-left: 3px solid var(--gold); padding-left: 24px;
}
.story-body { font-size: 1.02rem; line-height: 1.9; color: var(--text-muted); }
.story-body p { margin-bottom: 26px; }
.story-body h3 { font-size: 1.45rem; color: var(--cream); margin: 44px 0 16px; }
.story-timeline {
  border-left: 2px solid var(--border-gold);
  padding-left: 36px; margin: 56px 0;
}
.tl-item { position: relative; margin-bottom: 44px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute;
  left: -44px; top: 8px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--black-2);
}
.tl-year { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); margin-bottom: 4px; }
.tl-title { font-size: 1rem; color: var(--cream); margin-bottom: 8px; font-weight: 600; }
.tl-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* ---- 20. ARTICLES ---- */
.articles-page { padding: var(--pad-lg) 0; }
.articles-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 28px;
}
.article-card {
  background: var(--black-3); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--ease);
  display: flex; flex-direction: column;
}
.article-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.article-card__thumb {
  height: 190px; background: linear-gradient(135deg, var(--black-4) 0%, rgba(201,168,112,0.08) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.article-card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.article-card__tag {
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 10px;
}
.article-card__title { font-size: 1.2rem; color: var(--cream); margin-bottom: 10px; line-height: 1.38; }
.article-card__excerpt {
  font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; flex: 1;
}
.article-card__meta {
  font-size: 0.73rem; color: var(--text-muted);
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--border-gold); padding-top: 14px; margin-top: auto;
}
.article-card__read { color: var(--gold); font-weight: 600; }

/* Article inner page */
.article-inner { padding: var(--pad-lg) 0; }
.article-inner__wrap { max-width: 780px; margin: 0 auto; }
.article-inner__meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 30px; }
.article-inner__cat {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); padding: 4px 14px; border: 1px solid var(--border-gold); border-radius: 50px;
}
.article-inner__date { font-size: 0.8rem; color: var(--text-muted); }
.article-inner__title { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--cream); margin-bottom: 28px; line-height: 1.18; }
.article-inner__lead {
  font-size: 1.12rem; color: var(--gold-light);
  line-height: 1.85; font-style: italic;
  border-left: 3px solid var(--gold); padding-left: 22px; margin-bottom: 44px;
}
.article-inner__body { font-size: 1rem; line-height: 1.9; color: var(--text-muted); }
.article-inner__body p { margin-bottom: 24px; }
.article-inner__body h2 { font-size: 1.7rem; color: var(--cream); margin: 52px 0 18px; }
.article-inner__body h3 { font-size: 1.25rem; color: var(--cream); margin: 36px 0 14px; }
.article-inner__body ul, .article-inner__body ol { margin: 0 0 24px 24px; }
.article-inner__body li { margin-bottom: 8px; line-height: 1.75; list-style: disc; }
.article-inner__body ol li { list-style: decimal; }
.article-cta {
  margin-top: 60px; padding: 40px; background: var(--black-3);
  border: 1px solid var(--border-gold); border-radius: var(--radius-lg);
  text-align: center;
}
.article-cta__title { font-size: 1.4rem; color: var(--cream); margin-bottom: 10px; }
.article-cta__sub { color: var(--text-muted); margin-bottom: 28px; font-size: 0.9rem; }

/* ---- 21. CONTACT PAGE ---- */
.contact-page { padding: var(--pad-lg) 0; }
.contact-page__inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.contact-info__title { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--cream); margin-bottom: 18px; }
.contact-info__intro { color: var(--text-muted); line-height: 1.85; margin-bottom: 36px; font-size: 0.95rem; }
.contact-info__item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.contact-info__icon-wrap {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold); flex-shrink: 0;
}
.contact-info__label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-info__val { font-size: 0.9rem; color: var(--text-on-dark); line-height: 1.5; }
.contact-form-wrap {
  background: var(--black-3); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 48px;
}
.form-title { font-size: 1.6rem; color: var(--cream); margin-bottom: 8px; }
.form-sub { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--black-2); border: 1px solid var(--border-gold);
  border-radius: var(--radius); color: var(--text-on-dark);
  font-family: var(--font-body); font-size: 0.93rem;
  transition: var(--ease); appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,112,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(232,217,192,0.3); }
.form-group select option { background: var(--black-2); color: var(--text-on-dark); }
.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success__icon { font-size: 3.5rem; margin-bottom: 20px; }
.form-success__title { font-family: var(--font-display); font-size: 1.8rem; color: var(--cream); margin-bottom: 10px; }
.form-success__text { color: var(--text-muted); }

/* ---- 22. SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ---- 23. ORNAMENTAL DIVIDER ---- */
.ornament-divider {
  display: flex; align-items: center; gap: 16px; margin: 48px 0;
}
.ornament-divider__line { flex: 1; height: 1px; background: var(--border-gold); }
.ornament-divider__icon { color: var(--gold); font-size: 1.4rem; opacity: 0.8; user-select: none; }

/* ---- 24. RESPONSIVE ---- */
@media (max-width: 1100px) {
  .locations__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .story-snap__inner { gap: 52px; }
  .tcard { min-width: calc(50% - 11px); }
}
@media (max-width: 900px) {
  :root { --pad-lg: 80px; --pad-md: 56px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .strip__item:nth-child(2) { border-right: none; }
  .story-snap__inner { grid-template-columns: 1fr; gap: 48px; }
  .story-snap__visual { max-width: 380px; margin: 0 auto; }
  .videos__grid { grid-template-columns: 1fr 1fr; }
  .contact-page__inner { grid-template-columns: 1fr; gap: 52px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .hero__slide-inner { padding: 0 28px; gap: 28px; }
  .hero__art { width: clamp(140px, 28vw, 240px); height: clamp(140px, 28vw, 240px); font-size: clamp(4rem, 10vw, 7rem); }
  .hero__scroll { display: none; }
}
@media (max-width: 640px) {
  :root { --pad-lg: 64px; --pad-md: 44px; --promo-h: 0px; }
  .promo-bar { font-size: 0.8rem; height: auto; min-height: var(--promo-h); padding: 8px 44px; }
  .promo-bar__long { display: none; }
  .promo-bar__short { display: inline; }
  .hero { min-height: 100svh; }
  .hero__slide-inner { flex-direction: column; justify-content: center; padding: 80px 24px 80px; text-align: center; gap: 24px; }
  .hero__content { max-width: 100%; }
  .hero__eyebrow { margin-bottom: 16px; }
  .hero__art { width: clamp(120px, 50vw, 200px); height: clamp(120px, 50vw, 200px); font-size: clamp(3.5rem, 14vw, 6rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__arrow { display: none; }
  .videos__grid { grid-template-columns: 1fr; }
  .tcard { min-width: 86vw; }
  .locations__grid { grid-template-columns: repeat(2, 1fr); }
  .order-cta__btns { flex-direction: column; align-items: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .social-cta__links { flex-direction: column; align-items: center; }
  .strip__grid { grid-template-columns: 1fr 1fr; }
  .strip__item { border-right: none; border-bottom: 1px solid var(--border-gold); }
  .strip__item:last-child { border-bottom: none; }
}
@media (max-width: 400px) {
  .menu-grid { grid-template-columns: 1fr; }
  .locations__grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   MENU PAGE — TABS, PRODUCT CARDS, PRICING, CUSTOM-ORDER CTA
   ═══════════════════════════════════════════════════════════ */

/* ---- STICKY TABS ---- */
.menu-tabs {
  position: sticky;
  top: var(--nav-h);
  z-index: 200;
  background: var(--black);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.menu-tabs__scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.menu-tabs__scroll::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: 0 0 auto;
  padding: 16px 22px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.menu-tab:hover { color: var(--gold-light); }
.menu-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ---- MENU MAIN ---- */
.menu-main { background: var(--black); }
.menu-cat-section {
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--border-gold);
}
.menu-cat-section:last-child { border-bottom: none; }
.menu-cat-header { margin-bottom: 44px; }
.menu-cat-header .section-label { margin-bottom: 10px; }
.menu-cat-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 12px;
  font-weight: 700;
}
.menu-cat-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 580px;
  line-height: 1.7;
}
.menu-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---- PRODUCT CARD GRID ---- */
.pcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

/* ---- PRODUCT CARD ---- */
.pcard {
  background: var(--black-3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pcard:hover {
  border-color: rgba(201,168,112,0.65);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(201,168,112,0.13);
}

/* Gallery */
.pcard__gallery {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--black-2);
  overflow: hidden;
  flex-shrink: 0;
}
.pcard__gal-track {
  display: flex;
  height: 100%;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}
.pcard__gal-slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}
.pcard__gal-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pcard:hover .pcard__gal-slide img { transform: scale(1.04); }
.pcard__gal-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem;
  background: radial-gradient(ellipse at 50% 30%, rgba(201,168,112,0.09) 0%, transparent 70%);
}

/* Gallery prev/next buttons */
.pcard__gal-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(10,10,10,0.72);
  border: 1px solid rgba(201,168,112,0.4);
  color: var(--gold); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  z-index: 2;
}
.pcard:hover .pcard__gal-btn { opacity: 1; }
.pcard__gal-btn:hover { background: rgba(201,168,112,0.22); }
.pcard__gal-prev { left: 10px; }
.pcard__gal-next { right: 10px; }

/* Gallery dots */
.pcard__gal-dots {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 2;
}
.pcard__gal-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.pcard__gal-dot.active { background: var(--gold); transform: scale(1.3); }

/* Tag badge inside gallery */
.pcard__tag-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 3px 10px; border-radius: 50px;
  font-size: 0.62rem; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 700;
}
.pcard__tag-badge.bestseller { background: var(--gold); color: var(--black); }
.pcard__tag-badge.new        { background: #1e7e45; color: #fff; }
.pcard__tag-badge.seasonal   { background: #7e4a1e; color: #fff; }
.pcard__tag-badge.custom     { background: rgba(10,10,10,0.85); color: var(--gold); border: 1px solid var(--gold); }

/* Card body */
.pcard__body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex; flex-direction: column; gap: 8px;
}
.pcard__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.25;
}
.pcard__desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

/* Pricing row */
.pcard__pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.pcard__mrp {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.pcard__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}
.pcard__discount {
  padding: 2px 9px;
  background: rgba(201,168,112,0.12);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.pcard__price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 4px;
}
.pcard__btn {
  margin-top: 14px;
  width: 100%;
  text-align: center;
  padding: 11px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* ---- CANT-FIND / CUSTOM ORDER CTA ---- */
.cant-find-cta {
  margin-top: 12px;
  background: var(--black-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.cant-find-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(201,168,112,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cant-find-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
}
.cant-find-cta__text {
  padding: 44px 40px;
  border-right: 1px solid var(--border-gold);
}
.cant-find-cta__text h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.25;
}
.cant-find-cta__text p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.cant-find-cta__perks {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.cant-find-cta__perks li {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.cant-find-form-wrap { padding: 36px 40px; }
.cant-find-form { display: flex; flex-direction: column; gap: 12px; }
.cant-find-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-ctrl {
  background: var(--black-3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  color: var(--cream);
  padding: 11px 14px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  transition: border-color 0.2s;
  width: 100%;
}
.form-ctrl::placeholder { color: var(--text-muted); }
.form-ctrl:focus { outline: none; border-color: var(--gold); }
textarea.form-ctrl { resize: vertical; min-height: 88px; }
.cant-find-success {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(201,168,112,0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
}

/* ---- MENU PAGE RESPONSIVE ---- */
@media (max-width: 1060px) {
  .pcard-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .cant-find-cta__inner { grid-template-columns: 1fr; }
  .cant-find-cta__text { border-right: none; border-bottom: 1px solid var(--border-gold); padding: 32px 28px; }
  .cant-find-form-wrap { padding: 28px; }
  .menu-cat-section { padding: 52px 0 60px; }
}
@media (max-width: 600px) {
  .pcard-grid { grid-template-columns: 1fr; gap: 18px; }
  .cant-find-form__row { grid-template-columns: 1fr; }
  .menu-tab { padding: 14px 14px; font-size: 0.67rem; }
  .menu-cat-header h2 { font-size: 1.6rem; }
}

/* ════════════════════════════════════════════
   CHECKOUT MODAL
   ════════════════════════════════════════════ */
.checkout-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 1200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
  padding: 16px;
}
.checkout-overlay.open { opacity: 1; pointer-events: all; }

.checkout-modal {
  background: var(--black-3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(28px);
  transition: transform 0.28s ease;
  box-shadow: 0 28px 80px rgba(0,0,0,0.65);
}
.checkout-overlay.open .checkout-modal { transform: translateY(0); }

/* scrollbar inside modal */
.checkout-modal::-webkit-scrollbar { width: 4px; }
.checkout-modal::-webkit-scrollbar-thumb { background: var(--border-gold); border-radius: 4px; }

/* ── Header ── */
.checkout-modal__hd {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 22px 26px 14px;
  border-bottom: 1px solid rgba(201,168,112,0.15);
  position: sticky; top: 0;
  background: var(--black-3);
  z-index: 2;
}
.checkout-modal__title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px; margin-right: 12px;
}
.checkout-modal__close {
  background: none; border: none;
  color: var(--text-muted); font-size: 1.05rem;
  cursor: pointer; padding: 4px 8px;
  border-radius: 4px; line-height: 1;
  transition: color var(--ease); flex-shrink: 0;
}
.checkout-modal__close:hover { color: var(--text-on-dark); }

/* ── Steps indicator ── */
.chk-steps {
  display: flex; align-items: center; gap: 4px;
  flex-wrap: wrap;
}
.chk-step {
  font-size: 0.7rem; font-weight: 500;
  color: var(--text-muted);
  padding: 2px 8px; border-radius: 20px;
  transition: all 0.2s; white-space: nowrap;
}
.chk-step.active {
  background: var(--gold-faint);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}
.chk-step.done { color: var(--gold-dark); }
.chk-sep { color: var(--text-muted); font-size: 0.65rem; }

/* ── Body ── */
.checkout-modal__body { padding: 22px 26px 26px; }

/* ── Product summary row ── */
.chk-product-row {
  display: flex; gap: 14px; align-items: center;
  padding: 13px;
  background: rgba(201,168,112,0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.chk-product-img {
  width: 60px; height: 60px; flex-shrink: 0;
  border-radius: var(--radius); overflow: hidden;
  background: var(--black-4);
  display: flex; align-items: center; justify-content: center;
}
.chk-product-img img { width: 100%; height: 100%; object-fit: cover; }
.chk-product-emoji { font-size: 1.8rem; line-height: 1; }
.chk-product-name {
  font-family: var(--font-display);
  font-size: 0.98rem; font-weight: 600;
  color: var(--text-on-dark); margin-bottom: 5px;
}
.chk-product-price { font-size: 0.88rem; }
.chk-disc-tag {
  display: inline-block;
  background: rgba(45,139,78,0.18);
  color: #3aac6e;
  font-size: 0.68rem; font-weight: 600;
  padding: 1px 6px; border-radius: 4px; margin-left: 4px;
}

/* ── Field groups ── */
.chk-field-group { margin-bottom: 15px; }
.chk-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.chk-label {
  display: block;
  font-size: 0.73rem; font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.chk-input {
  width: 100%;
  background: var(--black-4);
  border: 1px solid rgba(201,168,112,0.22);
  border-radius: var(--radius);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 10px 13px;
  transition: border-color var(--ease);
  outline: none;
}
.chk-input:focus { border-color: var(--gold); }
.chk-input::placeholder { color: rgba(232,217,192,0.3); }
textarea.chk-input { resize: vertical; min-height: 80px; }

/* ── Quantity control ── */
.chk-qty-ctrl {
  display: flex; align-items: center;
  width: fit-content;
}
.chk-qty-btn {
  width: 36px; height: 36px;
  background: var(--black-4);
  border: 1px solid rgba(201,168,112,0.22);
  color: var(--gold); font-size: 1.15rem;
  cursor: pointer; transition: background var(--ease);
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.chk-qty-btn:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.chk-qty-btn:last-of-type { border-radius: 0 var(--radius) var(--radius) 0; }
.chk-qty-btn:hover { background: var(--gold-faint); }
.chk-qty-val {
  min-width: 44px; text-align: center;
  background: var(--black-4);
  border-top: 1px solid rgba(201,168,112,0.22);
  border-bottom: 1px solid rgba(201,168,112,0.22);
  color: var(--text-on-dark);
  font-weight: 600; font-size: 1rem;
  padding: 0 8px; line-height: 34px;
}
.chk-qty-unit {
  margin-left: 10px;
  color: var(--text-muted); font-size: 0.82rem;
}

/* ── Info note ── */
.chk-info-note {
  font-size: 0.76rem; color: var(--text-muted);
  padding: 8px 12px;
  background: rgba(201,168,112,0.05);
  border-radius: var(--radius);
  margin-bottom: 15px;
  border-left: 2px solid var(--border-gold);
}

/* ── Footer nav ── */
.chk-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(201,168,112,0.1);
  margin-top: 18px;
  gap: 10px;
}
.chk-next-btn, .chk-back-btn { min-width: 150px; }
.chk-back-btn { color: var(--text-muted); border-color: rgba(201,168,112,0.22); }

/* ── Delivery mode toggle ── */
.chk-mode-toggle {
  display: flex;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
}
.chk-mode-btn {
  flex: 1; padding: 11px 16px;
  background: var(--black-4);
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all var(--ease);
}
.chk-mode-btn:first-child { border-right: 1px solid var(--border-gold); }
.chk-mode-btn.active { background: var(--gold-faint); color: var(--gold); }

/* ── Location button ── */
.chk-loc-btn {
  width: 100%; padding: 12px;
  background: var(--gold-faint);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: all var(--ease);
}
.chk-loc-btn:hover:not(:disabled) { background: rgba(201,168,112,0.2); }
.chk-loc-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.chk-loc-btn--done {
  background: rgba(45,139,78,0.1);
  border-color: rgba(45,139,78,0.35);
  color: #3aac6e;
}
.chk-loc-status {
  font-size: 0.75rem; color: var(--text-muted);
  margin: 5px 0 2px; min-height: 16px;
}

/* ── Store cards ── */
.chk-stores-label {
  font-size: 0.73rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-muted); margin: 14px 0 8px;
}
.chk-store-list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-bottom: 14px;
}
.chk-store-card {
  padding: 11px 8px;
  background: var(--black-4);
  border: 1px solid rgba(201,168,112,0.2);
  border-radius: var(--radius);
  cursor: pointer; text-align: center;
  transition: all var(--ease); font-size: 0.75rem;
}
.chk-store-card:hover { border-color: var(--gold); background: var(--gold-faint); }
.chk-store-card.best  { border-color: rgba(201,168,112,0.35); }
.chk-store-card.selected {
  border-color: var(--gold);
  background: var(--gold-faint);
  box-shadow: 0 0 0 2px rgba(201,168,112,0.2);
}
.chk-store-card__name { color: var(--text-on-dark); font-weight: 600; margin-bottom: 3px; font-size: 0.8rem; }
.chk-store-card__dist { color: var(--text-muted); font-size: 0.7rem; }
.chk-store-card__fee  { color: var(--gold); font-weight: 600; margin-top: 3px; }
.chk-loc-hint {
  font-size: 0.8rem; color: var(--text-muted);
  text-align: center; padding: 22px 16px;
  border: 1px dashed rgba(201,168,112,0.2);
  border-radius: var(--radius); margin-bottom: 14px;
}

/* ── Order total box ── */
.chk-total-box {
  background: rgba(201,168,112,0.07);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 13px 16px; margin-bottom: 14px;
}
.chk-total-row {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: var(--text-muted); padding: 3px 0;
}
.chk-total-row--grand {
  color: var(--text-on-dark); font-weight: 600; font-size: 1rem;
  border-top: 1px solid var(--border-gold);
  padding-top: 8px; margin-top: 6px;
}
.chk-total-row--grand span:last-child { color: var(--gold); }

/* ── Payment buttons ── */
.chk-pay-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.chk-pay-btn  { width: 100%; padding: 14px; font-size: 0.95rem; font-weight: 600; }
.chk-pay-online-btn {
  background: var(--black-4);
  border: 1px solid var(--border-gold);
  color: var(--text-on-dark);
  border-radius: var(--radius);
  cursor: pointer; font-family: var(--font-body);
  transition: all var(--ease);
}
.chk-pay-online-btn:hover:not(:disabled) { background: var(--gold-faint); color: var(--gold); }
.chk-pay-online-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Success screen ── */
.chk-success { text-align: center; padding: 12px 0 8px; }
.chk-success__icon { font-size: 3.2rem; margin-bottom: 10px; }
.chk-success__title {
  font-family: var(--font-display);
  font-size: 1.55rem; color: var(--gold); margin-bottom: 6px;
}
.chk-success__sub { color: var(--text-muted); margin-bottom: 18px; font-size: 0.92rem; }
.chk-success__details {
  background: rgba(201,168,112,0.07);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 14px 18px; text-align: left; margin-bottom: 14px;
}
.chk-success__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; padding: 5px 0;
  border-bottom: 1px solid rgba(201,168,112,0.08);
}
.chk-success__row:last-child { border-bottom: none; }
.chk-success__row span:first-child { color: var(--text-muted); }
.chk-success__row strong { color: var(--text-on-dark); }
.chk-success__note { font-size: 0.8rem; color: var(--text-muted); }

/* ── Checkout responsive ── */
@media (max-width: 600px) {
  .checkout-modal__body { padding: 18px 16px 22px; }
  .checkout-modal__hd   { padding: 16px 16px 12px; }
  .chk-field-row  { grid-template-columns: 1fr; }
  .chk-store-list { grid-template-columns: repeat(2, 1fr); }
  .chk-next-btn, .chk-back-btn { min-width: auto; flex: 1; }
  .checkout-modal__title { font-size: 1.1rem; }
}
@media (max-width: 360px) {
  .chk-store-list { grid-template-columns: 1fr; }
}
