@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

/* =========================
   VARIABLES
========================= */

:root {
  --bg: #f5f6f2;
  --surface: #ffffff;
  --surface-soft: #f0f2ec;
  --line: #e7ebe2;
  --text: #1f2a1f;
  --muted: #6f786d;
  --accent: #9ecb47;
  --accent-dark: #79a830;
  --accent-deep: #2f4a1f;
  --white: #ffffff;

  --shadow-sm: 0 6px 18px rgba(21, 31, 17, 0.04);
  --shadow-md: 0 12px 30px rgba(21, 31, 17, 0.06);
  --shadow-lg: 0 20px 50px rgba(21, 31, 17, 0.08);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --container: 1240px;
  --font-body: "Inter", Arial, sans-serif;
  --font-display: "Inter", Arial, sans-serif;
}

/* =========================
   RESET / BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

h1,
h2,
h3,
.hero h1,
.product-meta h3,
.cart-panel-inner h3,
.editorial-title h2,
.section-head h2,
.faq-intro h2,
.contact-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow,
.section-kicker,
.visual-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
  color: #7e9465;
}

/* =========================
   BOTONES
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(158, 203, 71, 0.22);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--surface-soft);
}

.btn-dark {
  width: 100%;
  margin-top: 16px;
  background: linear-gradient(135deg, #8fbc3a 0%, #9ecb47 100%);
  color: var(--white);
  transition:
    transform 0.22s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease,
    background 0.25s ease;
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(158, 203, 71, 0.22);
  filter: brightness(1.03);
}

.btn-dark:active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 8px 16px rgba(158, 203, 71, 0.16);
}

.btn-full {
  width: 100%;
}

/* =========================
   TOPBAR / HEADER
========================= */

.topbar {
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  background: #eef3e7;
  color: var(--accent-deep);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
}

.topbar p {
  color: var(--accent-deep);
}

.topbar a {
  font-weight: 700;
  color: var(--accent-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 246, 242, 0.74);
  border-bottom: 1px solid rgba(231, 235, 226, 0.8);
  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(245, 246, 242, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 235, 226, 1);
  box-shadow: var(--shadow-sm);
}

.nav {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-logo-full {
  width: auto;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.cart-link:hover {
  color: var(--text);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.cart-link span {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--accent-deep);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}

/* =========================
   HERO
========================= */

.hero {
  padding: 34px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  gap: 32px;
  align-items: center;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero h1 {
  margin-top: 12px;
  max-width: 10ch;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero-text {
  margin-top: 16px;
  max-width: 38ch;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-points {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  display: block;
}

.visual-frame {
  width: 100%;
  min-height: 470px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  will-change: transform;
  transition: transform 0.45s ease;
}

.visual-note {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(280px, 82%);
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.hero-visual:hover .visual-note {
  transform: translateY(-6px);
}

.hero-visual:hover .visual-frame img {
  transform: scale(1.09);
}

.visual-note h2 {
  margin-top: 10px;
  font-size: 1.3rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.visual-note p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

/* =========================
   SECCIONES GENERALES
========================= */

.editorial-intro,
.benefits-section,
.testimonials-section,
.faq-section,
.contact-section {
  padding: 84px 0;
}

.products-section {
  padding: 110px 0 84px;
}

.editorial-intro {
  position: relative;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head-tight {
  margin-bottom: 28px;
}

.section-note {
  width: 100%;
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  text-align: right;
  font-size: 0.98rem;
}

.editorial-title h2,
.section-head h2,
.faq-intro h2,
.contact-card h2 {
  margin-top: 10px;
  max-width: 12ch;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

/* =========================
   NUESTRA MIRADA
========================= */

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.15fr);
  gap: 36px;
  align-items: start;
}

.editorial-copy > p {
  max-width: 760px;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--muted);
}

.mini-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mini-cards article,
.benefit-card,
.testimonial-card,
.contact-card,
.cart-panel-inner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.mini-cards article {
  padding: 20px;
}

.benefits-icons-grid article {
  padding-top: 18px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.benefits-icons-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefits-icons-grid .benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: #eef4e3;
  color: var(--accent-deep);
  border: 1px solid #e0ead2;
}

.benefits-icons-grid .benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefits-icons-grid h3 {
  margin-top: 0;
  font-size: 1.28rem;
  line-height: 1.1;
}

.benefits-icons-grid p,
.mini-cards p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================
   PRODUCTOS
========================= */

.products-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #dbe6cf;
}

.product-image {
  position: relative;
  min-height: 420px;
  aspect-ratio: 1 / 1.02;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
  transform: scale(1.14);
  will-change: transform;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.2);
}

.product-type {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  min-width: 114px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 24px rgba(29, 30, 26, 0.1);
}

.product-type--tintura {
  background: var(--accent);
  color: var(--white);
}

.product-type--tonico {
  background: #efe4b8;
  color: var(--accent-deep);
}

.sale-badge--inside {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent-deep);
  border: 1px solid #dbe6cf;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-meta {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px 20px 20px;
}

.product-meta h3 {
  margin-top: 0;
  max-width: 100%;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.product-description,
.product-purpose {
  margin-top: 10px;
  font-size: 0.98rem;
  line-height: 1.58;
}

.product-description {
  color: var(--muted);
}

.product-purpose {
  color: var(--text);
}

.product-purpose strong {
  font-weight: 800;
}

.product-bottom {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: nowrap;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: nowrap;
}

.product-pricing--sale {
  align-items: baseline;
  gap: 10px;
}

.price,
.price-discount {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.price-original {
  font-size: 0.98rem;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-discount {
  color: var(--accent-deep);
}

.stock {
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
  align-self: baseline;
}

/* =========================
   CARRITO
========================= */

.cart-panel {
  position: sticky;
  top: 88px;
}

.cart-panel-inner {
  padding: 18px;
}

.cart-panel-inner h3 {
  margin-top: 6px;
  font-size: 1.8rem;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.cart-subtitle {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.4;
  font-size: 0.96rem;
}

.cart-list {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.cart-item,
.cart-empty {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.cart-empty {
  padding: 16px;
  color: var(--muted);
}

.cart-item {
  position: relative;
  padding: 14px;
}

.cart-item-top {
  position: relative;
}

.cart-item-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 12px;
  align-items: start;
  min-width: 0;
  padding-right: 34px;
}

.cart-item h4 {
  margin: 0;
  min-width: 0;
  font-size: 0.96rem;
  line-height: 1.08;
}

.cart-item-price {
  display: none;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 7px;
  background: var(--surface-soft);
}

.qty-controls button,
.remove-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--text);
}

.qty-controls button {
  width: 22px;
  height: 22px;
  border-radius: 999px;
}

.qty-controls button:hover,
.remove-btn:hover {
  background: rgba(32, 48, 33, 0.06);
}

.qty-controls--inline {
  flex: 0 0 auto;
  align-self: start;
  margin-top: 1px;
}

.qty-controls--inline span {
  min-width: 12px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1;
}

.remove-btn--icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--muted);
}

.remove-btn--icon:hover {
  color: var(--text);
}

.cart-summary {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.98rem;
}

.cart-panel .btn-full {
  min-height: 52px;
  font-size: 0.95rem;
  padding: 0 18px;
}

/* =========================
   ATENCIÓN PERSONALIZADA
========================= */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(158, 203, 71, 0.1);
  filter: blur(4px);
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(158, 203, 71, 0.35);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.92);
}

.benefit-card .benefit-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(158, 203, 71, 0.1);
  border: 1px solid rgba(158, 203, 71, 0.2);
  color: var(--accent-deep);
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

.benefit-card:hover .benefit-icon {
  transform: translateY(-2px) scale(1.04);
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.benefit-card .benefit-icon svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.benefit-card p {
  position: relative;
  z-index: 1;
  max-width: 38ch;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

/* =========================
   TESTIMONIOS
========================= */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.testimonial-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(158, 203, 71, 0.35);
  box-shadow: var(--shadow-md);
}

.testimonial-card--screenshot {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.testimonial-image-wrap {
  width: 100%;
  height: 250px;
  padding: 18px;
  background:
    radial-gradient(circle at top, rgba(158, 203, 71, 0.1), transparent 45%),
    #f8faf5;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  filter: drop-shadow(0 12px 18px rgba(21, 31, 17, 0.08));
  transition: transform 0.35s ease;
}

.testimonial-card:hover .testimonial-image {
  transform: scale(1.04);
}

.testimonial-content {
  padding: 22px 24px 24px;
}

.testimonial-content p,
.testimonial-card p {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.55;
}

.testimonial-content span,
.testimonial-card span {
  display: inline-block;
  margin-top: 16px;
  color: #7e9465;
  font-size: 0.88rem;
  font-weight: 800;
}

/* =========================
   GIFT CARD
========================= */

.gift-card-section {
  padding: 0 0 88px;
}

.gift-card-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.gift-card-copy,
.gift-card-box {
  border-radius: var(--radius-xl);
}

.gift-card-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.gift-card-copy h2 {
  margin-top: 10px;
  max-width: 10ch;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.gift-card-copy p {
  margin-top: 14px;
  max-width: 36ch;
  color: var(--muted);
  line-height: 1.55;
}

.gift-card-points {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.gift-card-points li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
}

.gift-card-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.gift-card-cta {
  margin-top: 24px;
}

.gift-card-box {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.gift-card-media {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
  transition: transform 0.45s ease;
}

.gift-card-overlay {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: min(300px, calc(100% - 40px));
  pointer-events: none;
}

.gift-card-surface {
  width: 100%;
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(58, 79, 47, 0.26);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 26px rgba(29, 30, 26, 0.12);
  color: var(--white);
  pointer-events: auto;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.gift-card-content {
  display: grid;
}

.gift-card-content p {
  margin: 0;
  max-width: 13ch;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.28;
}

.gift-card-amounts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.gift-card-amount {
  min-height: 42px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.gift-card-amount:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 12px 24px rgba(17, 25, 18, 0.14);
}

.gift-card-amount:active {
  transform: translateY(0) scale(0.98);
}

.gift-card-box:hover .gift-card-media {
  transform: scale(1.03);
}

.gift-card-box:hover .gift-card-surface {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(29, 30, 26, 0.16);
}

/* =========================
   FAQ
========================= */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 34px 20px 0;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 1.3rem;
  color: var(--accent);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  max-width: 70ch;
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

/* =========================
   CONTACTO / FOOTER
========================= */

.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px;
}

.contact-card p:last-child {
  max-width: 60ch;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-actions {
  flex-shrink: 0;
}

.site-footer {
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.footer-inner a {
  color: var(--accent-deep);
  font-weight: 800;
}

/* =========================
   CARRITO FLOTANTE
========================= */

.floating-cart {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(231, 235, 226, 1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.98);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.floating-cart.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-cart:hover {
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.95);
}

.floating-cart:active {
  transform: translateY(0) scale(0.98);
}

.floating-cart__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.floating-cart__icon svg {
  width: 22px;
  height: 22px;
}

.floating-cart__text {
  font-weight: 800;
  font-size: 0.95rem;
}

.floating-cart__count {
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-deep);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
}

/* =========================
   POPUP PRODUCTO DESTACADO
========================= */

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.promo-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.promo-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 20, 0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.promo-popup__card {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  gap: 22px;
  padding: 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 80px rgba(21, 31, 17, 0.22);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow: hidden;
  transform: translateY(18px) scale(0.96);
  transition:
    transform 0.36s ease,
    box-shadow 0.36s ease;
}

.promo-popup.is-visible .promo-popup__card {
  transform: translateY(0) scale(1);
}

.promo-popup__card::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(158, 203, 71, 0.16);
  filter: blur(8px);
  pointer-events: none;
}

.promo-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(231, 235, 226, 0.9);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.promo-popup__close:hover {
  transform: scale(1.06);
  background: var(--white);
  color: var(--accent-deep);
}

.promo-popup__image-wrap {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(231, 235, 226, 0.9);
  box-shadow: var(--shadow-md);
}

.promo-popup__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.promo-popup__card:hover .promo-popup__image {
  transform: scale(1.04);
}

.promo-popup__content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 20px 18px 20px 4px;
}

.promo-popup__kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  color: #7e9465;
}

.promo-popup__content h2 {
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.promo-popup__content p:not(.promo-popup__kicker) {
  max-width: 34ch;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.promo-popup__btn {
  margin-top: 24px;
}

/* =========================
   RESPONSIVE - TABLET
========================= */

@media (max-width: 1180px) {
  .products-layout,
  .gift-card-layout,
  .hero-grid,
  .editorial-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
  }

  .hero-visual {
    padding: 0;
    margin-top: 24px;
  }

  .visual-note {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .mini-cards {
    grid-template-columns: 1fr;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }

  .section-note {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 920px) {
  .topbar {
    font-size: 0.8rem;
  }

  .topbar-inner {
    min-height: 36px;
    padding: 6px 0;
    justify-content: flex-start;
  }

  .topbar a {
    display: none;
  }

  .nav {
    min-height: auto;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand cart"
      "links links";
    gap: 12px;
    padding: 14px 0 10px;
  }

  .brand {
    grid-area: brand;
    display: inline-flex;
    align-items: center;
  }

  .brand-mark {
    width: 240px;
    height: 52px;
  }

  .brand-logo-full {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    transform: none;
  }

  .cart-link {
    grid-area: cart;
    justify-self: end;
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }

  .nav-links {
    grid-area: links;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 6px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 34px;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero-copy {
    padding: 20px;
    border-radius: 26px;
    background: linear-gradient(135deg, #91bf3d 0%, #a7d24b 100%);
    box-shadow: var(--shadow-md);
  }

  .hero-copy .eyebrow {
    color: rgba(255, 255, 255, 0.78);
  }

  .hero h1 {
    max-width: 7ch;
    color: var(--white);
    font-size: clamp(2.25rem, 12vw, 3.1rem);
    line-height: 0.92;
  }

  .hero-text {
    max-width: 100%;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .hero-copy .btn-primary {
    background: var(--white);
    color: #4d6822;
    box-shadow: none;
  }

  .hero-copy .btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.34);
    color: var(--white);
  }

  .hero-points {
    margin-top: 14px;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .hero-points::-webkit-scrollbar {
    display: none;
  }

  .hero-points li {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-size: 0.86rem;
  }

  .hero-visual {
    display: none;
  }

  .section-head,
  .footer-inner,
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head {
    gap: 10px;
    margin-bottom: 18px;
  }

  .section-note {
    font-size: 0.92rem;
  }

  .benefits-grid,
  .testimonials-grid,
  .mini-cards {
    grid-template-columns: 1fr;
  }
}

/* =========================
   RESPONSIVE - MOBILE
========================= */

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .topbar {
    font-size: 0.78rem;
  }

  .topbar-inner {
    min-height: auto;
    padding: 8px 0;
    gap: 4px;
    align-items: flex-start;
  }

  .topbar p {
    line-height: 1.35;
  }

  .topbar a {
    font-size: 0.8rem;
  }

  .site-header {
    z-index: 80;
  }

  .nav {
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    max-width: 220px;
  }

  .brand-mark {
    width: 210px;
    height: 48px;
  }

  .cart-link {
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .nav-links {
    gap: 8px;
    padding: 2px 0 4px;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 9px 13px;
    font-size: 0.84rem;
  }

  .hero {
    padding: 22px 0 48px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(2.45rem, 14vw, 4rem);
    line-height: 0.92;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .hero-points li {
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .hero-visual {
    display: block;
  }

  .visual-frame {
    min-height: 360px;
    padding: 0;
  }

  .visual-frame img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
  }

  .visual-note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .editorial-intro,
  .benefits-section,
  .testimonials-section,
  .faq-section,
  .contact-section {
    padding: 56px 0;
  }

  .products-section {
    padding: 64px 0 72px;
  }

  .section-head h2,
  .editorial-title h2,
  .faq-intro h2,
  .contact-card h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 0.96;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card {
    border-radius: 24px;
  }

  .product-image {
    min-height: 380px;
    aspect-ratio: 1 / 1.08;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0;
    transform: scale(1.12);
  }

  .product-card:hover .product-image img {
    transform: scale(1.16);
  }

  .product-meta {
    padding: 18px;
  }

  .product-meta h3 {
    font-size: 2rem;
    line-height: 0.98;
  }

  .product-description,
  .product-purpose {
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .product-bottom {
    align-items: baseline;
    gap: 10px;
  }

  .price,
  .price-discount {
    font-size: 1.55rem;
  }

  .stock {
    font-size: 0.92rem;
  }

  .btn-dark {
    min-height: 52px;
    font-size: 0.96rem;
  }

  .cart-panel-inner {
    padding: 18px;
    border-radius: 22px;
  }

  .cart-panel-inner h3 {
    font-size: 2rem;
  }

  .cart-subtitle {
    line-height: 1.45;
  }

  .benefit-card,
  .testimonial-card {
    min-height: auto;
  }

  .testimonial-image-wrap {
    height: 250px;
  }

  .gift-card-box,
  .gift-card-media {
    min-height: 430px;
  }

  .gift-card-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }

  .gift-card-amounts {
    grid-template-columns: 1fr;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-cart {
    left: 50%;
    right: auto;
    bottom: 14px;
    transform: translateX(-50%) translateY(16px) scale(0.98);
  }

  .floating-cart.is-visible {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .floating-cart:active {
    transform: translateX(-50%) translateY(0) scale(0.98);
  }

  .promo-popup {
    padding: 14px;
  }

  .promo-popup__card {
    width: min(100%, 420px);
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 24px;
  }

  .promo-popup__image-wrap {
    border-radius: 20px;
  }

  .promo-popup__content {
    padding: 6px 4px 8px;
  }

  .promo-popup__content h2 {
    font-size: 2.2rem;
  }

  .promo-popup__content p:not(.promo-popup__kicker) {
    font-size: 0.95rem;
    line-height: 1.45;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .brand-mark {
    width: 210px;
    height: 46px;
  }

  .editorial-copy > p {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .mini-cards {
    gap: 12px;
  }

  .mini-cards article,
  .benefit-card,
  .testimonial-card,
  .contact-card,
  .cart-panel-inner {
    border-radius: 20px;
  }

  .product-type {
    left: 10px;
    bottom: 10px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 0.62rem;
  }

  .sale-badge--inside {
    top: 10px;
    right: 10px;
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.62rem;
  }

  .product-description {
    display: -webkit-box;
    margin-top: 8px;
    overflow: hidden;
    font-size: 0.82rem;
    line-height: 1.35;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .product-purpose {
    display: -webkit-box;
    margin-top: 8px;
    overflow: hidden;
    font-size: 0.8rem;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .cart-item {
    padding: 12px;
    border-radius: 16px;
  }

  .cart-item-main {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-right: 28px;
  }

  .cart-item h4 {
    font-size: 0.88rem;
    line-height: 1.12;
  }

  .qty-controls {
    padding: 3px 6px;
  }

  .qty-controls button {
    width: 20px;
    height: 20px;
  }

  .qty-controls--inline {
    justify-self: start;
  }

  .remove-btn--icon {
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }

  .summary-row {
    font-size: 0.94rem;
  }

  .cart-panel .btn-full {
    min-height: 46px;
    font-size: 0.9rem;
  }

  .gift-card-copy {
    padding: 22px 18px;
  }

  .gift-card-copy h2 {
    max-width: 100%;
    font-size: 2rem;
    line-height: 0.98;
  }

  .gift-card-copy p {
    max-width: 100%;
    line-height: 1.5;
  }

  .gift-card-surface {
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .gift-card-content p {
    max-width: 12ch;
    font-size: 0.94rem;
    line-height: 1.22;
  }

  .gift-card-amount {
    min-height: 40px;
    padding: 0 8px;
    font-size: 0.78rem;
  }

  .faq-list summary {
    font-size: 1rem;
  }

  .floating-cart {
    height: 54px;
    padding: 0 16px;
    background: var(--accent);
    color: var(--white);
    border: 0;
  }

  .floating-cart__count {
    background: var(--white);
    color: var(--accent-deep);
  }
}

@media (max-width: 420px) {
  .brand {
    max-width: 180px;
  }

  .brand-mark {
    width: 180px;
    height: 42px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .product-image {
    min-height: 340px;
  }

  .product-meta h3 {
    font-size: 1.75rem;
  }

  .testimonial-image-wrap {
    height: 220px;
  }
}
