:root {
  --white: #ffffff;
  --green-50: #f1faf4;
  --green-100: #d7f0df;
  --green-200: #b4e4c6;
  --green-500: #009444;
  --green-600: #007a39;
  --orange-500: #f15a28;
  --orange-600: #d84a1b;
  --ink-900: #1e201f;
  --ink-700: #4a4f4c;
  --line: #d4ddd7;
  --radius: 16px;
  --shadow: 0 14px 35px rgba(27, 55, 37, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Avenir Next", "Avenir", "Manrope", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 12% 10%, rgba(241, 90, 40, 0.12), transparent 33%),
    radial-gradient(circle at 88% 20%, rgba(0, 148, 68, 0.13), transparent 29%),
    #f1f2ef;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

.hero-image img,
.product-card img,
.cart-item img {
  cursor: zoom-in;
}

body.no-scroll {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 16, 14, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}

.image-lightbox.is-open {
  display: flex;
}

.lightbox-image {
  width: min(1100px, 96vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #1b1b1b;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(0, 148, 68, 0.2);
  backdrop-filter: blur(10px);
}

section {
  scroll-margin-top: 100px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(120px, 12vw, 160px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink-700);
  font-size: 0.96rem;
}

.nav-links a:hover {
  color: var(--orange-600);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-500);
  color: var(--white);
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 600;
}

.cart-badge {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--white);
  color: var(--orange-600);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0 6px;
}

.section {
  padding: 78px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(243, 251, 244, 0.6), rgba(255, 255, 255, 0.75));
}

h1,
h2,
h3 {
  font-family: "Avenir Black", "Avenir";
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: 1.38rem;
  margin-bottom: 6px;
}

h1 {
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  display: block;
  text-align: center;
}

h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.9rem);
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

h3 {
  font-size: 1.62rem;
}

p {
  font-family: "Avenir";
} 

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--green-600);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1rem;
  text-align: center;
  font-family: Qikelan;
  
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 36px;
}

.hero-copy {
  color: var(--ink-700);
  margin: 18px 0 26px;
  display: block;
  text-align: center;
  font-size: 1.2rem;
}

.hero-title {
  margin: 18px 0 26px;
  display: block;
  text-align: center;
  font-size: 1.8rem;
  font-family: AvenirBlack;
  position: relative;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 320px;
  object-fit: cover;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: Qikelan;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 650;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.94rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(216, 74, 27, 0.25);
}

.btn-solid:hover {
  background: var(--orange-600);
}

.btn-ghost {
  border-color: var(--orange-500);
  color: var(--green-600);
  background: transparent;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefits-grid {
   text-align: center;
}

.card-lite {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 6px 18px rgba(38, 82, 51, 0.08);
}

.card-lite p {
  color: var(--ink-700);
  margin-bottom: 0;
}

.section-head {
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
  gap: 10px; 
  display: block;
  text-align: center;
  margin-bottom: 26px;

  /* display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px; */
}
  
.section-head p {
  color: var(--ink-700);
  text-align: left;
  font-size: 1.2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}


.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(19, 48, 28, 0.08);
  width: 100%;
  box-sizing: border-box;
}

.product-card img {
  width: 100%;
  height: 195px;
  object-fit: cover;
}

.product-info {
  padding: 16px;
}

.product-info h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.product-info p {
  color: var(--ink-700);
  font-size: 0.93rem;
  margin-top: 0;
}

.product-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  color: var(--green-600);
  font-weight: 700;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

blockquote {
  margin: 0;
  border-left: 3px solid var(--green-500);
  border-radius: 0 12px 12px 0;
  background: rgba(243, 251, 244, 0.72);
  padding: 18px;
  color: var(--ink-700);
}

cite {
  display: block;
  margin-top: 12px;
  color: var(--green-600);
  font-style: normal;
  font-weight: 700;
}

.cta-strip {
  background: linear-gradient(90deg, var(--orange-500), var(--green-600));
  color: var(--white);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cta-content .btn-solid {
  background: var(--white);
  color: var(--orange-600);
  box-shadow: none;
}

.footer {
  border-top: 1px solid var(--line);
  background: #f9fdf9;
}

.footer-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-700);
  font-size: 0.9rem;
}

/* MODAL */
 .modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.66);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1300;
      padding: 20px;
    }

    .modal.open {
      display: flex;
    }

    .modal-card {
      width: min(760px, 100%);
      background: #fff;
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
      max-height: 88vh;
      overflow: auto;
    }

    .alert-modal-card {
      width: min(420px, 100%);
      border-radius: 16px;
      padding: 26px 24px 22px;
      text-align: center;
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
      background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
    }

    .alert-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 14px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      background:  var(--green-100);
      color: var(--green-300);
    }

    .alert-title {
      font-size: 24px;
      color: #111;
      margin-bottom: 8px;
    }

    .alert-message {
      font-size: 16px;
      margin-bottom: 18px;
      color: #111;
    }

    .btn-alert-close {
      min-width: 140px;
      margin: 0 auto;
      background: var(--green-200);
      color: #111;
    }

    .modal-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    } 

    /* HASTA AQUÍ */

.cart-head {
  align-items: center;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: 24px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 14px;
  align-items: center;
}

.cart-item img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
}

.cart-item h3 {
  font-size: 1.38rem;
  margin-bottom: 6px;
}

.cart-item p {
  margin: 0;
  color: var(--ink-700);
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}

.qty-controls button {
  width: 34px;
  height: 32px;
  border: 0;
  background: #f1f7f2;
  color: var(--green-600);
  font-weight: 700;
  cursor: pointer;
}

.qty-controls span {
  min-width: 30px;
  text-align: center;
  font-weight: 700;
}

.item-right {
  text-align: right;
}

.remove-link {
  border: 0;
  background: transparent;
  color: #9a2f2f;
  cursor: pointer;
  margin-top: 8px;
  font-weight: 600;
}

.cart-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
  height: fit-content;
  position: sticky;
  top: 96px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--ink-700);
}

.total-row {
  margin-top: 8px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--ink-900);
}

.full {
  width: 100%;
  margin-top: 12px;
}

.help-text {
  color: var(--ink-700);
  font-size: 0.83rem;
  margin-bottom: 0;
}

.empty-cart {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
  padding: 32px;
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.contact-copy {
  border-left: 3px solid rgba(255,255,255,0.3);
  padding-left: 16px;
}

.contact-copy .eyebrow {
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.contact-copy h2 {
  text-align: left;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}

.contact-copy p {
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}


.contact-copy .design {
  text-align: end;
  
  color: rgba(255, 255, 255, 0.85);
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink-900);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px;
  box-shadow: 0 14px 30px rgba(14, 43, 24, 0.24);
}

.contact-fields {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-fields label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink-700);
}

.contact-fields input,
.contact-fields textarea {
  width: 100%;
  border: 1px solid #bfd8c4;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink-900);
  background: #fff;
}

.contact-fields input:focus,
.contact-fields textarea:focus {
  outline: 2px solid rgba(47, 143, 78, 0.35);
  outline-offset: 1px;
  border-color: var(--green-500);
}

.contact-form .btn-solid {
  width: 100%;
}

.form-status {
  margin: 10px 0 0;
  min-height: 1.4em;
  font-size: 0.88rem;
  font-weight: 600;
}

.form-status.is-ok {
  color: #1f6a38;
}

.form-status.is-error {
  color: #a12a2a;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .nav-wrap {
    min-height: 40px;
  }

  .hero-grid,
  .cart-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .benefits-grid,
  .quotes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 58px 0;
  }

  .products-grid,
  .benefits-grid,
  .quotes-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-content,
  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .item-right {
    text-align: left;
  }


.product-section {
  margin-top: 50px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
}

.expandable {
  cursor: pointer;
  transition: all 0.3s ease;
}
}

.carousel {
  position: relative;
  overflow: hidden;
  height: 195px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-track img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  
  background: transparent;
  border: none;
  color: white;
  
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 5;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.carousel button:hover {
  transform: translateY(-50%) scale(1.2);
  opacity: 0.8;
}

.prev { left: 10px; }
.next { right: 10px; }

.extra-images {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  transition: all 0.4s ease;
  margin-top: 10px;
}

.extra-images img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.product-card.active .extra-images {
  max-height: 500px;
  opacity: 1;
}