:root {
  --green: #8cc63f;
  --green-deep: #5f9720;
  --honey: #f4c64e;
  --orange: #ff9950;
  --orange-soft: #ffc08a;
  --cream: #fffef8;
  --text: #2d3a22;
  --muted: #5c6b50;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(93, 118, 58, 0.16);
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 20%, #f5ffc7 0%, transparent 40%),
    radial-gradient(circle at 100% 0%, #ffeab6 0%, transparent 36%),
    linear-gradient(160deg, #fffef8 0%, #ffffff 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section-pad {
  padding: 4.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(140, 198, 63, 0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--green), var(--honey));
  color: #ffffff;
}

.site-nav {
  display: none;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  background: #fffdf5;
  border-bottom: 1px solid rgba(140, 198, 63, 0.2);
  padding: 1rem 4%;
  flex-direction: column;
  gap: 0.8rem;
}

.site-nav a {
  font-weight: 700;
  color: var(--muted);
}

.site-nav.open {
  display: flex;
}

.menu-toggle {
  border: 0;
  background: transparent;
  display: grid;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  border-radius: 6px;
  background: var(--green-deep);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.82rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(145deg, var(--green), var(--green-deep));
  color: #fff;
}

.btn-outline {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: #fff;
}

.desktop-order {
  display: none;
}

.hero {
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-tag,
.kicker {
  display: inline-block;
  font-weight: 800;
  color: #a06f1f;
  background: #ffe7b1;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.hero-content h1 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2.1rem, 5.6vw, 4.3rem);
  margin: 0.8rem 0;
  line-height: 1.02;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card.one {
  transform: translateY(26px);
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 86%, rgba(255, 153, 80, 0.28), transparent 20%),
    radial-gradient(circle at 92% 20%, rgba(140, 198, 63, 0.23), transparent 24%);
}

.section-head h2,
.about-content h2,
.order-box h2,
.contact h2 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.7rem, 4.4vw, 2.6rem);
  margin: 0.65rem 0 0;
}

.product-grid {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
}

.product-card {
  background: linear-gradient(180deg, #fff 0%, #fff8e9 100%);
  border: 1px solid rgba(255, 153, 80, 0.22);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  box-shadow: 0 10px 30px rgba(114, 87, 31, 0.08);
}

.product-card img {
  border-radius: 14px;
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.product-card h3 {
  margin: 0.9rem 0;
  font-size: 1.15rem;
}

.btn-card {
  background: linear-gradient(145deg, var(--honey), var(--orange));
  color: #512e0e;
}

.about-grid {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}

.why-choose {
  background: linear-gradient(160deg, #f9ffe8 0%, #fff4dd 100%);
  border: 1px solid rgba(140, 198, 63, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}

.why-choose h3 {
  margin-top: 0;
  font-family: "Baloo 2", cursive;
  font-size: 1.7rem;
}

.why-choose ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.why-choose li {
  background: #fff;
  border-radius: 12px;
  padding: 0.8rem;
  font-weight: 700;
}

.why-choose span {
  color: var(--green-deep);
}

.order-box {
  background: linear-gradient(150deg, #f6ffd9 0%, #ffe9c4 60%, #fff 100%);
  border: 1px solid rgba(140, 198, 63, 0.28);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: grid;
  gap: 1.2rem;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.contact-form {
  background: #fff;
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid rgba(140, 198, 63, 0.2);
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(122, 131, 108, 0.4);
  border-radius: 10px;
  padding: 0.75rem;
  font: inherit;
}

.site-footer {
  background: #1f3a1a;
  color: #f1ffe9;
  padding: 2.4rem 0 1rem;
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.site-footer h3,
.site-footer h4 {
  font-family: "Baloo 2", cursive;
  margin: 0 0 0.5rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.socials {
  display: flex;
  gap: 0.5rem;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.copyright {
  text-align: center;
  margin-top: 1.5rem;
  padding: 0 4%;
  color: #d4e6c8;
}

.back-top {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 120;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  font: inherit;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(145deg, var(--orange), var(--green));
  box-shadow: 0 14px 28px rgba(52, 77, 31, 0.25);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
}

body.js-enabled .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

@media (min-width: 720px) {
  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  .desktop-order {
    display: inline-flex;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 2rem;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}
