:root {
  /* Palette based on logo: Greens, Oranges, Light Neutrals */
  --cream: #fdfbf8;
  --cream-2: #fcf6ef;
  --white: #ffffff;
  
  --orange: #f26a0a;
  --orange-dark: #d94b00;
  --orange-soft: #fff0e5;
  
  --green: #487315; /* Darker green from logo */
  --green-leaf: #79a61b; /* Lighter leaf green */
  --green-soft: #f4f8ec;

  --text: #453c38; /* Soft dark brown/gray for text */
  --muted: #736b66;
  --line: #ede4dd;
  
  --shadow-sm: 0 8px 24px rgba(69, 60, 56, 0.04);
  --shadow: 0 16px 40px rgba(69, 60, 56, 0.08);
  --shadow-lg: 0 24px 60px rgba(69, 60, 56, 0.12);
  
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  
  --container: 1140px;
  
  /* Header sizing */
  --header-height: 90px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height); /* For sticky header offset */
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
p { line-height: 1.7; font-size: 1.1rem; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

/* Topbar */
.topbar {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  position: absolute; /* so header can stay sticky cleanly */
  top: 0; left: 0; right: 0;
  z-index: 60;
}
.topbar .container {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Header e Navegação */
header {
  position: fixed; /* Fixed to allow dropdown overflow outside the flow cleanly */
  top: 40px; /* offset topbar */
  left: 0; right: 0;
  z-index: 50;
  background: rgba(253, 251, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(237, 228, 221, 0.6);
  transition: all 0.3s ease;
  height: var(--header-height);
  display: flex;
  align-items: center;
}
.header-wrap {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.brand-text strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  color: var(--green);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brand-text span {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--orange);
  margin-top: 2px;
}

/* Dropdown Menus */
nav, nav ul {
  height: 100%;
}
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0;
  margin: 0;
  font-weight: 700;
  color: var(--text);
}
nav > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
nav a:hover, nav > ul > li:hover > a { color: var(--orange); }
nav > ul > li > a {
  display: flex;
  align-items: center;
  height: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}
.mobile-menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--green);
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  z-index: 100;
}
nav > ul > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Setinha pro dropdown */
nav > ul > li > a::after {
  content: "▼";
  font-size: 0.6em;
  margin-left: 6px;
  color: var(--muted);
  transition: transform 0.2s;
  display: inline-block;
}
nav > ul > li:hover > a::after {
  transform: rotate(180deg);
  color: var(--orange);
}

.dropdown a {
  padding: 10px 24px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}
.dropdown a:hover {
  background: var(--cream-2);
  color: var(--orange);
}

.btn, .btn-green, .btn-outline, .btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
}
.btn {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(242, 106, 10, 0.25);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(242, 106, 10, 0.3);
  color: #fff;
}
.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(72, 115, 21, 0.25);
}
.btn-green:hover {
  background: #3e6616;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(72, 115, 21, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green-soft);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  color: var(--white);
  background: var(--green);
}

.btn-card {
  font-size: 14px !important;
  min-height: 44px !important;
  width: 100%;
  margin-top: 15px;
}

/* Utils */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
section { padding: 90px 0; }
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-head h2 {
  font-size: clamp(32px, 5vw, 44px);
  color: var(--green);
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 1.15rem;
}
.tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Carousel Hero */
.hero-carousel-container {
  position: relative;
  overflow: hidden;
  /* removed fixed padding top to integrate with general layout */
  background: var(--cream);
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
.carousel-slide {
  min-width: 100%;
  padding: 60px 0 80px;
  position: relative;
  /* Fallback gradients if no image is used */
}
.c-bg-1::before, .c-bg-1::after,
.c-bg-2::before, .c-bg-2::after {
  content: ""; position: absolute; z-index: -1;
}
.c-bg-1::before {
  top: -100px; right: -100px; width: 600px; height: 600px;
  background: radial-gradient(circle, var(--orange-soft) 0%, transparent 70%); opacity: 0.6;
}
.c-bg-1::after {
  bottom: -100px; left: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, var(--green-soft) 0%, transparent 70%); opacity: 0.8;
}

.c-bg-2::before {
  top: 0; left: 0; width: 800px; height: 800px;
  background: radial-gradient(circle, #fcf6ef 0%, transparent 60%); opacity: 0.9;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.05;
  color: var(--green);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.hero-copy h1 span {
  color: var(--orange);
}
.hero-copy p {
  font-size: 1.25rem;
  color: var(--muted);
  margin: 0 0 40px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-art {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--white), var(--cream-2));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--white);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.art-circle { position: absolute; border-radius: 50%; }
.art-circle.c1 { width: 280px; height: 280px; background: var(--green-soft); top: 50px; left: -40px; }
.art-circle.c2 { width: 160px; height: 160px; background: var(--orange-soft); bottom: 80px; right: 20px; }
.art-plate {
  position: relative; width: 240px; height: 240px;
  background: var(--white); border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  z-index: 2; display: flex; align-items: center; justify-content: center;
}
.art-plate::after {
  content: ""; width: 70%; height: 70%; border-radius: 50%; border: 2px dashed var(--line);
}
/* Controls */
.carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(72, 115, 21, 0.2);
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active { background: var(--orange); }

/* Seção Laranja Foco Central */
.orange-highlight {
  background: var(--orange);
  padding: 100px 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.orange-highlight::before {
  content: ""; position: absolute;
  width: 500px; height: 500px;
  background: var(--orange-dark);
  border-radius: 50%;
  top: -200px; left: -150px;
  opacity: 0.15;
}
.orange-highlight .container { position: relative; z-index: 2; }
.orange-highlight h2 {
  font-size: clamp(34px, 5vw, 48px);
  margin: 0 0 20px;
  color: var(--white);
  line-height: 1.1;
}
.orange-highlight p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.95;
}

/* Peça Agora (CTA E-commerce) */
.order-now {
  background: var(--cream-2);
  position: relative;
}
.order-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  max-width: 900px;
  margin: 0 auto;
  transform: translateY(0); /* Remove offset if desired, or keep as negative margin */
}
.order-box h2 {
  color: var(--green);
  font-size: 38px;
  margin: 0 0 20px;
}
.order-box p {
  color: var(--muted);
  font-size: 1.2rem;
  margin: 0 auto 40px;
  max-width: 600px;
}
.order-box .btn {
  font-size: 20px;
  padding: 0 40px;
  min-height: 64px;
}

/* Sobre o Projeto */
.about-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; box-shadow: var(--shadow);
}
.about-image img { width: 60%; opacity: 0.9; }
.about-content h2 {
  font-size: 36px;
  color: var(--green);
  margin: 0 0 24px;
  line-height: 1.1;
}
.about-content ul {
  list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 16px;
}
.about-content li {
  display: flex; align-items: flex-start; gap: 16px; font-size: 1.1rem; color: var(--text);
}
.about-content li::before {
  content: "✓"; display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; background: var(--green-soft); color: var(--green);
  border-radius: 50%; font-weight: 900; flex-shrink: 0; margin-top: 2px;
}

/* Depoimentos Lúdicos (Testimonials) */
.testimonials {
  background: var(--green-soft);
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.test-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.test-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange-soft);
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: -68px auto 20px; /* pull up */
  box-shadow: 0 8px 16px rgba(242, 106, 10, 0.15);
  border: 4px solid var(--white);
}
.stars { color: #f4c150; font-size: 20px; margin-bottom: 16px; letter-spacing: 2px; }
.test-card p {
  font-style: italic;
  color: var(--text);
  font-size: 1.05rem;
  margin: 0 0 20px;
}
.test-author {
  font-weight: 800;
  color: var(--green);
  font-size: 1rem;
}

/* Como Funciona */
.how-it-works { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-card {
  background: var(--cream-2);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.step-num {
  width: 60px; height: 60px;
  background: var(--orange); color: var(--white); font-size: 24px; font-weight: 900;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; box-shadow: 0 8px 20px rgba(242, 106, 10, 0.3);
}
.step-card h3 { color: var(--green); font-size: 22px; margin: 0 0 16px; }

/* FAQ Accordion */
.faq-section {
  background: var(--cream);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
summary {
  padding: 24px 30px;
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
  cursor: pointer;
  list-style: none; /* Hide default arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
summary::-webkit-details-marker { display: none; }
summary:hover { background: var(--green-soft); }
summary::after {
  content: "+";
  font-size: 26px;
  font-weight: 400;
  color: var(--orange);
  transition: transform 0.3s;
}
details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
details p {
  padding: 0 30px 24px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

/* Instagram Feed */
.instagram-section {
  background: var(--white);
  padding-bottom: 100px;
  text-align: center;
}
.insta-handle {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; color: var(--orange);
  margin-bottom: 40px;
  transition: transform 0.2s;
}
.insta-handle:hover { transform: scale(1.05); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.insta-item {
  aspect-ratio: 1/1;
  background: var(--cream-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
/* Aesthetic placeholders for IG */
.insta-item::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top right, var(--green-soft), var(--orange-soft));
  opacity: 0.8; transition: opacity 0.3s;
}
.insta-item:hover::before { opacity: 0; }
.insta-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 32px; color: var(--white); opacity: 0; transition: opacity 0.3s;
  z-index: 2;
}
.insta-item:hover .insta-icon { opacity: 1; }
.insta-item::after { /* Overlay on hover */
  content: ""; position: absolute; inset: 0; background: rgba(72,115,21,0.4); opacity: 0; transition: opacity 0.3s;
}
.insta-item:hover::after { opacity: 1; }

/* Footer */
footer {
  background: #3e6616; /* Darker green for footer base */
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand p {
  font-size: 1rem; max-width: 320px; margin: 20px 0 0; line-height: 1.6;
}
.footer-links h4 { color: var(--white); font-size: 18px; margin: 0 0 24px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy h1, .hero-copy p, .about-content h2, .about-content p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { max-width: 500px; margin: 0 auto; }
  .testimonials-grid, .steps-grid, .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .about-content ul li { text-align: left; }
}
@media (max-width: 768px) {
  body { padding-top: 40px; } /* taller header gap removed since header isn't fixed on mobile */
  header { position: relative; top: 0; height: auto; padding: 15px 0; border-bottom: 1px solid var(--line); }
  .header-wrap { flex-direction: row; gap: 16px; justify-content: space-between; flex-wrap: wrap; align-items: center; }
  
  .mobile-menu-toggle { display: block; }
  .mobile-menu-toggle.active .bar:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .mobile-menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  nav { display: none; width: 100%; }
  nav.active { display: block; animation: slideDown 0.3s ease; }
  
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  nav ul { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; padding: 0; }
  nav > ul > li { display: block; padding: 0; width: 100%; text-align: left; border-bottom: 2px solid var(--cream-2); background: var(--white); }
  nav > ul > li > a { display: block; padding: 15px 20px; font-size: 1rem; font-weight: 800; height: auto; }
  
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-left: none; padding: 15px 20px 20px 25px; margin: 0; background: var(--green-soft); display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
  nav > ul > li:hover .dropdown { transform: none; }
  .dropdown a { display: block; padding: 4px 0; font-size: 0.95rem; color: var(--green); font-weight: 700; width: 100%; }
  .dropdown a:hover { background: transparent; color: var(--orange-dark); }
  
  nav > ul > li > a::after { display: none; }
  .header-cta { display: inline-flex; width: 100%; margin-top: 20px; justify-content: center; }
  .testimonials-grid, .steps-grid, .insta-grid, .footer-grid { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; gap: 20px; }
  .choice-grid .test-card { padding: 30px !important; }
  section { padding: 60px 0; }
  .orange-highlight { padding: 70px 0; }
  .order-box { padding: 40px 20px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 28px; }
}

/* Menu Grid and Nutritional Section */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.menu-content { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.menu-content h3 { font-size: 18px; color: var(--green); margin: 0 0 16px; line-height: 1.3; font-weight: 800; min-height: 52px;}

.nutri-accordion {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: auto;
}
.nutri-accordion summary {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-dark);
  cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.nutri-accordion summary::-webkit-details-marker { display: none; }
.nutri-accordion summary::after { content: "▼"; font-size: 10px; transition: transform 0.2s; }
.nutri-accordion[open] summary::after { transform: rotate(180deg); }

.nutri-table {
  width: 100%; border-collapse: collapse; font-size: 13px; text-align: left;
  border-top: 1px solid var(--line);
}
.nutri-table th, .nutri-table td { padding: 8px 14px; border-bottom: 1px solid var(--line); color: var(--text); }
.nutri-table tr:last-child td { border-bottom: none; }
.nutri-table tr:nth-child(even) { background: var(--white); }
.nutri-table tr:nth-child(odd) { background: var(--cream-2); }

@media (max-width: 1024px) { 
  .menu-grid { grid-template-columns: repeat(2, 1fr); } 
}
@media (max-width: 600px) { 
  .menu-grid { grid-template-columns: 1fr; } 
  .menu-photo { height: 260px; } 
}

/* CAROUSEL PRODUCT PAGES */
.dish-image {
  position: relative;
  aspect-ratio: 4 / 3;
}
.dish-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}
.photo-front {
  z-index: 2;
  animation: photoCrossfade 4s infinite linear;
}
.photo-back {
  z-index: 1;
}

@keyframes photoCrossfade {
  0%, 45% { opacity: 1; }
  50%, 95% { opacity: 0; }
  100% { opacity: 1; }
}
