:root {
  --green-900: #17351f;
  --green-800: #23482b;
  --green-700: #315f38;
  --olive: #6d7832;
  --gold: #c99a3a;
  --cream: #fbf7eb;
  --paper: #fffdf7;
  --stone: #e8dfcf;
  --brown: #6d4a2f;
  --ink: #1d261f;
  --muted: #687064;
  --whatsapp: #22a95a;
  --shadow: 0 18px 45px rgba(29, 38, 31, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(201, 154, 58, 0.7);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--green-900);
  color: #fff;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3 {
  font-family: "Manrope", "Inter", sans-serif;
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 3vw, 36px);
  flex-wrap: wrap;
  padding: 9px 18px;
  background: linear-gradient(90deg, var(--green-900), var(--green-800));
  color: #fff9e7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.top-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.mini-icon {
  width: 20px;
  height: 20px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #ffe3a0;
  font-size: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.88);
  border-bottom: 1px solid rgba(35, 72, 43, 0.12);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 10px 30px rgba(29, 38, 31, 0.08);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: var(--green-900);
  letter-spacing: 0;
  min-width: 0;
}

.brand img,
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(35, 72, 43, 0.18);
}

.brand span,
.footer-brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #344337;
  font-weight: 700;
  font-size: 14px;
}

.nav-links a:hover {
  background: rgba(109, 120, 50, 0.1);
  color: var(--green-900);
}

.header-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  min-width: 176px;
  padding: 10px 15px;
  border-radius: 8px;
  color: #fff;
  background: var(--whatsapp);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(34, 169, 90, 0.2);
}

.header-cta span {
  font-size: 13px;
}

.header-cta strong {
  font-size: 12px;
}

.header-cta:hover,
.btn.whatsapp:hover,
.order-btn:hover,
.floating-whatsapp:hover {
  background: #178947;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(35, 72, 43, 0.18);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}

.contact-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn.primary {
  color: var(--green-900);
  background: #fff4d6;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.btn.primary:hover {
  background: #ffe3a6;
  transform: translateY(-1px);
}

.btn.whatsapp {
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 14px 32px rgba(34, 169, 90, 0.23);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 104px) 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.quality h2,
.instagram-cta h2 {
  margin-top: 10px;
  color: var(--green-900);
  font-size: clamp(30px, 4vw, 48px);
}

.section-heading p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.benefit-grid,
.product-grid,
.process-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.benefit-card,
.process-step,
.contact-card {
  border: 1px solid rgba(35, 72, 43, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(29, 38, 31, 0.06);
}

.benefit-card {
  padding: 24px;
  min-height: 210px;
}

.icon,
.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f2ead5;
  color: var(--green-900);
  font-weight: 900;
}

.benefit-card h3,
.process-step h3,
.contact-card h3 {
  margin-top: 18px;
  font-size: 20px;
  color: var(--green-900);
}

.benefit-card p,
.process-step p {
  margin-top: 10px;
  color: var(--muted);
}

.products {
  width: 100%;
  max-width: none;
  padding-top: clamp(32px, 5vw, 58px);
  padding-bottom: clamp(56px, 8vw, 88px);
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
  background: var(--cream);
}

.products .section-heading {
  margin-bottom: 26px;
}

.products .section-heading h2 {
  font-size: clamp(28px, 3.5vw, 42px);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(35, 72, 43, 0.13);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(29, 38, 31, 0.07);
  overflow: hidden;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(109, 120, 50, 0.35);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f5f0e5;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 320ms ease;
}

.product-gallery img.active {
  opacity: 1;
}

.gallery-dots {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 3;
}

.gallery-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.gallery-dots button.active {
  width: 20px;
  border-radius: 999px;
  background: #fff;
}

.shipping-badge,
.option-row em,
.price-row em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff1c9;
  color: #775019;
  font-size: 11px;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
}

.shipping-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
}

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

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-title-row h3 {
  color: var(--green-900);
  font-size: 22px;
}

.measure {
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid rgba(35, 72, 43, 0.16);
  border-radius: 999px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.product-body p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.product-body .shipping-note {
  margin-top: 12px;
  padding: 9px 10px;
  border-radius: 8px;
  background: #fff7df;
  color: #70501d;
  font-size: 12px;
  font-weight: 800;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.price-row strong {
  color: var(--green-900);
  font-family: "Manrope", sans-serif;
  font-size: 28px;
}

.price-row em {
  padding: 6px 8px;
  text-align: center;
}

.option-list {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.option-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border-radius: 8px;
  background: #f8f4e9;
}

.option-row span {
  color: var(--green-800);
  font-weight: 900;
  font-size: 13px;
}

.option-row strong {
  justify-self: start;
  color: var(--green-900);
  font-size: 18px;
}

.option-row em {
  padding: 5px 7px;
  white-space: nowrap;
}

.order-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  margin-top: 14px;
  padding: 11px 14px;
  border: 1px solid var(--whatsapp);
  border-radius: 8px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.order-btn.outline {
  background: #fff;
  color: #13783d;
}

.order-btn.outline:hover {
  color: #fff;
}

.dual-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.shipping-info {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(28px, 5vw, 50px) auto 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(201, 154, 58, 0.35);
  border-radius: 8px;
  background: #fff4d6;
  box-shadow: 0 12px 28px rgba(109, 74, 47, 0.08);
}

.shipping-info-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-900);
  color: #fff4d6;
  font-weight: 900;
}

.shipping-info h2 {
  color: var(--green-900);
  font-size: clamp(22px, 3vw, 30px);
}

.shipping-info p {
  margin-top: 8px;
  color: #4e3b20;
  font-weight: 700;
}

.process {
  padding-bottom: 84px;
}

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

.process-step {
  position: relative;
  padding: 28px;
}

.process-step span {
  background: var(--green-900);
  color: #fff;
}

.quality {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(64px, 9vw, 106px) max(16px, calc((100vw - 1180px) / 2));
  background: #f4efe1;
}

.quality-text p:not(.eyebrow) {
  margin-top: 18px;
  color: #536052;
  font-size: 17px;
}

.quality-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 190px 190px;
  gap: 12px;
}

.quality-images img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(29, 38, 31, 0.12);
}

.quality-images img:first-child {
  grid-row: 1 / 3;
}

.instagram-cta {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(64px, 9vw, 104px) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 44px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(23, 53, 31, 0.96), rgba(49, 95, 56, 0.86)),
    url("jumbo-1.jpeg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.instagram-cta h2 {
  color: #fffdf7;
}

.instagram-cta p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 12px;
  color: rgba(255, 253, 247, 0.84);
}

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

.contact-card {
  padding: 26px;
}

.contact-card a,
.contact-card address {
  display: block;
  margin-top: 12px;
  color: var(--green-800);
  font-style: normal;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-action {
  justify-content: center;
}

.site-footer {
  margin-top: 28px;
  padding: 44px max(16px, calc((100vw - 1180px) / 2)) 22px;
  background: var(--green-900);
  color: rgba(255, 253, 247, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr;
  gap: 28px;
}

.footer-brand {
  color: #fffdf7;
}

.footer-grid p {
  max-width: 330px;
  margin-top: 14px;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid a:hover {
  color: #ffe3a0;
}

.copyright {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 16px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 16px 34px rgba(34, 169, 90, 0.32);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links,
  .header-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    display: none;
  }

  .nav-links {
    top: 116px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(35, 72, 43, 0.12);
    border-radius: 8px;
    background: #fffdf7;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 14px 12px;
  }

  .header-cta {
    top: 322px;
  }

  .header-cta.open {
    display: inline-flex;
  }

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

@media (max-width: 820px) {
  .quality,
  .instagram-cta {
    grid-template-columns: 1fr;
  }

  .quality {
    display: grid;
  }

  .process-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .instagram-cta {
    display: grid;
  }

  .instagram-cta .btn {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .top-strip {
    justify-content: flex-start;
    gap: 7px;
    padding: 8px 12px;
    font-size: 10px;
  }

  .top-strip span {
    white-space: normal;
  }

  .nav-shell {
    width: min(100% - 24px, 1180px);
    min-height: 64px;
  }

  .brand {
    gap: 8px;
    font-size: 13px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .nav-links {
    top: 103px;
  }

  .header-cta {
    top: 309px;
  }

  .contact-action {
    display: grid;
  }

  .btn,
  .order-btn {
    width: 100%;
  }

  .section {
    width: min(100% - 24px, 1180px);
  }

  .benefit-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-media {
    aspect-ratio: 16 / 11;
  }

  .product-title-row,
  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .option-row {
    grid-template-columns: 1fr auto;
  }

  .option-row em {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .quality-images {
    grid-template-rows: 170px 170px;
  }

  .shipping-info {
    align-items: flex-start;
    width: min(100% - 24px, 1180px);
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 11px 13px;
  }

  .floating-whatsapp strong {
    display: none;
  }
}
