:root {
  --primary: #8b2500;
  --primary-dark: #6b1c00;
  --primary-light: #a93200;
  --accent: #2e7d32;
  --accent-hover: #1b5e20;
  --bg: #f5f0e8;
  --bg-alt: #ede8df;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --border: rgba(139, 37, 0, 0.12);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.16);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
  --transition: 0.3s ease;
  --nav-h: 76px;
}

/* 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(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 2000;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  left: 10px;
}

/* Animation base */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition), transform var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(245, 240, 232, 0.98);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  background: #fff;
  border: 2px solid rgba(139, 37, 0, 0.15);
  box-shadow: 0 4px 12px rgba(139, 37, 0, 0.18);
  transition: transform var(--transition);
}

.nav-brand:hover .nav-logo {
  transform: rotate(-8deg) scale(1.06);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1.05;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-left: 8px;
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.28);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.34);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(139, 37, 0, 0.07);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 14px 20px 20px;
  gap: 6px;
  box-shadow: var(--shadow-md);
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  padding: 12px 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.mobile-link:hover,
.mobile-link.active {
  background: rgba(139, 37, 0, 0.07);
  color: var(--primary);
  transform: translateX(3px);
}

.whatsapp-mobile {
  background: var(--accent) !important;
  color: var(--white) !important;
  text-align: center;
  margin-top: 6px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 45%, var(--primary-light) 100%);
  margin-top: var(--nav-h);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  position: relative;
  overflow: hidden;
  padding: 76px 0 82px;
}

.hero-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  will-change: transform;
}

.deco-1 {
  width: 380px;
  height: 380px;
  top: -110px;
  right: -70px;
}

.deco-2 {
  width: 220px;
  height: 220px;
  bottom: -70px;
  left: -40px;
  background: rgba(255, 255, 255, 0.05);
}

.deco-3 {
  width: 130px;
  height: 130px;
  right: 140px;
  top: 40px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-content {
  max-width: 700px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: #ffd180;
  display: inline-block;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: #fff2e9;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
  background: var(--accent);
  color: var(--white);
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.38);
}

.btn-whatsapp:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 24px rgba(46, 125, 50, 0.44);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  backdrop-filter: blur(8px);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  transform-style: preserve-3d;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: #ffd180;
  box-shadow: 0 0 0 6px rgba(255, 209, 128, 0.16);
  flex-shrink: 0;
}

.feature-card strong {
  display: block;
  color: var(--white);
  font-size: 0.96rem;
  margin-bottom: 4px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c67c00;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.section-desc {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* Categories */
.categories {
  background: var(--bg);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.food-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  transform-style: preserve-3d;
  position: relative;
}

.food-card::before,
.popular-card::before,
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), transparent 35%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.food-card:hover::before,
.popular-card:hover::before,
.why-card:hover::before {
  opacity: 1;
}

.food-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.food-card-img-wrap {
  height: 220px;
  overflow: hidden;
}

.food-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.food-card:hover .food-card-img {
  transform: scale(1.07);
}

.food-card-body {
  padding: 20px 22px 24px;
}

.food-card-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.food-card-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Popular */
.popular {
  background: var(--bg-alt);
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.popular-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  transform-style: preserve-3d;
}

.popular-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.popular-card.featured {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary);
}

.popular-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.popular-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.popular-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.popular-card:hover .popular-img {
  transform: scale(1.08);
}

.popular-overlay {
  position: absolute;
  inset: 0;
  background: rgba(139, 37, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.popular-card:hover .popular-overlay {
  opacity: 1;
}

.popular-view-btn {
  background: var(--white);
  color: var(--primary);
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform var(--transition), background var(--transition);
}

.popular-view-btn:hover {
  background: #ffd180;
  transform: scale(1.04);
}

.popular-label {
  padding: 16px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  border-top: 1px solid var(--border);
}

/* Why us */
.why-us {
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 3px solid transparent;
  position: relative;
  transform-style: preserve-3d;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--primary);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(139, 37, 0, 0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 1.25rem;
  color: var(--primary);
  transition: background var(--transition), transform var(--transition), color var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(-8deg) scale(1.08);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Footer */
.footer {
  background: #1c0a00;
  color: rgba(255, 255, 255, 0.78);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list li,
.footer-list a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.76);
}

.footer-list a:hover {
  color: #ffd180;
}

.footer-bottom {
  padding: 18px 0 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.84rem;
}

/* Floating buttons */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(46, 125, 50, 0.38);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(46, 125, 50, 0.44);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 76px;
  z-index: 1200;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
}

/* Tilt helper */
.tilt-card {
  will-change: transform;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-features,
  .cards-grid,
  .popular-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .footer-grid > .footer-col:first-child {
    grid-column: 1 / -1;
  }

  .popular-card.featured {
    transform: scale(1);
  }

  .popular-card.featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 600px) {
  :root {
    --nav-h: 68px;
  }

  .container,
  .nav-container,
  .hero-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .brand-tagline {
    font-size: 0.68rem;
  }

  .hero {
    padding: 54px 0 60px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-desc {
    font-size: 0.98rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .cards-grid,
  .popular-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .food-card-img-wrap,
  .popular-img-wrap {
    height: 210px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 11px 15px;
    font-size: 0.86rem;
  }

  .back-to-top {
    right: 12px;
    bottom: 64px;
  }
}

/* Focus */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Scroll bar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   MENU PAGE
   ============================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-hero {
  padding: calc(var(--nav-h) + 36px) 0 24px;
  background: var(--bg);
}

.page-hero-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), #d65208);
  border-radius: var(--radius-lg);
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 44px 24px;
  box-shadow: var(--shadow-md);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 12px;
}

.page-hero-desc {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
}

.page-hero-deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.page-hero-deco-1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.page-hero-deco-2 {
  width: 140px;
  height: 140px;
  bottom: -40px;
  left: -30px;
}

.menu-toolbar-section {
  padding: 0 0 16px;
}

.menu-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.menu-search-wrap {
  min-width: 280px;
  flex: 1 1 280px;
  max-width: 360px;
}

.menu-search {
  width: 100%;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0 18px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.menu-search:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 37, 0, 0.08);
  outline: none;
}

.menu-section {
  padding-top: 20px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card.is-hidden {
  display: none;
}

.menu-card-media {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-media img {
  transform: scale(1.06);
}

.menu-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(139, 37, 0, 0.92);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.menu-chip-lunch {
  background: rgba(27, 94, 32, 0.94);
}

.menu-chip-short {
  background: rgba(198, 124, 0, 0.95);
}

.menu-chip-drinks {
  background: rgba(58, 93, 150, 0.95);
}

.menu-card-body {
  padding: 20px 20px 24px;
}

.menu-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.menu-card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.menu-empty {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--white);
  color: var(--text-muted);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.menu-bottom-note {
  margin-top: 36px;
}

.menu-note-card {
  background: linear-gradient(135deg, rgba(139, 37, 0, 0.05), rgba(27, 94, 32, 0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.menu-note-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.menu-note-card p {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 18px;
}

.btn-menu-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.3);
  transition: var(--transition);
}

.btn-menu-whatsapp:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 82px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
}

.menu-whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 999;
}

@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero-panel {
    min-height: 170px;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding-top: calc(var(--nav-h) + 22px);
  }

  .page-hero-panel {
    min-height: 150px;
    padding: 34px 18px;
  }

  .page-hero-title {
    font-size: 2.2rem;
  }

  .menu-toolbar {
    align-items: stretch;
  }

  .menu-search-wrap {
    min-width: 100%;
    max-width: 100%;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-card-media {
    height: 220px;
  }

  .back-to-top {
    right: 12px;
    bottom: 70px;
  }

  .menu-whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.page-hero-about {
  background: var(--bg);
  padding-bottom: 26px;
}

.about-info-section {
  background: var(--bg);
  padding-top: 30px;
}

.about-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(139, 37, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.about-info-card h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.about-info-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

.about-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-list li i {
  color: var(--accent);
  margin-top: 6px;
  font-size: 0.85rem;
}

.about-special-section {
  background: var(--bg);
  padding-top: 36px;
}

.about-special-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-special-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-special-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.about-special-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(139, 37, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.15rem;
  margin: 0 auto 16px;
}

.about-special-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.about-special-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Smaller CTA Strip */
.about-cta-strip {
  background: var(--primary);
  padding: 38px 0;
}

.about-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.about-cta-text h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 8px;
  line-height: 1.15;
}

.about-cta-text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.65;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
}

.about-cta-btn:hover {
  transform: translateY(-2px);
}

.about-cta-btn-light {
  background: var(--white);
  color: var(--primary);
}

.about-cta-btn-light:hover {
  background: #fff4eb;
}

.about-cta-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.72);
}

.about-cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.about-footer {
  background: #1c0a00;
}

.about-call-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 900px) {
  .about-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-special-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-info-grid .about-info-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .page-hero-about {
    padding-bottom: 20px;
  }

  .about-info-grid,
  .about-special-grid {
    grid-template-columns: 1fr;
  }

  .about-info-grid .about-info-card:last-child {
    grid-column: auto;
  }

  .about-info-card,
  .about-special-card {
    padding: 24px 18px;
  }

  .about-cta-strip {
    padding: 30px 0;
  }

  .about-cta-wrap {
    align-items: flex-start;
  }

  .about-cta-text h2 {
    font-size: 1.9rem;
  }

  .about-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .about-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .about-call-float {
    right: 12px;
    bottom: 12px;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.page-hero-contact {
  background: var(--bg);
  padding-bottom: 26px;
}

.contact-main-section {
  background: var(--bg);
  padding-top: 30px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.02fr 1.18fr;
  gap: 24px;
  align-items: start;
}

.contact-info-card,
.contact-map-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-info-card {
  padding: 28px 24px 26px;
}

.contact-info-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(139, 37, 0, 0.12);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
}

.contact-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(139, 37, 0, 0.08);
}

.contact-info-row:last-of-type {
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(139, 37, 0, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-text {
  flex: 1;
}

.contact-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-value {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

a.contact-value:hover {
  color: var(--primary);
}

.weekly-hours-card {
  margin-top: 18px;
  background: #f7f2ee;
  border: 1px solid rgba(139, 37, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 18px 16px;
}

.weekly-hours-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.weekly-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  font-size: 0.94rem;
  border-bottom: 1px solid rgba(139, 37, 0, 0.06);
}

.weekly-hours-row:last-child {
  border-bottom: none;
}

.weekly-hours-row span {
  color: var(--text);
}

.weekly-hours-row strong {
  color: var(--accent);
  font-weight: 700;
  text-align: right;
}

.contact-primary-btn,
.contact-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 54px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-primary-btn {
  margin-top: 18px;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(139, 37, 0, 0.2);
}

.contact-primary-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.contact-map-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.contact-map-frame-wrap {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 37, 0, 0.08);
}

.contact-map-frame {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

.contact-secondary-btn {
  margin-top: 14px;
  background: transparent;
  color: var(--primary);
  border: 1.6px solid var(--primary);
}

.contact-secondary-btn:hover {
  background: rgba(139, 37, 0, 0.05);
  transform: translateY(-2px);
}

.contact-feature-strip {
  background: var(--primary);
  padding: 24px 0;
}

.contact-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.contact-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.contact-feature-item p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-footer {
  background: #1c0a00;
}

.contact-call-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 900px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-map-frame {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .page-hero-contact {
    padding-bottom: 20px;
  }

  .contact-info-card {
    padding: 24px 18px 22px;
  }

  .contact-info-card h2 {
    font-size: 1.75rem;
  }

  .weekly-hours-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .weekly-hours-row strong {
    text-align: left;
  }

  .contact-map-frame {
    height: 320px;
  }

  .contact-feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-call-float {
    right: 12px;
    bottom: 12px;
  }
}

/* ============================================================
   HOME PAGE UPDATE
   ============================================================ */

.home-page .hero-home {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #a22c00 100%);
  margin-top: var(--nav-h);
  border-radius: 0 0 24px 24px;
  position: relative;
  overflow: hidden;
  padding: 54px 0 46px;
}

.home-page .hero-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.home-page .hero-home-layout {
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr;
  gap: 20px;
  align-items: start;
}

.home-page .hero-content {
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.home-page .hero-right-spacer {
  min-height: 100%;
}

.home-page .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.home-page .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.home-page .hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 7vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--white);
}

.home-page .hero-title-line {
  display: block;
  color: var(--white);
}

.home-page .hero-title-accent {
  display: block;
  color: #ffd180;
}

.home-page .hero-desc {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.home-page .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.home-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
  white-space: nowrap;
}

.home-page .btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.78);
}

.home-page .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.home-page .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid transparent;
}

.home-page .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.home-page .btn-whatsapp {
  background: var(--accent);
  color: var(--white);
  border: 2px solid transparent;
  box-shadow: 0 6px 18px rgba(46, 125, 50, 0.35);
}

.home-page .btn-whatsapp:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.home-page .hero-features-home {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
}

.home-page .feature-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 16px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  backdrop-filter: blur(6px);
  transition: transform var(--transition), background var(--transition);
}

.home-page .feature-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.home-page .feature-icon {
  color: #ffd180;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.home-page .feature-card strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 4px;
  line-height: 1.3;
}

.home-page .feature-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.55;
}

.home-page .hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-page .deco-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.home-page .deco-1 {
  width: 360px;
  height: 360px;
  top: -70px;
  right: -30px;
}

.home-page .deco-2 {
  width: 130px;
  height: 130px;
  right: 160px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.home-page .categories {
  background: var(--bg);
  padding-top: 74px;
  padding-bottom: 84px;
}

.home-page .section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.home-page .section-label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c67c00;
  margin-bottom: 14px;
}

.home-page .section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.16;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.home-page .section-desc {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

.home-page .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-page .food-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.home-page .food-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.home-page .food-card-img-wrap {
  height: 230px;
  overflow: hidden;
}

.home-page .food-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-page .food-card:hover .food-card-img {
  transform: scale(1.05);
}

.home-page .food-card-body {
  padding: 18px 18px 22px;
}

.home-page .food-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.home-page .food-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.home-page .popular {
  background: var(--bg-alt);
  padding-top: 86px;
  padding-bottom: 92px;
}

.home-page .popular-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.home-page .popular-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.home-page .popular-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.home-page .popular-card.featured {
  border: 2px solid rgba(139, 37, 0, 0.45);
  box-shadow: var(--shadow-md);
}

.home-page .popular-card.featured:hover {
  transform: translateY(-6px);
}

.home-page .popular-img-wrap {
  height: 230px;
  overflow: hidden;
}

.home-page .popular-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-page .popular-card:hover .popular-img {
  transform: scale(1.05);
}

.home-page .popular-overlay {
  display: none;
}

.home-page .popular-label {
  padding: 14px 12px 16px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
  border-top: 1px solid var(--border);
}

.home-page .why-us {
  background: var(--bg);
  padding-top: 82px;
  padding-bottom: 88px;
}

.home-page .why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-page .why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: none;
}

.home-page .why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.home-page .why-icon {
  width: 54px;
  height: 54px;
  background: rgba(139, 37, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.1rem;
  color: var(--primary);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.home-page .why-card:hover .why-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.06);
}

.home-page .why-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.home-page .why-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .home-page .hero-home-layout {
    grid-template-columns: 1fr;
  }

  .home-page .hero-content {
    max-width: 100%;
  }

  .home-page .hero-features-home,
  .home-page .cards-grid,
  .home-page .popular-grid,
  .home-page .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-page .deco-1 {
    width: 260px;
    height: 260px;
    top: -30px;
    right: -60px;
  }

  .home-page .deco-2 {
    right: 60px;
    bottom: 18px;
  }
}

@media (max-width: 600px) {
  .home-page .hero-home {
    padding: 44px 0 36px;
  }

  .home-page .hero-container {
    padding: 0 16px;
  }

  .home-page .hero-title {
    font-size: 3rem;
  }

  .home-page .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .home-page .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .home-page .btn {
    width: 100%;
  }

  .home-page .hero-features-home,
  .home-page .cards-grid,
  .home-page .popular-grid,
  .home-page .why-grid {
    grid-template-columns: 1fr;
  }

  .home-page .food-card-img-wrap,
  .home-page .popular-img-wrap {
    height: 220px;
  }

  .home-page .deco-1 {
    width: 180px;
    height: 180px;
    top: -20px;
    right: -50px;
  }

  .home-page .deco-2 {
    width: 90px;
    height: 90px;
    right: 30px;
    bottom: 20px;
  }
}

/* Fix Font Awesome icons inside Home hero feature cards */
.home-page .feature-card .feature-icon {
  width: auto;
  height: auto;
  min-width: 18px;
  margin-top: 3px;
  border-radius: 0;
  background: none;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffd180;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Fix navbar and footer utensil logo icon */
.nav-logo,
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  object-fit: unset;
  overflow: hidden;
}

.nav-logo i,
.footer-logo i {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
}

.nav-logo {
  box-shadow: 0 6px 18px rgba(139, 37, 0, 0.28);
}

.footer-logo {
  background: var(--primary);
}