/* ============================================================
   OVENLY BY NILAV — Apple-Inspired Premium CSS
   Design System: Warm Parchment + Dark Chocolate
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }

/* --- Design Tokens --- */
:root {
  --bg:            #FDFAF7;
  --bg-alt:        #F5EFE8;
  --bg-dark:       #2A1108;
  --accent:        #3B1A0A;
  --accent-warm:   #C8925A;
  --accent-wa:     #25D366;
  --text-h:        #1A0A00;
  --text-body:     #4A3728;
  --text-muted:    #9C8070;
  --border:        rgba(58,26,10,0.10);
  --shadow-s:      0 2px 16px rgba(58,26,10,0.07);
  --shadow-m:      0 8px 32px rgba(58,26,10,0.11);
  --shadow-l:      0 16px 48px rgba(58,26,10,0.15);
  --r-card:        18px;
  --r-btn:         50px;
  --ease:          0.25s cubic-bezier(0.4,0,0.2,1);
}

/* --- Typography --- */
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; color: var(--text-h); line-height: 1.2; }

/* --- Accessibility --- */
:focus-visible { outline: 2px solid var(--accent-warm); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* --- Keyframes --- */
@keyframes fadeUp   { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes float    { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
@keyframes bounce   { 0%,20%,50%,80%,100% { transform:translateX(-50%) translateY(0); } 40% { transform:translateX(-50%) translateY(-8px); } 60% { transform:translateX(-50%) translateY(-4px); } }

/* ============================================================
   STICKY TOP NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,250,247,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-s);
}
.top-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo {
  width: 36px; height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-h);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  display: block;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: var(--bg-alt); color: var(--accent); }
.nav-order-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-btn);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
  white-space: nowrap;
}
.nav-order-btn:hover { background: #5a2a14; box-shadow: var(--shadow-m); transform: translateY(-1px); }

/* ============================================================
   UTILITY
   ============================================================ */
section { padding: 100px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.pill-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--bg-alt);
  color: var(--accent);
  border: 1px solid var(--border);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 140px 24px 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 80% 60% at 65% 45%, #F0E3D4 0%, var(--bg) 65%);
  overflow: hidden;
}
/* Remove the glass class default background we may inherit */
.hero.glass {
  background: radial-gradient(ellipse 80% 60% at 65% 45%, #F0E3D4 0%, var(--bg) 65%);
  backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1280px;
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text { animation: fadeUp 0.7s ease both; }
.hero-visual { animation: fadeUp 0.7s 0.15s ease both; text-align: center; }

/* Logo in hero */
.logo {
  width: 80px; height: auto;
  border-radius: 16px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-m);
  transition: transform var(--ease), box-shadow var(--ease);
}
.logo:hover { transform: translateY(-3px) scale(1.03); box-shadow: var(--shadow-l); }

/* Hero badge */
.hero-badge { margin-bottom: 20px; }
.badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--bg-alt);
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  animation: none;
  box-shadow: none;
}
.festive-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: none;
  box-shadow: var(--shadow-s);
}

/* Hero title */
.hero-title { margin-bottom: 16px; }
.brand-name {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-h);
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-description {
  font-size: 1.2rem;
  line-height: 1.55;
  margin-bottom: 32px;
  color: var(--text-body);
}
.hero-description strong {
  color: var(--accent-warm);
  font-weight: 700;
}
.location-highlight {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 8px;
  font-style: normal;
}

/* Hero features */
.hero-features { display: flex; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.feature-item { display: flex; align-items: center; gap: 7px; font-size: 0.9rem; color: var(--text-body); font-weight: 500; }
.feature-icon { font-size: 1.1rem; }

/* CTA buttons */
.hero-actions { display: flex; gap: 16px; margin-bottom: 28px; }
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--r-btn);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.primary-cta {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(58,26,10,0.25);
}
.primary-cta:hover { background: #5a2a14; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(58,26,10,0.3); }
.secondary-cta {
  background: var(--accent-wa);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}
.secondary-cta:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.35); }
.cta-text { font-weight: 600; }
.cta-icon { font-size: 1rem; transition: transform var(--ease); }
.cta:hover .cta-icon { transform: scale(1.15); }

/* Trust line */
.hero-trust { animation: fadeIn 1s 0.5s both; }
.trust-text { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }

/* Hero image */
.hero-image-container { position: relative; display: inline-block; }
.hero-image {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: var(--shadow-l);
  animation: float 5s ease-in-out infinite;
}
/* Remove floating emoji elements */
.floating-elements, .floating-item { display: none; }

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  padding: 22px 28px;
  background: #fff;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
}
.stat-item { text-align: center; }
.stat-number { display: block; font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--accent-warm); line-height: 1; }
.stat-label { display: block; font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; }

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); text-align: center; animation: bounce 2.5s infinite; }
.scroll-text { display: block; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 6px; }
.scroll-arrow { font-size: 1.2rem; color: var(--accent-warm); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--bg-alt);
  padding: 100px 24px;
  position: relative;
}
.about-container { max-width: 1200px; margin: 0 auto; }
.about-header { text-align: center; margin-bottom: 72px; }
.section-badge {
  display: inline-block;
  padding: 5px 16px;
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: none;
}
.about-title { font-size: 2.6rem; color: var(--text-h); margin-bottom: 12px; }
.about-subtitle { font-size: 1.05rem; color: var(--text-muted); font-weight: 400; }

.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.story-text { animation: fadeUp 0.7s ease both; }
.story-heading { font-size: 1.75rem; color: var(--text-h); margin-bottom: 18px; }
.story-description { font-size: 1rem; line-height: 1.7; color: var(--text-body); margin-bottom: 36px; }
.story-description strong { color: var(--accent); font-weight: 600; }
.story-description em { color: var(--text-muted); font-style: italic; }

.story-highlights { margin-bottom: 36px; }
.highlight-item {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding: 20px 22px;
  background: #fff;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
}
.highlight-item::before {
  content: '';
  position: absolute;
  left: 0; top: 16px; bottom: 16px;
  width: 3px;
  background: var(--accent-warm);
  border-radius: 2px;
}
.highlight-item:hover { transform: translateX(4px); box-shadow: var(--shadow-m); }
.highlight-icon { font-size: 1.6rem; flex-shrink: 0; }
.highlight-content h4 { font-size: 1rem; color: var(--text-h); margin-bottom: 5px; }
.highlight-content p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

.about-mission {
  background: #fff;
  padding: 26px 28px;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  margin-bottom: 36px;
  box-shadow: var(--shadow-s);
}
.mission-title { font-size: 1.1rem; color: var(--text-h); margin-bottom: 10px; }
.mission-text { font-size: 0.95rem; line-height: 1.65; color: var(--text-body); }

.about-values { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.value-item {
  text-align: center;
  padding: 20px 12px;
  background: #fff;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
}
.value-number { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--accent-warm); line-height: 1; }
.value-label { display: block; font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-top: 5px; text-transform: uppercase; letter-spacing: 0.04em; }

.story-visual { animation: fadeUp 0.7s 0.2s ease both; }
.about-image-container { position: relative; margin-bottom: 24px; }
.about-image { width: 100%; border-radius: 20px; box-shadow: var(--shadow-l); }
.image-overlay {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  background: rgba(253,250,247,0.94);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border);
}
.overlay-text { display: block; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--text-h); }
.overlay-subtext { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 3px; }

.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.stat-card {
  background: #fff;
  padding: 18px 14px;
  border-radius: var(--r-card);
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
  transition: transform var(--ease), box-shadow var(--ease);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.stat-icon { display: block; font-size: 1.4rem; margin-bottom: 8px; }
.stat-value { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--accent-warm); line-height: 1; }
.stat-desc { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; }

.about-cta {
  text-align: center;
  background: #fff;
  padding: 56px 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
  margin-top: 72px;
}
.cta-title { font-size: 1.9rem; color: var(--text-h); margin-bottom: 12px; }
.cta-description { font-size: 1rem; color: var(--text-muted); margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; }

/* Legacy compatibility */
.section h2 { font-size: 2.2rem; color: var(--text-h); text-align: center; margin-bottom: 28px; }
.section p { font-size: 1rem; text-align: center; max-width: 760px; margin: 0 auto 28px; }
.section-image { width: 100%; max-width: 400px; display: block; margin: 0 auto; }

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section { background: var(--bg); padding: 100px 24px; }
.menu-container { max-width: 1200px; margin: 0 auto; }
.menu-header { text-align: center; margin-bottom: 56px; }
.menu-title { font-size: 2.6rem; color: var(--text-h); margin-bottom: 12px; }
.menu-subtitle { font-size: 1.05rem; color: var(--text-muted); font-weight: 400; margin-bottom: 24px; }
.menu-intro { font-size: 0.97rem; color: var(--text-body); text-align: center; max-width: 800px; margin: 0 auto 20px; line-height: 1.65; }

.festive-intro {
  background: var(--bg-alt);
  padding: 24px 28px;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  font-size: 0.97rem;
  color: var(--text-body);
  margin-bottom: 32px;
  font-weight: 500;
}
.menu-features { display: flex; justify-content: center; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.menu-feature {
  background: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid var(--border);
}

/* Menu nav tabs */
.menu-navigation { margin-bottom: 56px; display: flex; justify-content: center; }
.menu-nav {
  display: flex;
  background: #fff;
  border-radius: 50px;
  padding: 6px;
  box-shadow: var(--shadow-s);
  border: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 4px;
}
.nav-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border: none;
  background: transparent;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--ease);
  font-family: 'Inter', sans-serif;
}
.nav-btn.active,
.nav-btn:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 3px 12px rgba(58,26,10,0.22);
  transform: none;
}
.nav-icon { font-size: 1rem; }
.nav-text { font-weight: 500; }

/* Menu category */
.menu-category { margin-bottom: 72px; animation: fadeIn 0.5s ease; }

.festive-category {
  background: var(--bg-alt);
  padding: 48px 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
}
.festive-category::before { display: none; }

.category-header { margin-bottom: 36px; }
.category-title {
  font-size: 1.9rem;
  color: var(--text-h);
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
/* Remove the category title underline */
.category-title::after { display: none; }
.festive-title { background: none; -webkit-text-fill-color: var(--text-h); font-size: 1.9rem; color: var(--text-h); }
.festive-title::after { display: none; }
.category-icon { font-size: 2rem; }

/* Badges - refined, no pulse */
.bestseller-badge,
.exclusive-badge,
.gift-badge,
.custom-badge {
  background: var(--accent);
  color: #fff !important;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: none;
  animation: none;
  text-shadow: none;
}
.exclusive-badge { background: var(--accent-warm); }
.gift-badge { background: #b07030; }
.custom-badge { background: #5a3ea0; }

.category-description {
  font-size: 0.97rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0 auto 24px;
  max-width: 720px;
  line-height: 1.65;
}
.category-description strong { color: var(--text-body); font-weight: 600; }
.category-description em { color: var(--text-muted); font-style: italic; }

.category-features { display: flex; justify-content: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.feature-tag {
  background: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid var(--border);
  backdrop-filter: none;
}

/* Menu item cards */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; margin-top: 24px; }
.menu-item {
  background: #fff;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
  padding: 26px 24px;
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
}
/* Remove the sliding-gradient-line before pseudo */
.menu-item::before { display: none; }
.menu-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }

/* Featured / premium variant — just subtly warmer border */
.menu-item.featured { border-color: rgba(200,146,90,0.3); }
.menu-item.premium { border-color: rgba(58,26,10,0.2); }
/* Remove the diagonal PREMIUM ribbon */
.menu-item.premium::after { display: none; }
.menu-item.special { border-style: solid; }

.festive-special { background: var(--bg-alt); border-color: rgba(200,146,90,0.25); }
.festive-special::after { display: none; }
.dream-item { border-color: rgba(58,26,10,0.18); background: #fff; }

.menu-item h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text-h); margin-bottom: 8px; font-weight: 700; }
.festive-special h4 { color: var(--text-h); }
.item-description { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.55; }
.custom-note { font-size: 0.82rem; color: var(--accent-warm); font-style: italic; margin-top: 10px; text-align: center; }

.item-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.price-tag { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--accent-warm); }
.festive-special .price-tag { color: var(--accent-warm); }
.weight-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* Item badges */
.holiday-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: none;
  z-index: 2;
}

/* Menu footer */
.menu-footer {
  margin-top: 64px;
  background: var(--bg-alt);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 48px 40px;
  text-align: center;
}
.footer-content { max-width: 900px; margin: 0 auto; }
.footer-title { font-size: 1.7rem; color: var(--text-h); margin-bottom: 28px; }
.footer-info { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; margin-bottom: 36px; }
.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
  background: #fff;
  padding: 22px 20px;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease);
}
.info-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.info-icon { font-size: 1.6rem; flex-shrink: 0; }
.info-content strong { color: var(--text-h); font-size: 0.95rem; display: block; margin-bottom: 4px; }
.info-content em { color: var(--text-muted); font-style: italic; font-size: 0.85rem; }
.info-content a { color: var(--accent-warm); text-decoration: none; font-weight: 600; transition: color var(--ease); }
.info-content a:hover { color: var(--accent); text-decoration: underline; }

.footer-cta {
  background: #fff;
  padding: 24px 28px;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
}
.festive-notice { font-size: 1rem !important; font-weight: 600 !important; color: var(--text-h) !important; margin-bottom: 20px !important; animation: none; -webkit-text-fill-color: var(--text-h); }
.footer-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.menu-footer p { margin-bottom: 12px; font-size: 0.95rem; color: var(--text-body); }
.menu-footer a { color: var(--accent-warm); text-decoration: none; font-weight: 600; transition: color var(--ease); }
.menu-footer a:hover { color: var(--accent); text-decoration: underline; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-alt);
}
#contact h2 { font-size: 2.2rem; color: var(--text-h); margin-bottom: 32px; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; margin: 28px 0; }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent-wa);
  color: #fff;
  text-decoration: none;
  border-radius: var(--r-btn);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.gradient-icon { font-size: 1.1rem; }
.location-text { font-size: 1rem; color: var(--text-muted); margin-top: 16px; }

/* Instagram follow section */
.instagram-follow-section { margin-top: 56px; }
.instagram-container {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
  padding: 48px 40px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.instagram-header { display: flex; align-items: center; gap: 20px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.instagram-icon-wrapper { flex-shrink: 0; }
.instagram-gradient-bg {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex; align-items: center; justify-content: center;
}
.instagram-icon { width: 28px; height: 28px; }
.instagram-content { text-align: left; }
.instagram-title { font-size: 1.4rem; color: var(--text-h); margin-bottom: 6px; }
.instagram-subtitle { font-size: 0.9rem; color: var(--text-muted); }

.instagram-features { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.feature-highlight { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-body); font-weight: 500; }
.feature-emoji { font-size: 1.1rem; }
.feature-text { font-weight: 500; }

.instagram-cta { margin-bottom: 24px; }
.instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
  color: #fff;
  border-radius: var(--r-btn);
  text-decoration: none;
  font-weight: 600;
  transition: transform var(--ease), box-shadow var(--ease);
  min-width: 240px;
  box-shadow: 0 4px 20px rgba(188,24,136,0.25);
}
.instagram-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(188,24,136,0.35); }
.btn-content { display: flex; align-items: center; gap: 12px; }
.btn-icon { width: 22px; height: 22px; flex-shrink: 0; }
.btn-text { text-align: left; }
.btn-main { display: block; font-size: 0.95rem; font-weight: 600; }
.btn-sub { display: block; font-size: 0.78rem; opacity: 0.85; }
.btn-arrow { font-size: 1.1rem; opacity: 0.8; }

.instagram-footer { text-align: center; }
.footer-text { font-size: 0.88rem; color: var(--text-muted); }
.sparkle { font-style: normal; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
#faq { background: var(--bg); padding: 100px 24px; }
#faq h2 { font-size: 2.2rem; color: var(--text-h); text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 780px; margin: 0 auto; }

details {
  background: #fff;
  border-radius: var(--r-card);
  margin-bottom: 12px;
  padding: 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
  transition: box-shadow var(--ease);
  overflow: hidden;
}
details:hover { box-shadow: var(--shadow-m); }
details[open] { box-shadow: var(--shadow-m); border-color: rgba(200,146,90,0.3); }

summary {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-h);
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  transition: background var(--ease);
}
summary::-webkit-details-marker { display: none; }
summary::marker { display: none; }
summary::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent-warm);
  flex-shrink: 0;
  transition: transform var(--ease);
  line-height: 1;
}
details[open] summary::after { content: '−'; }
summary::before { display: none; }
details[open] summary::before { display: none; }
summary:hover { background: var(--bg-alt); }

details p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: left;
}
details a { color: var(--accent-warm); text-decoration: none; font-weight: 600; }
details a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-enhanced {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 24px 0;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }

.footer-section {}
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.footer-text { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-text strong { color: rgba(255,255,255,0.85); font-weight: 600; }

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.footer-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color var(--ease); }
.footer-links a:hover { color: var(--accent-warm); }
.footer-links strong { color: rgba(255,255,255,0.8); font-weight: 500; }

.footer-contact { list-style: none; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color var(--ease); }
.footer-contact a:hover { color: var(--accent-warm); }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); font-size: 1.2rem; text-decoration: none; transition: border-color var(--ease), color var(--ease), background var(--ease); }
.footer-social a:hover { border-color: var(--accent-warm); color: var(--accent-warm); background: rgba(200,146,90,0.1); }
.social-icon { font-size: 1.2rem; }

/* SEO keywords visually hidden but in DOM */
.footer-keywords {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.footer-tagline { color: rgba(255,255,255,0.3) !important; font-size: 0.78rem !important; }

/* ============================================================
   MOBILE BOTTOM NAV
   ============================================================ */
footer { background: transparent; padding: 0; margin-top: 0; }
footer p { color: rgba(255,255,255,0.5); margin-bottom: 10px; }

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(253,250,247,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 20px rgba(58,26,10,0.08);
  padding: 8px 0 env(safe-area-inset-bottom, 8px);
  display: none;
  justify-content: space-around;
  align-items: center;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 14px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 10px;
  transition: color var(--ease), background var(--ease);
}
.nav-item .nav-icon { font-size: 1.3rem; }
.nav-item .nav-label { font-size: 0.65rem; font-weight: 500; }
.nav-item:hover, .nav-item.active { color: var(--accent); }
.nav-item-primary {
  background: var(--accent);
  color: #fff !important;
  border-radius: 14px;
  padding: 8px 20px;
  box-shadow: var(--shadow-m);
}
.nav-item-primary:hover { background: #5a2a14; color: #fff !important; }
.nav-item-primary .nav-icon { font-size: 1.4rem; }

/* ============================================================
   GLASS UTILITY (kept for backward compat, now just a subtle card)
   ============================================================ */
.glass {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0;
  border: none;
  box-shadow: none;
}
/* Override glass on sections to not add extra styling */
section.glass { background: inherit; backdrop-filter: none; border-radius: 0; border: none; box-shadow: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { gap: 40px; }
  .brand-name { font-size: 3.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .site-header { display: block; }
  .nav-links { display: none; }
  .mobile-bottom-nav { display: flex; }

  .hero { min-height: auto; padding: 110px 20px 80px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-text { order: 1; text-align: center; }
  .hero-visual { order: 2; }
  .hero-features { justify-content: center; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta { width: 100%; max-width: 280px; justify-content: center; }
  .brand-name { font-size: 2.8rem; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }

  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-values { grid-template-columns: repeat(2,1fr); }
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .cta-buttons { flex-direction: column; align-items: center; }

  .menu-nav { flex-wrap: wrap; gap: 6px; border-radius: 20px; }
  .nav-btn { padding: 9px 18px; font-size: 0.82rem; }
  .festive-category { padding: 28px 20px; }
  .footer-info { grid-template-columns: 1fr; }
  .footer-buttons { flex-direction: column; align-items: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .instagram-container { padding: 36px 24px; }
  .instagram-header { flex-direction: column; text-align: center; }
  .instagram-content { text-align: center; }

  section { padding: 72px 20px; }
}

@media (max-width: 480px) {
  .brand-name { font-size: 2.2rem; }
  .about-title, .menu-title { font-size: 2rem; }
  .hero-description { font-size: 1.05rem; }
  .logo { width: 64px; }
  .hero-image { max-width: 340px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-item { flex-direction: row; gap: 12px; justify-content: center; }
  .stat-number { font-size: 1.5rem; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .item-pricing { flex-direction: column; align-items: flex-start; gap: 8px; }
  section { padding: 60px 16px; }
  .menu-footer { padding: 28px 20px; }
  .about-cta { padding: 36px 20px; }
  .category-title { font-size: 1.55rem; }
  .nav-order-btn { display: none; }
}

@media (max-width: 360px) {
  .brand-name { font-size: 1.9rem; }
  .hero-description { font-size: 0.95rem; }
  .cta { max-width: 240px; padding: 12px 22px; font-size: 0.88rem; }
}

/* High DPI */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo, .hero-image { image-rendering: -webkit-optimize-contrast; }
}

/* Print */
@media print {
  .hero { min-height: auto; padding: 40px 20px; }
  .floating-elements, .scroll-indicator, .hero-actions, .site-header, .mobile-bottom-nav { display: none !important; }
}
