﻿:root {
  --green-900: #17351f;
  --green-800: #214d2c;
  --green-700: #2f6b46;
  --green-100: #edf7ed;
  --gold: #d89b22;
  --brown: #5d2515;
  --cream: #fff8ef;
  --ink: #1d1d1d;
  --muted: #646464;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(23, 53, 31, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

body.menu-open {
  overflow: hidden;
}

body.cart-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.section {
  scroll-margin-top: 96px;
  padding: 84px clamp(20px, 6vw, 88px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 248, 239, 0.86);
  border-bottom: 1px solid rgba(93, 37, 21, 0.08);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 248, 239, 0.96);
  box-shadow: 0 12px 35px rgba(23, 53, 31, 0.12);
}

.brand img {
  width: 86px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
}

.site-nav a {
  position: relative;
  color: var(--green-900);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.98rem;
}

.site-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green-900);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green-900);
  font-weight: 800;
  cursor: pointer;
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  color: var(--green-900);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.84rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 12px 24px rgba(33, 77, 44, 0.2);
}

.btn-primary:hover {
  background: var(--green-900);
}

.btn-secondary {
  color: var(--green-900);
  background: var(--white);
  border: 1px solid rgba(23, 53, 31, 0.16);
}

.btn-card {
  width: 100%;
  color: var(--white);
  background: var(--green-800);
}

.btn:disabled,
.checkout-button:disabled,
.clear-cart:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
  padding-top: 132px;
  background:
    linear-gradient(120deg, rgba(237, 247, 237, 0.96), rgba(255, 248, 239, 0.92), rgba(247, 232, 203, 0.76)),
    repeating-linear-gradient(135deg, rgba(23, 53, 31, 0.035) 0 1px, transparent 1px 42px);
  background-size: 160% 160%, auto;
  animation: heroBackdrop 14s ease-in-out infinite alternate;
}

.hero::before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 10%, rgba(255, 255, 255, 0.42) 42%, transparent 70%);
  transform: translateX(-120%);
  animation: heroLightSweep 7s ease-in-out infinite;
}

.hero::after {
  position: absolute;
  content: "";
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(0deg, rgba(23, 53, 31, 0.08), transparent);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  color: var(--green-900);
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero-content > .eyebrow,
.hero-content > h1,
.hero-copy,
.hero-actions,
.hero-highlights {
  opacity: 0;
  transform: translateY(26px);
  animation: heroRise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-content > .eyebrow { animation-delay: 0.08s; }
.hero-content > h1 { animation-delay: 0.18s; }
.hero-copy { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.42s; }
.hero-highlights { animation-delay: 0.56s; }

.hero-copy {
  max-width: 590px;
  margin: 22px 0 0;
  color: #435044;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 53, 31, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(23, 53, 31, 0.08);
  font-size: 0.92rem;
  font-weight: 900;
  animation: heroBadgePulse 3.8s ease-in-out infinite;
}

.hero-highlights span:nth-child(2) {
  animation-delay: 0.35s;
}

.hero-highlights span:nth-child(3) {
  animation-delay: 0.7s;
}

.hero-media {
  position: relative;
  opacity: 0;
  transform: translateX(34px) scale(0.98);
  animation: heroMediaIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.28s forwards;
}

.hero-slider:hover .hero-slides,
.hero-slider:focus-within .hero-slides {
  animation-play-state: paused;
}

.hero-media::before {
  position: absolute;
  content: "";
  inset: 18px -18px -18px 18px;
  border: 2px solid rgba(216, 155, 34, 0.45);
  border-radius: var(--radius);
  animation: heroFrameFloat 5.5s ease-in-out infinite;
}

.hero-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--green-900);
  animation: heroImageFloat 6.2s ease-in-out infinite;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.06) translateX(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1) translateX(0);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide figcaption {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 12px;
  color: var(--green-900);
  background: rgba(255, 248, 239, 0.88);
  border: 1px solid rgba(216, 155, 34, 0.28);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  font-size: 0.86rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.hero-slider-controls {
  position: absolute;
  right: clamp(14px, 4vw, 24px);
  bottom: clamp(14px, 4vw, 24px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(255, 248, 239, 0.88);
  border: 1px solid rgba(216, 155, 34, 0.26);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.hero-slider-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-900);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.hero-slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 53, 31, 0.3);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-slider-dots button.is-active {
  width: 24px;
  background: var(--gold);
}


.hero-badge {
  position: absolute;
  left: clamp(16px, 5vw, 34px);
  bottom: clamp(16px, 5vw, 34px);
  display: grid;
  gap: 4px;
  max-width: min(230px, 78%);
  padding: 14px 16px;
  color: var(--green-900);
  background: rgba(255, 248, 239, 0.9);
  border: 1px solid rgba(216, 155, 34, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 18px 35px rgba(23, 53, 31, 0.14);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(18px);
  animation: heroRise 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) 0.85s forwards, heroBadgeFloat 4.8s ease-in-out 1.6s infinite;
}

.hero-badge strong {
  font-size: 0.96rem;
}

.hero-badge span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-grid,
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card,
.payment-card,
.about-card {
  background: var(--white);
  border: 1px solid rgba(23, 53, 31, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.product-info h3,
.payment-card h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 1.25rem;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-info strong {
  color: var(--brown);
  font-size: 1.08rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  background: var(--green-100);
}

.about-text p:not(.eyebrow) {
  color: #4f5d50;
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-card {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 32px;
}

.about-card img {
  width: min(100%, 300px);
}

.payment-card {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 190px;
  padding: 28px;
  text-align: center;
  font: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.payment-card:hover,
.payment-card.is-selected {
  transform: translateY(-3px);
  border-color: rgba(216, 155, 34, 0.7);
  box-shadow: 0 22px 55px rgba(23, 53, 31, 0.18);
}

.payment-card.is-selected {
  outline: 3px solid rgba(216, 155, 34, 0.24);
}

.payment-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.payment-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 14px;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
}

.payment-card.is-selected span {
  color: var(--white);
  background: var(--green-800);
}

.location {
  background: var(--white);
}

.location iframe {
  display: block;
  width: 100%;
  height: min(58vh, 430px);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact {
  background: linear-gradient(120deg, var(--green-900), var(--green-700));
}

.contact .section-heading h2,
.contact .section-heading p:last-child {
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(16, 37, 22, 0.48);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 430px);
  height: 100vh;
  color: var(--ink);
  background: var(--cream);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.22);
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.cart-panel.is-open {
  transform: translateX(0);
}

.cart-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-bottom: 1px solid rgba(23, 53, 31, 0.1);
}

.cart-panel-header h2 {
  font-size: 2rem;
}

.cart-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green-900);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 16px;
  overflow: auto;
  padding: 24px 28px;
}

.cart-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(23, 53, 31, 0.08);
  border-radius: var(--radius);
}

.cart-item h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 1rem;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.quantity-controls button,
.remove-item {
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.quantity-controls button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--green-900);
  background: var(--green-100);
  font-size: 1.15rem;
  font-weight: 900;
}

.quantity-controls span {
  min-width: 24px;
  text-align: center;
  font-weight: 900;
}

.cart-item-price {
  color: var(--brown);
  font-weight: 900;
  white-space: nowrap;
}

.remove-item {
  align-self: start;
  padding: 8px 10px;
  color: var(--brown);
  background: #fff0e8;
  font-weight: 900;
}

.cart-summary {
  display: grid;
  gap: 14px;
  padding: 24px 28px 28px;
  background: var(--white);
  border-top: 1px solid rgba(23, 53, 31, 0.1);
}

.cart-payment-row,
.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--green-900);
  font-size: 1.2rem;
}

.clear-cart {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  color: var(--brown);
  background: #fff0e8;
  font-weight: 900;
  cursor: pointer;
}

footer {
  padding: 52px 20px;
  color: var(--white);
  text-align: center;
  background: #102516;
}

footer img {
  width: 96px;
  margin: 0 auto 16px;
}

footer h2 {
  color: var(--white);
  font-size: 2rem;
}

footer p {
  margin: 12px auto;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 24px 0;
}

.socials a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.socials img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.socials a:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
}

.copy {
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  font-size: 1.7rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}


@keyframes heroBackdrop {
  from { background-position: 0% 50%, 0 0; }
  to { background-position: 100% 50%, 0 0; }
}

@keyframes heroLightSweep {
  0%, 28% { transform: translateX(-120%); }
  58%, 100% { transform: translateX(120%); }
}

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroMediaIn {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes heroImageFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.015); }
}

@keyframes heroFrameFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

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

@keyframes heroBadgePulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 10px 25px rgba(23, 53, 31, 0.08); }
  50% { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(23, 53, 31, 0.12); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .cart-toggle {
    margin-left: auto;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 112px 16px auto;
    display: grid;
    gap: 4px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    max-width: 520px;
  }

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

@media (max-width: 560px) {
  .section {
    padding: 64px 18px;
  }

  .brand img {
    width: 72px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-slider:hover .hero-slides,
.hero-slider:focus-within .hero-slides {
  animation-play-state: paused;
}

.hero-media::before {
    inset: 10px -10px -10px 10px;
  }

  .product-card img {
    height: 220px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .cart-toggle {
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .cart-panel-header,
  .cart-items,
  .cart-summary {
    padding-left: 18px;
    padding-right: 18px;
  }
}




@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-content > .eyebrow,
  .hero-content > h1,
  .hero-copy,
  .hero-actions,
  .hero-highlights,
  .hero-media,
  .hero-badge {
    opacity: 1;
    transform: none;
  }
}


