:root {
  --bg: #f7f3ea;
  --surface: rgba(255, 251, 245, 0.82);
  --surface-strong: #fffaf2;
  --surface-dark: #233127;
  --surface-deep: #162118;
  --line: rgba(64, 86, 60, 0.14);
  --line-strong: rgba(216, 184, 122, 0.24);
  --text: #1f2922;
  --muted: #5e6f64;
  --botanic: #4f6a45;
  --botanic-deep: #243326;
  --leaf: #829a68;
  --gold: #c7a86b;
  --gold-soft: #e7d4ad;
  --shadow-soft: 0 24px 60px rgba(26, 36, 27, 0.12);
  --shadow-card: 0 18px 42px rgba(30, 37, 26, 0.1);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --content: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.bg-layer,
.grain-layer,
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bg-layer {
  z-index: -4;
  background:
    radial-gradient(circle at 10% 10%, rgba(199, 168, 107, 0.16), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(130, 154, 104, 0.2), transparent 30%),
    linear-gradient(180deg, #f6f1e8 0%, #f8f6f0 52%, #f3efe5 100%);
}

.grain-layer {
  z-index: -3;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
}

.ambient {
  z-index: -2;
  filter: blur(70px);
  opacity: 0.55;
}

.ambient-one {
  top: 10%;
  left: -10%;
  width: 38vw;
  height: 38vw;
  background: rgba(207, 192, 154, 0.38);
  animation: drift 15s ease-in-out infinite;
}

.ambient-two {
  inset: auto -8% 8% auto;
  width: 28vw;
  height: 28vw;
  background: rgba(128, 155, 113, 0.24);
  animation: drift 18s ease-in-out infinite reverse;
}

.container {
  width: var(--content);
  margin: 0 auto;
}

.top-note {
  position: relative;
  z-index: 3;
  padding: 12px 18px;
  text-align: center;
  color: #fbf7ef;
  background: linear-gradient(90deg, #334632, #5d7555 55%, #8c7a59 100%);
  letter-spacing: 0.02em;
}

.top-note p {
  margin: 0;
  font-size: 0.92rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  padding: 8px 0;
  background: rgba(247, 243, 234, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(90, 110, 83, 0.08);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  min-height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.7);
  backdrop-filter: blur(22px);
  box-shadow: 0 14px 30px rgba(27, 34, 24, 0.06);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 4px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.96), rgba(236, 220, 189, 0.88));
  border: 1px solid rgba(198, 166, 108, 0.52);
  box-shadow:
    0 12px 24px rgba(29, 39, 29, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #f4f0e8;
  border: 2px solid rgba(255, 255, 255, 0.88);
  filter: saturate(0.96) contrast(1.04);
}

.logo-fallback {
  display: none;
  place-items: center;
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fbf7ef;
  background: linear-gradient(145deg, #41553d, #1d2a1f);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.62rem;
  letter-spacing: -0.01em;
  color: var(--botanic-deep);
}

.brand-text small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(57, 72, 57, 0.78);
  font-weight: 700;
}

.main-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.main-menu a {
  position: relative;
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.main-menu a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: transform 0.26s ease;
}

.main-menu a:hover {
  color: var(--botanic-deep);
  background: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.main-menu a:hover::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
}

.cart-pill,
.btn,
.card-foot button,
.remove-item,
.carousel-btn {
  transition: transform 0.26s ease, box-shadow 0.26s ease, filter 0.26s ease, background 0.26s ease;
}

.cart-pill {
  position: relative;
  overflow: hidden;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 10px;
  border-radius: var(--radius-pill);
  color: #fffaf3;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, #334636 0%, #1d2d20 64%, #7a6545 128%);
  box-shadow: 0 12px 26px rgba(27, 36, 25, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.cart-pill:hover,
.btn:hover,
.card-foot button:hover,
.carousel-btn:hover,
.remove-item:hover {
  transform: translateY(-2px);
}

.cart-pill::after {
  content: "";
  position: absolute;
  inset: -20% -45%;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.26) 50%, transparent 62%);
  transform: translateX(-120%) rotate(5deg);
  transition: transform 0.8s ease;
}

.cart-pill:hover::after {
  transform: translateX(120%) rotate(5deg);
}

.cart-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fbf6ee;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.28s ease, background 0.28s ease;
}

.cart-icon svg {
  width: 18px;
  height: 18px;
}

.cart-label {
  position: relative;
  z-index: 1;
}

.cart-pill strong {
  min-width: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  text-align: center;
  color: var(--botanic-deep);
  background: #f0dfbd;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: transform 0.28s ease, background 0.28s ease;
}

.cart-pill:hover .cart-icon {
  transform: translateY(-1px) rotate(-10deg) scale(1.05);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08));
}

.cart-pill:hover strong {
  transform: scale(1.08);
  background: #f3e3c5;
}

.cart-pill:active {
  transform: translateY(0);
}

.cart-pill:active .cart-icon {
  transform: scale(0.96);
}

.hero {
  position: relative;
  min-height: 88vh;
  padding: 120px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Imagen de fondo del hero */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  display: block;
}

/* Overlay oscuro sobre la imagen */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(4, 10, 5, 0.72) 0%,
    rgba(6, 14, 8, 0.50) 45%,
    rgba(4, 10, 5, 0.78) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.88fr);
  gap: 20px;
  align-items: stretch;
}

.hero-main,
.hero-side,
.showcase-grid article,
.benefits-grid article,
.product-card,
.story-card,
.story-grid article,
.cta-shell,
.cart-drawer,
.carousel {
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-soft);
}

.hero-main,
.hero-side,
.showcase-grid article,
.benefits-grid article,
.product-card,
.story-card,
.story-grid article,
.cta-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.88), rgba(255, 248, 239, 0.76));
  backdrop-filter: blur(16px);
}

.hero-main {
  min-height: 560px;
  padding: 56px;
  background: linear-gradient(
    155deg,
    rgba(14, 26, 16, 0.92) 0%,
    rgba(28, 48, 30, 0.86) 100%
  );
  border-color: rgba(255, 255, 255, 0.10);
}

.hero h1 {
  color: #fff;
  max-width: none;
}

.hero .eyebrow {
  color: #9fc27a;
}

.hero .hero-copy {
  color: rgba(248, 244, 235, 0.82);
  max-width: 66ch;
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero collagen pill tags ── */
.hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-tags span {
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8d9a8;
  background: rgba(199, 168, 107, 0.14);
  border: 1px solid rgba(199, 168, 107, 0.36);
}

/* ── Hero benefit perks ── */
.hero-perks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  flex-wrap: wrap;
  margin: 28px 0 0;
}

.hero-perks span {
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(248, 244, 235, 0.88);
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-perks em {
  font-style: normal;
  color: var(--gold);
  font-size: 0.68rem;
}

/* ── Golden primary CTA ── */
.btn-golden {
  color: #12220c;
  background: linear-gradient(135deg, #e8c96a 0%, #c8a23c 50%, #e6d088 100%);
  box-shadow: 0 16px 36px rgba(199, 168, 107, 0.44);
  padding: 16px 30px;
  font-size: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-golden:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(199, 168, 107, 0.58);
}

/* ── Ghost secondary CTA ── */
.btn-ghost-light {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 16px 30px;
  font-size: 1rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
}

/* ── Hero metrics override for dark hero ── */
.hero .hero-metrics {
  margin-top: 54px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero .hero-metrics div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
  text-align: center;
}

.hero .hero-metrics strong {
  color: var(--gold);
  font-size: 2rem;
}

.hero .hero-metrics span {
  color: rgba(248, 244, 235, 0.62);
}

.hero-main::before,
.product-card::before,
.cta-shell::before,
.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.46) 50%, transparent 78%);
  transform: translateX(-130%);
  transition: transform 0.9s ease;
}

.hero-main:hover::before,
.product-card:hover::before,
.cta-shell:hover::before,
.story-card:hover::before {
  transform: translateX(130%);
}

.eyebrow,
.badge,
.strip-label,
.slide-kicker,
.light {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow,
.strip-label,
.slide-kicker {
  color: var(--botanic);
}

.badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  color: #eff6e8;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero h1,
.section-title h2,
.story-grid h2,
.cta-shell h2,
.slide-content h3,
.site-footer h4,
.benefits-grid h3,
.product-card h3,
.showcase-grid h3,
.hero-side h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(3.8rem, 7vw, 7.4rem);
  line-height: 1.02;
}

.hero-copy {
  max-width: 62ch;
  font-size: 1.04rem;
  line-height: 1.86;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border: 0;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.btn-dark {
  color: #fffaf3;
  background: linear-gradient(135deg, #263628 0%, #465742 55%, #866c48 115%);
  box-shadow: 0 16px 28px rgba(34, 45, 33, 0.16);
}

.btn-light {
  color: var(--botanic-deep);
  background: rgba(255, 251, 244, 0.86);
  border: 1px solid rgba(80, 102, 71, 0.16);
}

.btn-cream {
  color: var(--botanic-deep);
  background: linear-gradient(135deg, #fff6e4, #ecd7b1);
  box-shadow: 0 18px 34px rgba(23, 30, 24, 0.18);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.hero-metrics div {
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.6rem;
  font-weight: 800;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-glow {
  position: absolute;
  inset: auto -80px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 168, 107, 0.34), transparent 70%);
  filter: blur(16px);
}

.hero-side {
  padding: 34px 30px;
  color: #f8f4eb;
  background:
    linear-gradient(180deg, rgba(34, 48, 35, 0.96), rgba(24, 35, 25, 0.98)),
    radial-gradient(circle at 80% 10%, rgba(232, 209, 165, 0.16), transparent 34%);
}

.hero-side h2 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.96;
}

.hero-side p,
.hero-side li {
  color: rgba(248, 244, 235, 0.84);
  line-height: 1.76;
}

.hero-side ul {
  margin: 0;
  padding-left: 18px;
}

.hero-quote {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-quote span {
  width: 34px;
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.showcase-strip,
.carousel-area,
.benefits,
.catalog,
.story-panel,
.cta-band {
  padding: 18px 0 28px;
}

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

.showcase-grid article {
  padding: 22px 24px;
}

.showcase-grid h3 {
  margin: 10px 0 0;
  font-size: 2rem;
  line-height: 0.95;
}

.section-title {
  display: grid;
  gap: 8px;
}

.section-title h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.7rem, 5vw, 4.25rem);
  line-height: 0.95;
}

.section-title p:last-child {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.carousel {
  margin-top: 18px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.58);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
  position: relative;
  min-width: 100%;
  min-height: 560px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide-deco {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 168, 107, 0.18), transparent 66%);
  pointer-events: none;
}

.slide-deco::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 154, 104, 0.14), transparent 70%);
}

.slide-deco::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(199, 168, 107, 0.22);
}

/* Colágeno / piel — foto spa y cuidado de piel */
.slide-one {
  background:
    linear-gradient(180deg, rgba(8, 15, 10, 0.36) 0%, rgba(8, 15, 10, 0.52) 60%, rgba(8, 15, 10, 0.68) 100%),
    url("https://images.unsplash.com/photo-1556228578-8c89e6adf883?auto=format&fit=crop&w=1400&q=85") center/cover;
}

/* Batidos naturales / jugos / detox */
.slide-two {
  background:
    linear-gradient(180deg, rgba(6, 18, 10, 0.30) 0%, rgba(6, 18, 10, 0.50) 60%, rgba(6, 18, 10, 0.66) 100%),
    url("https://images.unsplash.com/photo-1610970881699-44a5587cabec?auto=format&fit=crop&w=1400&q=85") center/cover;
}

/* Proteínas / suplementos / fitness */
.slide-three {
  background:
    linear-gradient(180deg, rgba(10, 14, 18, 0.30) 0%, rgba(10, 14, 18, 0.50) 60%, rgba(10, 14, 18, 0.66) 100%),
    url("https://images.unsplash.com/photo-1534258936925-c58bed479fcb?auto=format&fit=crop&w=1400&q=85") center/cover;
}

/* Bienestar integral / alimentos naturales */
.slide-four {
  background:
    linear-gradient(180deg, rgba(8, 18, 10, 0.30) 0%, rgba(8, 18, 10, 0.50) 60%, rgba(8, 18, 10, 0.66) 100%),
    url("https://images.unsplash.com/photo-1498837167922-ddd27525d352?auto=format&fit=crop&w=1400&q=85") center/cover;
}

.slide-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  color: #fff9f2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide-content .slide-kicker {
  color: var(--gold-soft);
  margin-top: 6px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  margin-bottom: 10px;
  border-radius: var(--radius-pill);
  background: rgba(199, 168, 107, 0.16);
  border: 1px solid rgba(199, 168, 107, 0.4);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
}

.slide-content h3 {
  margin: 14px 0 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.90;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.32);
}

.slide-divider {
  width: 48px;
  height: 2px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.slide-perks {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.slide-perks li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 249, 242, 0.90);
  line-height: 1.3;
  background: rgba(0, 0, 0, 0.22);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-perks li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 7px rgba(199, 168, 107, 0.6);
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  background: rgba(199, 168, 107, 0.88);
  color: #1a2218;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
  box-shadow: 0 8px 22px rgba(199, 168, 107, 0.28);
}

.slide-cta:hover {
  background: #d4b47a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(199, 168, 107, 0.38);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #fff9f2;
  background: rgba(24, 32, 24, 0.55);
  backdrop-filter: blur(12px);
}

.prev {
  left: 18px;
}

.next {
  right: 18px;
}

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

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 250, 242, 0.52);
  transition: width 0.26s ease, background 0.26s ease;
}

.carousel-dots button.active {
  width: 28px;
  background: #fff9f2;
}

.benefits-grid,
.product-grid,
.story-grid,
.footer-grid {
  display: grid;
  gap: 16px;
}

.benefits-grid {
  margin-top: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefits-grid article {
  padding: 28px;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 24px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #e7d4ad 0%, #f7f3ea 100%);
  box-shadow: 0 2px 12px rgba(199, 168, 107, 0.10);
  border: 2.5px solid var(--gold-soft);
  transition: background 0.22s, color 0.22s;
}

.benefit-icon i {
  font-size: 2.2rem;
  color: var(--botanic-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
}

.benefit-leaf i {
  color: #4f6a45;
}
.benefit-heart i {
  color: #e57373;
}
.benefit-chat i {
  color: #3b5c4a;
}
}

.benefit-leaf {
  color: var(--botanic);
  background: linear-gradient(135deg, #e7f5d8 0%, #f7f3ea 100%);
}
.benefit-heart {
  color: #e57373;
  background: linear-gradient(135deg, #ffe5e5 0%, #f7f3ea 100%);
}
.benefit-chat {
  color: #4f6a45;
  background: linear-gradient(135deg, #e0f7fa 0%, #f7f3ea 100%);
}

.naturista-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.naturista-benefits article {
  background: var(--surface-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 36px 28px 30px 28px;
  text-align: center;
  transition: box-shadow 0.22s, transform 0.22s;
  border: 1.5px solid var(--line-strong);
}

.naturista-benefits article:hover {
  box-shadow: 0 8px 32px rgba(76, 110, 80, 0.13);
  transform: translateY(-4px) scale(1.025);
  border-color: var(--gold);
}

.naturista-benefits h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--botanic-deep);
}

.naturista-benefits p {
  color: var(--muted);
  font-size: 1.04rem;
  margin-bottom: 0;
}

.benefits-grid h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 0.96;
}

.benefits-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.product-grid {
  margin-top: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-media {
  height: 220px;
  margin-bottom: 16px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -80px 80px rgba(10, 18, 10, 0.08);
}

.product-media-one {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(26, 30, 21, 0.16)), url("https://images.unsplash.com/photo-1584308666744-24d5c474f2ae?auto=format&fit=crop&w=900&q=80");
}

.product-media-two {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(26, 30, 21, 0.16)), url("https://images.unsplash.com/photo-1571781926291-c477ebfd024b?auto=format&fit=crop&w=900&q=80");
}

.product-media-three {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(26, 30, 21, 0.16)), url("https://images.unsplash.com/photo-1526947425960-945c6e72858f?auto=format&fit=crop&w=900&q=80");
}

.product-media-four {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(26, 30, 21, 0.16)), url("https://images.unsplash.com/photo-1512290923902-8a9f81dc236c?auto=format&fit=crop&w=900&q=80");
}

.product-media-five {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(26, 30, 21, 0.16)), url("https://images.unsplash.com/photo-1490645935967-10de6ba17061?auto=format&fit=crop&w=900&q=80");
}

.product-media-six {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(26, 30, 21, 0.16)), url("https://images.unsplash.com/photo-1611078489935-0cb964de46d6?auto=format&fit=crop&w=900&q=80");
}

.chip {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  color: var(--botanic);
  background: rgba(130, 154, 104, 0.14);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.product-card h3 {
  margin: 14px 0 10px;
  font-size: 2.1rem;
  line-height: 0.96;
}

.product-card p {
  margin: 0;
  min-height: 84px;
  color: var(--muted);
  line-height: 1.76;
}

.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.card-foot strong {
  font-size: 1.1rem;
}

.card-foot button {
  border: 0;
  padding: 11px 14px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  color: #fff8f0;
  background: linear-gradient(135deg, #304130, #6c865f 75%, #ae9060 120%);
  box-shadow: 0 14px 24px rgba(32, 41, 31, 0.14);
}

/* ─── Catalog category tabs ─── */
.cat-tabs {
  display: flex;
  gap: 6px;
  margin-top: 32px;
  flex-wrap: wrap;
  border-bottom: 1.5px solid var(--line-strong);
}

.cat-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 22px;
  border: 0;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: transparent;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.22s ease, background 0.22s ease;
  white-space: nowrap;
}

.cat-tab::after {
  content: "";
  position: absolute;
  bottom: -1.5px;
  left: 0;
  right: 0;
  height: 2.5px;
  background: transparent;
  border-radius: 2px 2px 0 0;
  transition: background 0.22s ease;
}

.cat-tab:hover {
  color: var(--botanic);
  background: rgba(79, 106, 69, 0.06);
}

.cat-tab.active {
  color: var(--botanic-deep);
  background: rgba(199, 168, 107, 0.12);
}

.cat-tab.active::after {
  background: var(--gold);
}

/* ─── Catalog tab panels ─── */
.cat-panel {
  display: none;
}

.cat-panel.active {
  display: block;
  animation: panelFadeIn 0.32s ease both;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── 4-column grid for proteins ─── */
.product-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ─── Per-product actions row ─── */
.card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ─── WhatsApp buy button on each card ─── */
.btn-wa-prod {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: #fff;
  background: linear-gradient(135deg, #0a7a35 0%, #25d366 100%);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-wa-prod:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.40);
}

/* ─── Product media gradient placeholders ─── */
.pm-fibra {
  background: linear-gradient(135deg, #d4edda 0%, #a8d5b5 50%, #6abf82 100%);
}

.pm-batido-vainilla {
  background: linear-gradient(135deg, #fff9e6 0%, #fce8a0 50%, #f5c842 100%);
}

.pm-batido-verde {
  background: linear-gradient(135deg, #c8e6c9 0%, #81c784 50%, #388e3c 100%);
}

.pm-colageno {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 50%, #e91e7a 80%);
  background: linear-gradient(135deg, #fde8f0 0%, #f9c4d8 50%, #e8809f 100%);
}

.pm-jarabe {
  background: linear-gradient(135deg, #fff8e1 0%, #ffcc80 50%, #ef8c00 100%);
}

.pm-vitacerebrina {
  background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 50%, #7986cb 100%);
}

/* ─── Asset-based product media ─── */
.pm-asset {
  background-color: #f0ede6;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.story-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: stretch;
}

.story-grid article,
.story-card {
  padding: 32px;
}

.story-grid h2,
.cta-shell h2 {
  margin: 14px 0 12px;
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  line-height: 0.94;
}

.story-grid article p:last-child,
.cta-shell p:last-of-type {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.story-card {
  display: grid;
  align-content: space-between;
  background: linear-gradient(180deg, rgba(43, 57, 42, 0.96), rgba(25, 35, 26, 0.96));
  color: #f8f3ea;
}

.story-card p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.story-card span {
  margin-top: 28px;
  color: rgba(248, 243, 234, 0.72);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.cta-band {
  padding-bottom: 48px;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 34px;
  color: #f9f6ee;
  background:
    linear-gradient(125deg, rgba(29, 42, 31, 0.96), rgba(56, 72, 53, 0.94) 58%, rgba(141, 117, 76, 0.94) 130%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.22), transparent 32%);
}

.cta-shell h2,
.cta-shell p,
.light {
  color: #f9f6ee;
}

.cart-drawer {
  position: fixed;
  top: 12px;
  right: -430px;
  width: min(400px, calc(100vw - 18px));
  height: calc(100vh - 24px);
  padding: 20px;
  z-index: 90;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  gap: 12px;
  background: rgba(255, 250, 242, 0.88);
  border-radius: 28px;
  backdrop-filter: blur(20px);
  transition: right 0.32s ease;
}

.cart-drawer.open {
  right: 12px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.cart-header button {
  border: 0;
  background: transparent;
  font-size: 1.15rem;
  cursor: pointer;
}

.cart-items {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
  border-top: 1px solid rgba(56, 73, 53, 0.08);
  border-bottom: 1px solid rgba(56, 73, 53, 0.08);
}

.cart-items li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 2px;
  border-bottom: 1px dashed rgba(56, 73, 53, 0.12);
}

.cart-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-line small {
  color: var(--muted);
}

.remove-item {
  border: 0;
  padding: 7px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--botanic-deep);
  background: rgba(130, 154, 104, 0.15);
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.06rem;
  font-weight: 800;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  background: rgba(20, 27, 20, 0.36);
  backdrop-filter: blur(4px);
  transition: opacity 0.24s ease;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ── WhatsApp Floating Button ─────────────────────────── */
.wa-wrap {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 999;
  animation: waSlideIn 0.55s 1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Ripple ring rendered outside the button's overflow clip */
.wa-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 29px;
  background: rgba(37, 211, 102, 0.4);
  animation: waPulse 2.4s 2s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}

.whatsapp-float {
  position: relative;
  display: flex;
  align-items: center;
  height: 58px;
  width: 58px;
  border-radius: 29px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #25d366 0%, #0ea34a 100%);
  box-shadow:
    0 8px 28px rgba(18, 140, 74, 0.44),
    0 2px 8px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition:
    width 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  white-space: nowrap;
}

.wa-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.16));
}
.wa-icon svg {
  width: 1.9rem;
  height: 1.9rem;
}

.wa-label {
  padding-right: 22px;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-float:hover {
  width: 172px;
  box-shadow:
    0 16px 40px rgba(18, 140, 74, 0.54),
    0 4px 12px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.whatsapp-float:hover .wa-icon {
  transform: scale(1.1) rotate(-10deg);
}

.whatsapp-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}

.site-footer {
  padding-top: 14px;
  color: #edf2e8;
  background: linear-gradient(180deg, #1b261d 0%, #101712 100%);
}

.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 22px 0 0;
}

.site-footer h4 {
  margin: 0 0 10px;
  font-size: 1.8rem;
  line-height: 0.96;
}

.site-footer p,
.site-footer a {
  margin: 0 0 8px;
  color: rgba(237, 242, 232, 0.74);
  text-decoration: none;
  line-height: 1.7;
}

.copy {
  margin: 18px 0 0;
  padding: 16px 12px 20px;
  text-align: center;
  font-size: 0.86rem;
  color: rgba(237, 242, 232, 0.56);
  border-top: 1px solid rgba(237, 242, 232, 0.08);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="left"] {
  transform: translateX(38px);
}

[data-reveal="right"] {
  transform: translateX(-38px);
}

[data-reveal].visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, -18px, 0) scale(1.06);
  }
}

@keyframes pulseFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 30px rgba(18, 99, 49, 0.22);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 24px 38px rgba(18, 99, 49, 0.28);
  }
}

@keyframes waSlideIn {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.52;
  }
  70% {
    transform: scale(1.78);
    opacity: 0;
  }
  100% {
    transform: scale(1.78);
    opacity: 0;
  }
}

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

.cart-pill .cart-icon {
  animation: cartBreath 2.6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-grid,
  .cta-shell {
    grid-template-columns: 1fr;
  }

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

  .benefits-grid,
  .showcase-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-main {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 10px 0;
  }

  .nav-shell {
    grid-template-columns: auto auto auto;
    position: relative;
  }

  .hamburger {
    display: inline-block;
    justify-self: center;
  }

  .main-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 250, 242, 0.94);
    box-shadow: 0 18px 34px rgba(26, 35, 25, 0.08);
    transition: max-height 0.28s ease;
  }

  .main-menu.open {
    max-height: 360px;
  }

  .main-menu a {
    padding: 16px 20px;
    border-radius: 0;
    border-top: 1px solid rgba(64, 86, 60, 0.08);
  }

  .hero-main,
  .hero-side,
  .story-grid article,
  .story-card,
  .cta-shell,
  .benefits-grid article,
  .showcase-grid article {
    padding: 28px;
  }

  .hero h1,
  .section-title h2,
  .story-grid h2,
  .cta-shell h2,
  .slide-content h3 {
    max-width: none;
  }

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

@media (max-width: 620px) {
  :root {
    --content: min(100% - 24px, 1180px);
  }

  .top-note p {
    font-size: 0.84rem;
  }

  .nav-shell {
    padding: 0 14px;
    min-height: 74px;
  }

  .logo,
  .logo-wrap {
    width: 52px;
    height: 52px;
  }

  .brand-text strong {
    font-size: 1.25rem;
  }

  .brand-text small {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .cart-pill {
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 100svh;
    padding: 90px 0 60px;
    background-position: center center;
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero-main,
  .hero-side,
  .product-card,
  .story-grid article,
  .story-card,
  .cta-shell {
    border-radius: 24px;
  }

  .hero-main,
  .hero-side {
    padding: 24px 22px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 11vw, 4.6rem);
    line-height: 1.06;
  }

  .hero-tags {
    margin-bottom: 20px;
  }

  .hero-perks {
    gap: 8px 18px;
  }

  .section-title h2,
  .story-grid h2,
  .cta-shell h2 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .slide {
    min-height: 420px;
    padding: 36px 24px;
    align-items: center;
    justify-content: center;
  }

  .slide-deco {
    width: 280px;
    height: 280px;
    top: -60px;
    right: -60px;
  }

  .slide-badge {
    font-size: 0.62rem;
    padding: 5px 11px;
  }

  .slide-content h3 {
    font-size: clamp(2.4rem, 9vw, 3.6rem);
  }

  .slide-perks {
    gap: 6px 12px;
    margin: 14px 0 22px;
  }

  .slide-perks li {
    font-size: 0.78rem;
    padding: 4px 10px;
  }

  .slide-cta {
    padding: 10px 22px;
    font-size: 0.8rem;
  }

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

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

  .cat-tabs {
    gap: 4px;
  }

  .cat-tab {
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  .card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-wa-prod {
    justify-content: center;
  }

  .product-media {
    height: 190px;
  }

  .card-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-drawer {
    top: 8px;
    right: -102vw;
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    padding: 18px;
    border-radius: 24px;
  }

  .cart-drawer.open {
    right: 8px;
  }

  .wa-wrap {
    right: 14px;
    bottom: 18px;
  }

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

  .wa-icon {
    width: 54px;
    height: 54px;
    font-size: 1.78rem;
  }

  .wa-label {
    display: none;
  }
}
