:root {
  --green: #1c5e3a;
  --green-dark: #123f27;
  --orange: #f47921;
  --orange-light: #ff9a44;
  --red: #c8161d;
  --cream: #fff8ef;
  --text: #2b2318;
  --shadow: 0 10px 30px rgba(28, 94, 58, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.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;
}

body {
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background:
    radial-gradient(circle at 50% 20%, rgba(244, 121, 33, 0.35), transparent 60%),
    linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.hero::before {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -140px;
}

.hero::after {
  width: 320px;
  height: 320px;
  bottom: -100px;
  right: -100px;
}

.hero-logo {
  width: min(260px, 55vw);
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.hero-actions {
  margin-top: 46px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-btn {
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.05);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- MENU ---------- */
.menu-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px 40px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--green);
  margin-bottom: 6px;
}

.section-title span {
  color: var(--orange);
}

.section-subtitle {
  text-align: center;
  color: #7a6d5a;
  margin-bottom: 34px;
  font-size: 0.95rem;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.tab-btn {
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  background: rgba(28, 94, 58, 0.08);
}

.tab-btn.active {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow);
}

.tab-panel {
  display: none;
  animation: fadeIn 0.35s ease;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-image {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
}

.product-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.product-name {
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
}

.product-price {
  background: var(--green);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.product-ingredients {
  font-size: 0.82rem;
  color: #7a6d5a;
  line-height: 1.4;
}

.product-allergy {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  background: rgba(200, 22, 29, 0.08);
  padding: 6px 10px;
  border-radius: 8px;
}

.product-allergy.none {
  color: var(--green);
  background: rgba(28, 94, 58, 0.08);
}

/* ---------- CONTACT ---------- */
.contact-section {
  background: var(--green-dark);
  color: #fff;
  padding: 60px 20px 0;
}

.contact-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 30px;
  color: var(--orange-light);
}

.contact-list {
  list-style: none;
  max-width: 900px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--orange-light);
}

.contact-value {
  font-size: 0.96rem;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
}

a.contact-value:hover {
  color: var(--orange-light);
}

.contact-address {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

@media (max-width: 700px) {
  .contact-list {
    grid-template-columns: 1fr;
  }
}

.map-wrap {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
  min-height: 380px;
  margin: 0 -20px;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

footer {
  text-align: center;
  padding: 18px;
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer b {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- WHATSAPP FAB ---------- */
.whatsapp-fab {
  position: fixed;
  right: 98px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  z-index: 100;
  transition: transform 0.2s;
  outline: none;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}

.whatsapp-fab:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* ---------- TO TOP FAB ---------- */
.to-top-fab {
  position: fixed;
  left: 98px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  z-index: 100;
  cursor: pointer;
  outline: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.to-top-fab.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top-fab:hover {
  transform: scale(1.08);
}

.to-top-fab:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* ---------- PHONE / LOCATION FAB ---------- */
.phone-fab,
.location-fab {
  position: fixed;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  z-index: 100;
  transition: transform 0.2s;
  outline: none;
  text-decoration: none;
}

.phone-fab {
  right: 24px;
  background: var(--green);
}

.location-fab {
  left: 24px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
}

.phone-fab:hover,
.location-fab:hover {
  transform: scale(1.08);
}

.phone-fab:focus-visible,
.location-fab:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
