:root {
  --green: #2f7d4a;
  --yellow: #f0b429;
  --brown: #3f2819;
  --cream: #eef5e9;
  --white: #ffffff;
  --ink: #172016;
  --muted: #5d6a5b;
  --panel: #ffffff;
  --line: rgba(47, 125, 74, 0.16);
  --shadow: 0 18px 50px rgba(25, 43, 24, 0.12);
  --shadow-strong: 0 26px 70px rgba(25, 43, 24, 0.2);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

/* GLOBAL */
section {
  padding: 72px 20px;
}

h1, h2, h3 {
  font-family: 'Quicksand', sans-serif;
  color: var(--brown);
  line-height: 1.12;
}

h2 {
  font-size: 32px;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(38, 62, 35, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 35px rgba(25, 43, 24, 0.18);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 6px 18px rgba(25, 43, 24, 0.28);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--yellow);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--brown);
  border-radius: 999px;
}

.nav-links {
  display: none;
  position: absolute;
  top: 82px;
  left: 20px;
  right: 20px;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #263e23;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(90, 62, 43, 0.16);
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-order {
  background: var(--yellow);
  color: var(--brown) !important;
  border-radius: 8px;
  text-align: center;
}

/* HERO */
.hero {
  position: relative;
  display: grid;
  min-height: min(640px, calc(100vh - 110px));
  align-items: end;
  overflow: hidden;
  padding: 120px 20px 72px;
  background:
    linear-gradient(90deg, rgba(20, 34, 18, 0.84), rgba(20, 34, 18, 0.48)),
    url("../images/honey.jpeg") center / cover;
  isolation: isolate;
}

.hero-text {
  max-width: 1120px;
  margin: 0 auto;
  width: min(100%, 1120px);
  color: var(--white);
}

.hero-text h1 {
  max-width: 680px;
  color: var(--white);
  font-size: 38px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-text p {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-image img {
  display: none;
}

/* BUTTONS */
.btn-primary {
  background: var(--green);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(47, 125, 74, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary:hover {
  background: #25663b;
  box-shadow: 0 16px 34px rgba(47, 125, 74, 0.28);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--brown);
  text-decoration: none;
}

.big {
  margin-top: 20px;
  display: inline-block;
  font-size: 16px;
}

/* TRUST */
.trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: min(1120px, calc(100% - 32px));
  margin: -34px auto 0;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 14px;
}

.trust p {
  padding: 12px;
  border-radius: 8px;
  background: #f4f8f0;
  font-weight: 700;
}

/* PRODUCTS */
.products h2 {
  text-align: center;
  margin-bottom: 14px;
}

.products-intro {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--muted);
}

.products-intro p + p {
  margin-top: 12px;
}

.product-grid {
  display: grid;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.card {
  --card-content-width: 100%;
  background: var(--panel);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.card img {
  display: block;
  width: var(--card-content-width);
  height: 320px;
  margin: 0 auto 20px;
  object-fit: cover;
  border-radius: 8px;
}

.card h3 {
  width: var(--card-content-width);
  margin-left: auto;
  margin-right: auto;
  color: var(--brown);
  margin-bottom: 8px;
}

.card p {
  width: var(--card-content-width);
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  margin-bottom: 14px;
}

.card ul {
  display: grid;
  gap: 6px;
  width: var(--card-content-width);
  margin: 0 auto 20px;
  padding: 0;
  list-style: none;
}

.card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
}

.card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.card .btn-primary {
  display: inline-block;
  margin-left: calc((100% - var(--card-content-width)) / 2);
}

/* STORY */
.story {
  display: grid;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.story-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.story-text {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.story-text p {
  color: var(--muted);
}

.story-text p + p {
  margin-top: 12px;
}

.carousel-track {
  position: relative;
  height: 360px;
  background: var(--brown);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.story-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(90, 62, 43, 0.34), transparent 45%);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-prev {
  left: 14px;
}

.carousel-next {
  right: 14px;
}

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--white);
}

/* WHY */
.why {
  text-align: center;
  max-width: 1120px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  justify-items: center;
  align-items: center;
  width: 80%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  text-align: left;
}

.why-grid > * {
  width: 100%;
}

.why-grid ul {
  margin: 0;
  padding: 22px 24px 22px 44px;
  list-style-position: outside;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.why-grid li + li {
  margin-top: 12px;
}

.why > div:last-child {
  width: min(780px, 90%);
  margin: 28px auto 0;
  color: var(--brown);
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

/* ORDER */
.order {
  text-align: center;
  width: min(920px, calc(100% - 32px));
  margin: 20px auto 72px;
  background:
    linear-gradient(135deg, rgba(240, 180, 41, 0.96), rgba(47, 125, 74, 0.9));
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.order h2 {
  color: var(--white);
}

/* PACKAGE ORDER PAGE */
.order-page main {
  padding: 0 20px 70px;
}

.package-hero {
  max-width: 820px;
  margin: 0 auto;
  padding: 84px 0 42px;
  text-align: center;
}

.eyebrow,
.package-tag {
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.package-hero h1 {
  margin: 8px auto 14px;
  color: var(--brown);
  font-size: 32px;
  line-height: 1.15;
}

.package-hero p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
}

.package-group {
  max-width: 1120px;
  margin: 0 auto 46px;
  padding: 0;
}

.package-heading {
  margin-bottom: 18px;
  text-align: center;
}

.package-heading h2 {
  color: var(--brown);
  font-size: 28px;
}

.package-grid {
  display: grid;
  gap: 20px;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.package-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.featured-package {
  border-color: rgba(240, 180, 41, 0.75);
  box-shadow: 0 18px 48px rgba(47, 125, 74, 0.18);
}

.package-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 220px;
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 8px;
  background: #e8f2df;
}

.package-visual img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
}

.single-product-visual {
  display: flex;
  justify-content: center;
}

.single-product-visual img {
  max-width: 220px;
}

.package-card h2,
.package-card h3 {
  margin: 6px 0 10px;
  color: var(--brown);
  font-size: 24px;
  font-family: 'Quicksand', sans-serif;
}

.package-card p {
  color: var(--muted);
}

.package-price {
  margin: 18px 0;
  color: var(--brown) !important;
  font-family: 'Quicksand', sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.package-btn {
  display: inline-flex;
  gap: 10px;
  margin-top: auto;
  border: 0;
  text-align: center;
  cursor: pointer;
  font: inherit;
}

.package-btn i {
  font-size: 16px;
}

/* FOOTER */
footer {
  background: var(--brown);
  color: white;
  text-align: center;
  padding: 34px 20px;
}

footer p:first-child {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.footer-brand {
  color: inherit;
  text-decoration: none;
}

footer p + p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
}

.footer-credit {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 12px;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.footer-socials i {
  color: var(--yellow);
  font-size: 24px;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(20, 34, 18, 0.22);
}

.basket-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(20, 34, 18, 0.22);
}

.basket-float i {
  font-size: 20px;
}

.basket-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-weight: 700;
}

#basket-count {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.92;
}

.basket-total {
  margin-left: auto;
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.basket-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 16px;
}

.basket-modal[hidden] {
  display: none;
}

.basket-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 32, 22, 0.62);
  backdrop-filter: blur(6px);
}

.basket-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  max-height: calc(100vh - 32px);
  padding: 30px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow-strong);
  overflow-y: auto;
}

.basket-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f4f8f0;
  color: var(--brown);
  cursor: pointer;
}

.basket-copy {
  margin-top: 10px;
  color: var(--muted);
}

.basket-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.basket-review {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbf7;
}

.basket-review:focus {
  outline: 2px solid rgba(47, 125, 74, 0.2);
  outline-offset: 3px;
}

.basket-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--brown);
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
}

.basket-items {
  display: grid;
  gap: 10px;
}

.basket-items > p {
  color: var(--muted);
}

.basket-item {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(47, 125, 74, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.basket-item-details {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 14px;
}

.basket-item-details strong {
  color: var(--ink);
  font-size: 15px;
}

.basket-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.basket-qty,
.basket-remove {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.basket-qty {
  width: 36px;
  background: var(--green);
  color: var(--white);
}

.basket-quantity {
  min-width: 28px;
  text-align: center;
  color: var(--brown);
  font-weight: 700;
}

.basket-remove {
  margin-left: auto;
  padding: 0 12px;
  background: #f4f8f0;
  color: var(--brown);
}

.basket-field {
  display: grid;
  gap: 8px;
}

.basket-field span {
  font-weight: 600;
  color: var(--ink);
}

.basket-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(47, 125, 74, 0.2);
  border-radius: 12px;
  background: #f9fbf7;
  color: var(--ink);
  font: inherit;
}

.basket-field input:focus {
  outline: 2px solid rgba(47, 125, 74, 0.2);
  border-color: var(--green);
}

.basket-summary {
  padding: 14px 16px;
  border-radius: 12px;
  background: #f4f8f0;
  color: var(--brown) !important;
  font-weight: 600;
}

.basket-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.basket-submit:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.divider {
  width: 100vw;
  height: 42px;
  background: url('../images/divider.png') repeat-x center;
  background-size: auto 100%;

  position: relative;
  left: 50%;
  transform: translateX(-50%);

  margin: 42px 0;
}

@media (max-width: 640px) {
  .trust,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    width: 92%;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .basket-modal {
    align-items: end;
    padding: 12px;
  }

  .basket-dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 24px 18px 18px;
    border-radius: 18px;
  }

  .basket-close {
    top: 10px;
    right: 10px;
  }
}

/* DESKTOP */
@media (min-width: 768px) {

  .nav {
    padding: 16px 40px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-links a {
    padding: 8px 10px;
  }

  .hero {
    min-height: min(680px, calc(100vh - 96px));
    padding: 140px 40px 86px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .package-hero h1 {
    font-size: 44px;
  }

  .card img {
    height: 360px;
  }

  .story {
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
  }

  .carousel-track {
    height: 430px;
  }

  .trust {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text h1 {
    font-size: 64px;
  }

}
