/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cinzel:wght@600;700;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 14.4px; }
body {
  font-family: "Inter", sans-serif;
  background: #0b0907;
  color: #f5ede0;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #d4a255;
  --gold-light: #f3d193;
  --gold-glow: rgba(212, 162, 85, 0.25);
  --cream: #fdf3e3;
  --dark: #0b0907;
  --dark2: #140f0a;
  --dark3: #1c150e;
  --accent: #c8854a;
  --text-light: #f5ede0;
  --text-muted: #aa967e;
  --radius: 20px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --glass: rgba(28, 21, 14, 0.7);
  --glass-border: rgba(212, 162, 85, 0.18);
}

/* ===== LUCIDE ICON STYLES ===== */
.logo-svg {
  width: 22px; height: 22px; stroke: #0d0a07; stroke-width: 2.2; fill: none;
}
.logo-svg-lg {
  width: 28px; height: 28px; stroke: #0d0a07; stroke-width: 2.2; fill: none;
}
.icon-star {
  width: 18px; height: 18px; display: inline-block; vertical-align: middle;
  stroke: var(--gold); stroke-width: 2;
}
.icon-star.filled {
  fill: var(--gold); stroke: var(--gold);
}
.icon-star.sm {
  width: 13px; height: 13px;
}
.icon-marquee {
  width: 16px; height: 16px; display: inline-block; vertical-align: middle;
  stroke: white; stroke-width: 2; fill: none;
  margin-right: 4px; position: relative; top: -1px;
}
.icon-sparkle {
  width: 13px; height: 13px; display: inline-block; vertical-align: middle;
  stroke: rgba(255,255,255,0.7); stroke-width: 2; fill: none;
  position: relative; top: -1px;
}
.icon-badge, .badge-icon {
  width: 15px; height: 15px; display: inline-block; vertical-align: middle;
  stroke: currentColor; stroke-width: 2; fill: none;
  margin-right: 5px; position: relative; top: -1px;
}
.icon-category {
  width: 15px; height: 15px; display: inline-block; vertical-align: middle;
  stroke: var(--gold); stroke-width: 2; fill: none;
  margin-right: 5px; position: relative; top: -1px;
}
.icon-info {
  width: 32px; height: 32px; display: inline-block;
  stroke: var(--gold); stroke-width: 1.8; fill: none;
}
.icon-contact {
  width: 22px; height: 22px; display: inline-block;
  stroke: var(--gold); stroke-width: 2; fill: none;
  flex-shrink: 0;
}
.icon-inline {
  width: 14px; height: 14px; display: inline-block; vertical-align: middle;
  stroke: var(--gold); stroke-width: 2; fill: none;
  margin-right: 4px; position: relative; top: -1px;
}
.icon-inline-gold {
  width: 14px; height: 14px; display: inline-block; vertical-align: middle;
  stroke: var(--gold); stroke-width: 2; fill: none;
  margin-right: 4px; position: relative; top: -1px;
}
.icon-inline-sm {
  width: 14px; height: 14px; display: inline-block; vertical-align: middle;
  stroke: var(--gold); stroke-width: 2; fill: none;
  margin-right: 4px; position: relative; top: -1px;
}
.eyebrow-icon {
  width: 14px; height: 14px; display: inline-block; vertical-align: middle;
  stroke: var(--gold); stroke-width: 2; fill: none;
  margin-right: 6px; position: relative; top: -1px;
}
.btn-icon {
  width: 18px; height: 18px; display: inline-block; vertical-align: middle;
  stroke: currentColor; stroke-width: 2; fill: none;
  margin-right: 8px; transition: transform 0.3s ease;
}
.btn-icon-sm {
  width: 15px; height: 15px; display: inline-block; vertical-align: middle;
  stroke: currentColor; stroke-width: 2; fill: none;
  margin-right: 6px;
}
.btn-primary:hover .btn-icon, .btn-secondary:hover .btn-icon {
  transform: translateX(2px) scale(1.05);
}

/* Star groups alignment */
.stars, .review-stars, .dish-rating, .badge-stars {
  display: inline-flex; align-items: center; gap: 2px;
}
.review-stars { gap: 4px; margin-bottom: 1.2rem; }
.hero-rating .stars { gap: 4px; }
.dish-rating { gap: 2px; }
.badge-stars { gap: 2px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; gap: 2rem;
  padding: 20px 40px;
  background: linear-gradient(to bottom, rgba(11,9,7,0.85) 0%, rgba(11,9,7,0) 100%);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.navbar.scrolled {
  background: rgba(11,9,7,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
  padding: 12px 40px;
  border-bottom: 1px solid rgba(212,162,85,0.15);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--accent));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 25px rgba(212,162,85,0.45);
  transition: transform 0.3s ease;
}
.nav-logo:hover .logo-icon { transform: rotate(10deg) scale(1.05); }
.nav-logo-img {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2px solid var(--gold);
  box-shadow: 0 0 18px rgba(212,162,85,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.06); box-shadow: 0 0 28px rgba(212,162,85,0.65); }
.logo-icon.large { width: 56px; height: 56px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: "Pacifico", cursive; font-size: 1.35rem; color: var(--gold-light); font-weight: 400; letter-spacing: 0.5px; line-height: 1.2; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }
.logo-sub { font-family: "Oswald", sans-serif; font-size: 0.72rem; color: var(--gold-light); letter-spacing: 2.5px; text-transform: uppercase; margin-top: 2px; font-weight: 700; opacity: 0.9; }
.logo-since { font-family: "Oswald", sans-serif; font-size: 0.65rem; color: var(--gold-light); letter-spacing: 2px; text-transform: uppercase; margin-top: 1px; font-weight: 500; opacity: 0.7; }

.nav-links { display: flex; gap: 2.2rem; list-style: none; margin-left: auto; font-family: "Montserrat", sans-serif; }
.nav-links a {
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem; letter-spacing: 0.5px; color: rgba(245,237,224,0.9);
  position: relative; transition: color 0.3s; font-weight: 600;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.nav-highlight {
  background: linear-gradient(135deg, rgba(212,162,85,0.25), rgba(212,162,85,0.08));
  border: 1px solid var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  color: var(--gold-light);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  box-shadow: 0 0 12px rgba(212,162,85,0.25);
  transition: all 0.3s ease;
}
.nav-links a.nav-highlight::after { display: none; }
.nav-links a.nav-highlight:hover {
  background: var(--gold);
  color: #0b0907;
  box-shadow: 0 0 20px var(--gold-glow);
}

.nav-cta {
  padding: 10px 24px; background: linear-gradient(135deg, var(--gold), var(--accent));
  border-radius: 50px; font-size: 0.85rem; font-weight: 700; color: #0d0a07;
  transition: transform 0.3s, box-shadow 0.3s; white-space: nowrap; display: inline-flex; align-items: center;
  box-shadow: 0 4px 15px rgba(212,162,85,0.3); font-family: "Montserrat", sans-serif;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,162,85,0.5); }

/* ===== MEGA MENU DROPDOWN ===== */
.nav-item-dropdown {
  position: relative;
}
.nav-item-dropdown > a {
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
}
.dropdown-icon {
  width: 14px; height: 14px; transition: transform 0.3s ease; stroke-width: 2.5;
}
.nav-item-dropdown:hover .dropdown-icon {
  transform: rotate(180deg); color: var(--gold-light);
}

.nav-item-dropdown { position: relative; padding-bottom: 12px; margin-bottom: -12px; }
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 580px;
  background: rgba(16, 12, 8, 0.97);
  border: 1.5px solid var(--gold);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.85), 0 0 25px rgba(212,162,85,0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  z-index: 1100;
  font-family: "Montserrat", sans-serif;
}
.mega-menu::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}
.nav-item-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu::before {
  content: '';
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px; background: rgba(16, 12, 8, 0.97);
  border-left: 1.5px solid var(--gold); border-top: 1.5px solid var(--gold);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.mega-menu-card {
  display: flex; flex-direction: column;
  padding: 16px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,162,85,0.15);
  transition: all 0.3s ease;
  text-decoration: none;
}
.mega-menu-card:hover {
  background: rgba(212,162,85,0.15);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.mega-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(212,162,85,0.3), rgba(212,162,85,0.1));
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); margin-bottom: 10px;
}
.mega-menu-card strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem; color: white; display: block; margin-bottom: 4px; font-weight: 700;
}
.mega-menu-card p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.74rem; color: var(--text-muted); line-height: 1.4; font-weight: 400;
}

@media (max-width: 768px) {
  .mega-menu, .nav-item-dropdown:hover .mega-menu {
    position: static; transform: none; width: 100%;
    opacity: 0; visibility: hidden; pointer-events: none;
    max-height: 0; overflow: hidden; padding: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    box-shadow: none; border: none; background: transparent;
  }
  .nav-item-dropdown.mobile-expanded .mega-menu,
  .nav-item-dropdown.mobile-expanded:hover .mega-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
    max-height: 600px; padding: 10px 0;
  }
  .nav-item-dropdown.mobile-expanded > a .dropdown-icon {
    transform: rotate(180deg); color: var(--gold-light);
  }
  .mega-menu::before { display: none; }
  .mega-menu-grid { grid-template-columns: 1fr; gap: 8px; text-align: left; }
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,162,85,0.5); }

.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; z-index: 1001; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; transform-origin: left center; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg); width: 28px; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); width: 28px; }

/* ===== HERO ===== */
.hero { position: relative; height: 100vh; min-height: 650px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease, transform 6s ease;
  transform: scale(1.05);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(11,9,7,0.3) 0%, rgba(11,9,7,0.85) 100%),
              linear-gradient(to bottom, rgba(11,9,7,0.6) 0%, rgba(11,9,7,0.4) 50%, rgba(11,9,7,0.95) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; text-align: center; padding: 20px;
}
.hero-badge {
  display: inline-flex; align-items: center; padding: 8px 22px;
  border: 1px solid var(--glass-border); border-radius: 50px;
  background: rgba(212,162,85,0.08); backdrop-filter: blur(10px);
  font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 1.5rem; animation-delay: 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-title { margin-bottom: 1rem; animation-delay: 0.4s; }
.hero-script {
  display: block; font-family: "Pacifico", cursive; font-size: clamp(3.2rem, 8.5vw, 6.2rem);
  color: var(--gold-light); line-height: 1.1; margin-bottom: 0.4rem;
  text-shadow: 0 0 35px rgba(212,162,85,0.5), 0 4px 20px rgba(0,0,0,0.8);
  letter-spacing: 1px;
}
.hero-big {
  display: block; font-family: "Oswald", sans-serif; font-size: clamp(2rem, 5.5vw, 3.8rem);
  letter-spacing: 6px; text-transform: uppercase; font-weight: 700;
  background: linear-gradient(180deg, #ffffff 10%, #fdf3e3 60%, #e3c494 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 15px rgba(0,0,0,0.8));
}
.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem); color: rgba(245,237,224,0.85); margin-bottom: 1.8rem;
  letter-spacing: 1px; animation-delay: 0.6s; max-width: 650px; font-weight: 300;
}
.hero-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 2.2rem; animation-delay: 0.8s; background: rgba(28,21,14,0.6); padding: 8px 20px; border-radius: 50px; border: 1px solid rgba(212,162,85,0.2); backdrop-filter: blur(10px); }
.stars { font-size: 1.3rem; color: var(--gold); }
.rating-score { font-size: 1.3rem; font-weight: 700; color: white; }
.rating-count { color: var(--text-muted); font-size: 0.85rem; }
.hero-btns { display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center; animation-delay: 1s; }

/* ===== BUTTONS ===== */
.btn-primary {
  padding: 14px 36px; background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--accent));
  border-radius: 50px; font-weight: 700; color: #0d0a07; font-size: 0.95rem;
  transition: transform 0.3s, box-shadow 0.3s; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(212,162,85,0.4); border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(212,162,85,0.6); }
.btn-secondary {
  padding: 14px 36px; border: 1.5px solid var(--gold); border-radius: 50px;
  font-weight: 600; color: var(--gold-light); font-size: 0.95rem;
  transition: all 0.3s; display: inline-flex; align-items: center; justify-content: center; background: rgba(28,21,14,0.4);
  backdrop-filter: blur(8px); cursor: pointer;
}
.btn-secondary:hover { background: var(--gold); color: #0d0a07; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,162,85,0.3); }

/* Hero slide indicators */
.hero-slide-indicators {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.indicator {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3);
  cursor: pointer; transition: all 0.3s;
}
.indicator.active { background: var(--gold); width: 28px; border-radius: 4px; box-shadow: 0 0 10px var(--gold); }

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 3;
  color: rgba(255,255,255,0.65); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-chevron {
  width: 22px; height: 22px; stroke: var(--gold); stroke-width: 2.2;
  animation: bounceDown 2s infinite ease-in-out;
}
@keyframes bounceDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: linear-gradient(90deg, #18120b, #2b1f12, #18120b);
  border-top: 1px solid rgba(212,162,85,0.2);
  border-bottom: 1px solid rgba(212,162,85,0.2);
  padding: 16px 0; overflow: hidden; position: relative;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 1.5px; color: var(--text-light);
  padding: 0 12px; display: inline-flex; align-items: center; text-transform: uppercase;
}
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
.reveal-up { transform: translateY(20px); }
.reveal-left { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0,0);
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.78rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1rem; font-weight: 700;
  padding: 6px 22px; border-radius: 50px;
  background: rgba(212,162,85,0.08); border: 1px solid rgba(212,162,85,0.25);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.section-title {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.18; letter-spacing: 0.5px;
  margin-bottom: 1rem; font-weight: 700;
  background: linear-gradient(135deg, #ffffff 20%, #fdf3e3 60%, #e0c293 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}
.section-title em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-weight: 600;
  background: linear-gradient(135deg, #fef4e2 0%, #f3d193 50%, #d4a255 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-desc {
  color: var(--text-muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto;
  font-weight: 300; line-height: 1.7; letter-spacing: 0.3px;
}
.section-header {
  text-align: center; margin-bottom: 4rem; position: relative;
}
.section-header::after {
  content: ''; display: block; width: 70px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 22px auto 0; border-radius: 2px;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ===== ABOUT SECTION ===== */
.about-strip { padding: 110px 0; background: var(--dark2); position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text .section-title { text-align: left; }
.about-text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.2rem; font-size: 1.02rem; }
.about-text strong { color: var(--gold-light); font-weight: 600; }
.about-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.8rem; }
.badge-pill {
  padding: 9px 18px; border: 1px solid var(--glass-border); border-radius: 50px;
  font-size: 0.82rem; color: var(--gold-light); background: rgba(212,162,85,0.06);
  backdrop-filter: blur(8px); transition: all 0.3s; display: inline-flex; align-items: center;
}
.badge-pill:hover { background: rgba(212,162,85,0.18); transform: translateY(-2px); border-color: var(--gold); }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-card {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.stat-card:hover { transform: translateY(-6px); border-color: rgba(212,162,85,0.45); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.stat-icon-wrapper {
  width: 46px; height: 46px; border-radius: 50%; background: rgba(212,162,85,0.12);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
  border: 1px solid rgba(212,162,85,0.25);
}
.stat-card-icon { width: 22px; height: 22px; stroke: var(--gold); stroke-width: 2; fill: none; }
.stat-number {
  font-family: "Playfair Display", serif; font-size: 2.8rem; font-weight: 900;
  color: var(--gold-light); display: block; line-height: 1;
}
.stat-label { color: var(--text-muted); font-size: 0.82rem; margin-top: 8px; letter-spacing: 1px; text-transform: uppercase; }

/* ===== MENU / DISH / SWEETS / MY BAKES SLIDERS ===== */
.menu-section, .sweets-section, .mybakes-section { padding: 110px 0; background: var(--dark); position: relative; }
.sweets-section { background: var(--dark2); border-top: 1px solid rgba(212,162,85,0.12); border-bottom: 1px solid rgba(212,162,85,0.12); }
.mybakes-section { background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%); border-top: 1px solid rgba(212,162,85,0.12); border-bottom: 1px solid rgba(212,162,85,0.12); }

.dish-slider-wrapper { position: relative; display: flex; align-items: center; gap: 24px; min-height: 440px; }
.dish-slider { flex: 1; overflow: hidden; position: relative; min-height: 440px; }
.dish-card, .sweets-card, .mybakes-card {
  display: none; background: var(--dark3); border-radius: var(--radius);
  border: 1px solid var(--glass-border); overflow: hidden;
  flex-direction: row; min-height: 440px; box-shadow: var(--shadow);
  animation: slideInRight 0.5s cubic-bezier(0.16,1,0.3,1);
}
.dish-card.active, .sweets-card.active, .mybakes-card.active { display: flex; }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(80px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-80px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.dish-img-wrapper {
  width: 48%; position: relative; overflow: hidden; flex-shrink: 0;
}
.dish-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.dish-card:hover .dish-img-wrapper img,
.sweets-card:hover .dish-img-wrapper img,
.mybakes-card:hover .dish-img-wrapper img { transform: scale(1.08); }
.dish-badge {
  position: absolute; top: 20px; left: 20px;
  padding: 7px 16px; border-radius: 50px; background: rgba(28,21,14,0.85);
  border: 1px solid var(--gold); color: var(--gold-light); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1px; display: inline-flex; align-items: center; backdrop-filter: blur(10px);
}
.dish-badge.popular { background: rgba(239,68,68,0.2); border-color: #ef4444; color: #fca5a5; }
.dish-badge.fresh { background: rgba(16,185,129,0.2); border-color: #10b981; color: #6ee7b7; }

.dish-info { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.dish-category { font-size: 0.8rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.6rem; display: flex; align-items: center; }
.dish-name { font-family: "Playfair Display", serif; font-size: 2.2rem; color: white; margin-bottom: 1rem; }
.dish-desc { color: var(--text-muted); line-height: 1.75; margin-bottom: 2.2rem; font-size: 0.98rem; font-weight: 300; }
.dish-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(212,162,85,0.15); padding-top: 1.5rem; }
.dish-price { font-size: 1.35rem; font-weight: 700; color: var(--gold-light); }
.dish-rating { color: var(--gold); font-size: 0.95rem; display: flex; align-items: center; }
.dish-rating span { color: white; font-weight: 600; margin-left: 6px; }

.dish-arrow {
  width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid var(--gold);
  background: rgba(28,21,14,0.6); color: var(--gold); cursor: pointer;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.3s; backdrop-filter: blur(8px);
}
.dish-arrow:hover { background: var(--gold); color: #0d0a07; transform: scale(1.1); box-shadow: 0 0 20px var(--gold-glow); }
.dish-arrow i { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2.2; fill: none; }

.dish-dots { display: flex; justify-content: center; gap: 10px; margin-top: 35px; flex-wrap: wrap; }
.dish-dot, .sweets-dot, .mybakes-dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(212,162,85,0.3);
  cursor: pointer; transition: all 0.3s;
}
.dish-dot.active, .sweets-dot.active, .mybakes-dot.active { background: var(--gold); width: 32px; border-radius: 6px; box-shadow: 0 0 10px var(--gold-glow); }

/* ===== GALLERY ===== */
.gallery-section { padding: 90px 0; background: var(--dark2); overflow: hidden; }
.gallery-row { overflow: hidden; margin-bottom: 20px; }
.gallery-track { display: flex; gap: 20px; animation: galleryScroll 32s linear infinite; }
.gallery-track-reverse { animation: galleryScrollReverse 38s linear infinite; }
@keyframes galleryScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes galleryScrollReverse { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }
.gallery-item {
  width: 320px; height: 230px; border-radius: 18px; flex-shrink: 0;
  background-size: cover; background-position: center;
  transition: transform 0.4s, border-color 0.4s; cursor: pointer;
  border: 1px solid rgba(212,162,85,0.15);
}
.gallery-item:hover { transform: scale(1.04); border-color: var(--gold); }

/* ===== REVIEWS ===== */
.satisfaction-section { padding: 110px 0; background: var(--dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-bottom: 60px; }
.review-card {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 36px; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(12px); animation-delay: var(--delay, 0s);
}
.review-card:hover { transform: translateY(-8px); border-color: rgba(212,162,85,0.45); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1.2rem; }
.review-text { color: var(--text-muted); line-height: 1.75; font-style: italic; margin-bottom: 1.8rem; font-size: 0.98rem; font-weight: 300; }
.review-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.15rem; color: #0d0a07; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--accent));
  box-shadow: 0 4px 15px rgba(212,162,85,0.3);
}
.author-name { font-weight: 600; color: white; font-size: 1rem; }
.author-loc { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

.satisfaction-badge {
  display: flex; align-items: center; gap: 40px;
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 44px; flex-wrap: wrap; backdrop-filter: blur(12px); box-shadow: var(--shadow);
}
.badge-ring {
  width: 135px; height: 135px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(var(--gold) 0%, var(--gold) 96%, rgba(212,162,85,0.15) 96%);
  display: flex; align-items: center; justify-content: center;
  padding: 6px; box-shadow: 0 0 25px var(--gold-glow);
}
.badge-inner {
  width: 100%; height: 100%; border-radius: 50%; background: var(--dark3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.badge-score { font-family: "Playfair Display", serif; font-size: 2.3rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.badge-stars { color: var(--gold); margin-top: 4px; }
.badge-label { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }
.badge-text h3 { font-family: "Playfair Display", serif; font-size: 1.8rem; color: white; margin-bottom: 0.5rem; }
.badge-text p { color: var(--text-muted); line-height: 1.7; max-width: 480px; font-weight: 300; }

/* ===== INFO CARDS ===== */
.info-section { padding: 90px 0; background: linear-gradient(135deg, var(--dark2), #18120b); border-top: 1px solid rgba(212,162,85,0.15); border-bottom: 1px solid rgba(212,162,85,0.15); }
.info-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.info-card {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 38px 24px; text-align: center; backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation-delay: var(--delay, 0s);
}
.info-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 15px 35px rgba(0,0,0,0.5); }
.info-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.info-card h4 { font-family: "Playfair Display", serif; font-size: 1.2rem; color: white; margin-bottom: 0.6rem; }
.info-card p { color: var(--text-muted); font-size: 0.92rem; }
.info-detail { color: var(--text-muted); font-size: 0.88rem; margin-top: 6px; }
.info-detail strong { color: var(--gold-light); }

/* ===== CONTACT ===== */
.contact-section { padding: 110px 0; background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(212,162,85,0.1); border: 1px solid rgba(212,162,85,0.25); flex-shrink: 0; }
.contact-item strong { display: block; color: var(--gold); font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.contact-item p { color: var(--text-muted); line-height: 1.65; font-size: 0.96rem; }
.contact-item a { color: var(--text-muted); transition: color 0.3s; }
.contact-item a:hover { color: var(--gold-light); }
.map-btn { margin-top: 12px; align-self: flex-start; }

/* ===== FOOTER ===== */
.footer { padding: 70px 0 35px; background: var(--dark2); position: relative; overflow: hidden; border-top: 1px solid rgba(212,162,85,0.15); }
.footer-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 32px; text-align: center; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-logo-img {
  width: 60px; height: 60px; border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(212,162,85,0.45);
  margin-bottom: 4px;
}
.footer-brand .logo-main { font-family: "Playfair Display", serif; font-size: 1.5rem; color: var(--gold-light); }
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }
.footer-links { display: flex; gap: 2.2rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.3s; font-weight: 500; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(212,162,85,0.12); padding-top: 24px; width: 100%; text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; display: inline-flex; align-items: center; justify-content: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .info-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; position: fixed; top: 60px; left: 0; right: 0; max-height: calc(100vh - 60px); overflow-y: auto; flex-direction: column; background: rgba(11,9,7,0.98); padding: 24px; gap: 1.2rem; text-align: center; border-bottom: 1px solid var(--gold-glow); z-index: 1000; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  
  .dish-card, .sweets-card, .mybakes-card, .celebration-card { flex-direction: column; min-height: auto; }
  .dish-img-wrapper { width: 100%; height: 220px; }
  .dish-info { padding: 24px; }
  .dish-name { font-size: 1.6rem; margin-bottom: 0.6rem; }
  .dish-desc { font-size: 0.92rem; margin-bottom: 1.5rem; }
  
  .about-strip, .menu-section, .sweets-section, .mybakes-section, 
  .gallery-section, .satisfaction-section, .contact-section, 
  .celebration-section, .kitchen-context-section, .info-section {
    padding: 60px 0;
  }
  
  .info-card, .stat-card { padding: 24px 16px; }
  
  .reviews-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2,1fr); }
  .satisfaction-badge { flex-direction: column; align-items: flex-start; padding: 30px; }
  .dish-slider-wrapper { gap: 12px; min-height: auto; }
  .dish-slider { min-height: auto; }
  .dish-arrow { width: 44px; height: 44px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: stretch; width: 100%; max-width: 300px; margin: 0 auto; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary { width: 100%; }
  .hero-rating { flex-direction: column; gap: 4px; padding: 12px 20px; }
  .info-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-links { gap: 1rem; flex-direction: column; text-align: center; }
  .footer { padding: 50px 0 25px; }
}

/* ===== KITCHEN CONTEXT SECTION ===== */
.kitchen-context-section {
  padding: 80px 0 90px;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
  border-top: 1px solid rgba(212,162,85,0.1);
}
.kitchen-context-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 0;
}
.kitchen-ctx-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(212,162,85,0.04));
  border: 1px solid rgba(212,162,85,0.15);
  border-radius: 20px;
  padding: 36px 30px;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}
.kitchen-ctx-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.kitchen-ctx-card:hover { transform: translateY(-6px); border-color: rgba(212,162,85,0.45); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.kitchen-ctx-card:hover::before { opacity: 1; }
.kctx-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,162,85,0.2), rgba(212,162,85,0.08));
  border: 1px solid rgba(212,162,85,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.kctx-lucide { width: 26px; height: 26px; color: var(--gold); }
.kitchen-ctx-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--gold-light);
  margin-bottom: 14px; font-weight: 700;
}
.kitchen-ctx-card p {
  font-size: 0.93rem; color: var(--text-muted);
  line-height: 1.75;
}
@media (max-width: 900px) {
  .kitchen-context-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ===== CELEBRATION CAKES SECTION ===== */
.celebration-section {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
  border-top: 1px solid rgba(212,162,85,0.12);
  border-bottom: 1px solid rgba(212,162,85,0.12);
}
.celebration-card {
  display: none; background: var(--dark3); border-radius: var(--radius);
  border: 1px solid var(--glass-border); overflow: hidden;
  flex-direction: row; min-height: 440px; box-shadow: var(--shadow);
  animation: slideInRight 0.5s cubic-bezier(0.16,1,0.3,1);
}
.celebration-card.active { display: flex; }
.dish-price small {
  font-size: 0.75rem; font-weight: 400; color: var(--text-muted); margin-left: 2px;
}
.celebration-dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(212,162,85,0.3);
  cursor: pointer; transition: all 0.3s;
}
.celebration-dot.active { background: var(--gold); width: 32px; border-radius: 6px; box-shadow: 0 0 10px var(--gold-glow); }

/* ===== CELEBRATION CTA CARD ===== */
.celebration-cta-wrapper { margin-top: 52px; }
.celebration-cta-card {
  display: flex; align-items: center; gap: 28px;
  background: linear-gradient(135deg, rgba(212,162,85,0.12), rgba(212,162,85,0.04));
  border: 1.5px solid var(--gold);
  border-radius: 22px;
  padding: 32px 40px;
  position: relative; overflow: hidden;
  box-shadow: 0 0 30px rgba(212,162,85,0.12);
}
.celebration-cta-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ccta-icon-wrapper {
  width: 70px; height: 70px; border-radius: 18px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212,162,85,0.3), rgba(212,162,85,0.08));
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.ccta-icon { width: 34px; height: 34px; stroke: var(--gold-light); stroke-width: 1.8; fill: none; }
.ccta-text { flex: 1; }
.ccta-text h3 {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  color: var(--gold-light); margin-bottom: 8px; font-weight: 700;
}
.ccta-text p { color: var(--text-muted); font-size: 0.96rem; line-height: 1.65; font-weight: 300; }
.ccta-btn { flex-shrink: 0; white-space: nowrap; }

@media (max-width: 768px) {
  .celebration-cta-card { flex-direction: column; text-align: center; padding: 28px 24px; gap: 20px; }
  .ccta-text h3 { font-size: 1.2rem; }
  .celebration-card { flex-direction: column; }
}

/* ===== CAKE MENU MODAL ===== */
.cake-modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.cake-modal-overlay.open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.cake-modal-container {
  background: #fff;
  border-radius: 20px;
  width: 100%; max-width: 800px;
  max-height: 92vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.cake-modal-overlay.open .cake-modal-container {
  transform: scale(1) translateY(0);
}
.cake-modal-close {
  position: absolute; top: 14px; right: 18px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 1.5px solid rgba(114,28,36,0.3);
  font-size: 1.4rem; color: #721c24; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s;
  line-height: 1;
}
.cake-modal-close:hover { background: #721c24; color: white; transform: scale(1.1); }

.cake-modal-image-container {
  max-width: 920px;
  padding: 20px;
  background: rgba(255,255,255,0.08);
}
.cake-modal-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}
.cake-price-image {
  display: block;
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  background: #fff;
}

/* Modal Header */
.cake-modal-header {
  background: linear-gradient(135deg, #6a1520, #8b1a24, #6a1520);
  padding: 28px 32px 20px;
  border-radius: 20px 20px 0 0;
}
.cm-header-logo-row {
  display: flex; align-items: center; gap: 18px; margin-bottom: 16px;
}
.cm-logo-img {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2.5px solid rgba(255,220,140,0.8);
  box-shadow: 0 0 18px rgba(255,180,80,0.4);
}
.cm-header-title { display: flex; flex-direction: column; }
.cm-title-main {
  font-family: 'Great Vibes', cursive; font-size: 2.2rem;
  color: #fde68a; line-height: 1; margin-bottom: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.cm-title-sub {
  font-family: 'Cinzel', serif; font-size: 0.9rem; letter-spacing: 4px;
  color: rgba(253,230,138,0.9); font-weight: 700; text-transform: uppercase;
}
.cm-title-loc {
  font-size: 0.72rem; color: rgba(255,255,255,0.75); margin-top: 5px;
  letter-spacing: 0.5px; font-family: 'Montserrat', sans-serif;
}
.cm-header-badge {
  background: rgba(255,255,255,0.12); border: 1.5px solid rgba(253,230,138,0.6);
  border-radius: 10px; padding: 10px 18px; text-align: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem;
  letter-spacing: 2px; color: #fde68a; text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* Modal Body */
.cake-modal-body {
  padding: 28px 32px; background: #fffdf8;
}
.cake-prices-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px;
}
.cake-prices-col { display: flex; flex-direction: column; gap: 0; }
.cake-price-item {
  display: flex; align-items: baseline; gap: 4px;
  padding: 7px 4px; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: 'Montserrat', sans-serif;
}
.cake-price-item:last-child { border-bottom: none; }
.cake-num {
  font-size: 0.75rem; color: #8b1a24; font-weight: 700;
  min-width: 24px; flex-shrink: 0;
}
.cake-name {
  font-size: 0.78rem; color: #1a0a05; font-weight: 600;
  letter-spacing: 0.3px; flex-shrink: 0;
}
.cake-dot-leader {
  flex: 1; border-bottom: 2px dotted rgba(139,26,36,0.25);
  margin: 0 5px; position: relative; top: -3px; min-width: 10px;
}
.cake-rate {
  font-size: 0.82rem; color: #8b1a24; font-weight: 700;
  flex-shrink: 0; letter-spacing: 0.2px;
}

/* Modal Footer */
.cake-modal-footer {
  background: linear-gradient(180deg, #fff3e0, #fde8cc);
  padding: 22px 32px 28px;
  border-radius: 0 0 20px 20px;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  border-top: 1px solid rgba(139,26,36,0.15);
}
.cm-footer-notes p {
  font-size: 0.76rem; color: #5a2018; font-weight: 600;
  font-family: 'Montserrat', sans-serif; margin-bottom: 4px;
}
.cm-footer-quote {
  font-family: 'Great Vibes', cursive; font-size: 1.35rem;
  color: #8b1a24; margin-top: 10px;
}
.cm-footer-action { display: flex; align-items: center; }
.cm-whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c5e) !important;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35) !important;
}
.cm-whatsapp-btn:hover {
  box-shadow: 0 10px 28px rgba(37,211,102,0.55) !important;
}

@media (max-width: 600px) {
  .cake-prices-grid { grid-template-columns: 1fr; }
  .cake-modal-header { padding: 22px 20px 16px; }
  .cake-modal-body { padding: 20px; }
  .cake-modal-footer { padding: 18px 20px 22px; flex-direction: column; }
  .cm-title-main { font-size: 1.7rem; }
  .cm-header-badge { font-size: 0.82rem; letter-spacing: 1.5px; }
}

/* ===== CAKE PRICELIST PREMIUM BUTTON ===== */
.cake-pricelist-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(212,162,85,0.14), rgba(212,162,85,0.06));
  border: 1.5px solid var(--gold);
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s, transform 0.25s;
  box-shadow: 0 4px 18px rgba(212,162,85,0.15);
  cursor: pointer;
}
.cake-pricelist-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,162,85,0.18), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.cake-pricelist-btn:hover { box-shadow: 0 8px 32px rgba(212,162,85,0.35); transform: translateY(-2px); }
.cake-pricelist-btn:hover::before { opacity: 1; }
.cpb-icon-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212,162,85,0.35), rgba(212,162,85,0.12));
  border-right: 1px solid rgba(212,162,85,0.3);
}
.cpb-icon { width: 22px; height: 22px; stroke: var(--gold-light); stroke-width: 2; fill: none; }
.cpb-text {
  display: flex; flex-direction: column;
  padding: 10px 16px 10px 14px;
  gap: 2px;
}
.cpb-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  color: var(--gold-light); letter-spacing: 0.3px;
}
.cpb-text small {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; color: var(--text-muted);
  font-weight: 400; letter-spacing: 0.2px;
}
.cpb-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 52px; flex-shrink: 0;
  border-left: 1px solid rgba(212,162,85,0.2);
}
.cpb-arrow-icon {
  width: 16px; height: 16px; stroke: var(--gold);
  stroke-width: 2.5; fill: none;
  transition: transform 0.25s;
}
.cake-pricelist-btn:hover .cpb-arrow-icon { transform: translateX(4px); }
