:root {
  --blue: #006cff;
  --blue2: #00a3ff;
  --blue-dark: #004fbf;
  --soft: #eef8ff;
  --ink: #07172b;
  --muted: #5d6d82;
  --line: #d8e9f8;
  --white: #fff;
  --green: #087f6b;
  --green-soft: #e9fff7;
  --shadow: 0 22px 60px rgba(0, 108, 255, .14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; min-height: 100%; background: #f8fcff; color: var(--ink); }
body {
  background:
    radial-gradient(circle at 88% 7%, rgba(0, 163, 255, .18), transparent 24rem),
    linear-gradient(180deg, #fff, #f5fbff);
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.topbar {
  height: 64px;
  border-bottom: 1px solid rgba(216, 233, 248, .92);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
}
.topbar-inner {
  width: min(1080px, calc(100% - 28px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 14px; }
.mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  font-size: 9px;
  letter-spacing: .01em;
  box-shadow: 0 8px 22px rgba(0, 108, 255, .22);
}
.lang { display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.lang button {
  border: 0;
  background: transparent;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.lang button.active { background: var(--blue); color: #fff; }

.product-shell { min-height: calc(100dvh - 64px); padding: 32px 0 72px; }
.product-page {
  width: min(1080px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.product-hero {
  display: grid;
  grid-template-columns: minmax(290px, .92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow);
}
.visual {
  position: relative;
  min-height: 410px;
  background: linear-gradient(145deg, #e6f5ff, #d9efff);
  overflow: hidden;
}
.visual img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 14px; }
.visual::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .8), transparent);
}
.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}
.back {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 850;
}
.back:hover { opacity: .72; }
.meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.badge {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 900;
}
.dose { color: var(--muted); font-size: 13px; font-weight: 800; }
h1, h2, p { margin-top: 0; }
h1 { margin: 0 0 12px; font-size: clamp(36px, 5vw, 56px); line-height: 1; letter-spacing: 0; }
.definition { margin: 0 0 19px; color: var(--muted); font-size: 16px; line-height: 1.55; max-width: 620px; }
.summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.presentation { font-size: 14px; font-weight: 850; }
.price { text-align: right; }
.price strong { display: block; font-size: 25px; line-height: 1; }
.price span { color: var(--muted); font-size: 12px; font-weight: 750; }

.page-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.page-steps a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  color: #24415f;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 108, 255, .055);
}
.page-steps a:hover { border-color: rgba(0, 108, 255, .36); background: var(--soft); }

.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; align-items: stretch; }
.info-block {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 34px rgba(8, 21, 38, .055);
}
.section-number {
  width: max-content;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 950;
}
.info-block h2 { margin-bottom: 10px; font-size: 21px; line-height: 1.12; letter-spacing: 0; }
.info-block p { color: var(--muted); font-size: 14px; line-height: 1.5; }
.research-title { margin: 16px 0 9px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: #24415f;
  font-size: 12px;
  font-weight: 800;
}
.community-panel {
  border-color: rgba(0, 108, 255, .32);
  background: linear-gradient(180deg, #f4fbff, #fff);
  box-shadow: 0 18px 42px rgba(0, 108, 255, .11);
}
.community-panel .section-number {
  background: #e7f5ff;
  color: var(--blue);
}
.community-panel h2 { color: #07172b; }
.community-list {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.community-list li {
  position: relative;
  padding-left: 19px;
  color: #435871;
  font-size: 14px;
  line-height: 1.48;
}
.community-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--blue2);
}
.source-links {
  margin: auto 0 0;
  padding-top: 16px;
  font-size: 11px !important;
  font-weight: 800;
}
.source-links a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.detail-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--blue);
}
.detail-list li.shipping-ok { color: #24415f; font-weight: 850; }
.detail-list li.shipping-ok::before { background: var(--green); }
.contact-panel { border-color: rgba(0, 108, 255, .28); background: linear-gradient(180deg, #fff, #f1f9ff); }
.channel-actions { display: grid; gap: 10px; margin-top: auto; }
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 13px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 108, 255, .18);
}
.cta:hover { transform: translateY(-1px); }
.cta.whatsapp { background: linear-gradient(135deg, #0c9f6f, #16c784); }
.cta.instagram { background: linear-gradient(135deg, #833ab4, #e1306c 55%, #f77737); }
.close-note { margin: 13px 0 0; text-align: center; color: #6f8094; font-size: 11px; font-weight: 750; }

@media (max-width: 920px) {
  .product-hero { grid-template-columns: 1fr; }
  .visual { min-height: 0; height: 300px; }
  .content { justify-content: flex-start; }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topbar { height: 58px; }
  .brand span:last-child { display: none; }
  .product-shell { min-height: calc(100dvh - 58px); padding: 12px 0 42px; }
  .product-page { width: calc(100% - 20px); gap: 12px; }
  .product-hero { border-radius: 20px; }
  .visual { height: 210px; }
  .visual img { max-height: 210px; padding: 10px; }
  .content { padding: 18px; }
  .back { margin-bottom: 11px; }
  h1 { font-size: clamp(31px, 9vw, 41px); margin-bottom: 8px; }
  .definition { font-size: 14px; line-height: 1.43; margin-bottom: 13px; }
  .summary { grid-template-columns: 1fr; gap: 9px; align-items: start; }
  .price { text-align: left; }
  .page-steps { grid-template-columns: 1fr; gap: 8px; }
  .page-steps a { justify-content: flex-start; min-height: 42px; }
  .info-block { padding: 18px; border-radius: 18px; }
  .cta { min-height: 46px; }
}


/* v24.5.1 · community perspectives and text-based product visual */
.visual-placeholder{min-height:330px;border-radius:22px;background:radial-gradient(circle at 50% 20%,#fff 0,#edf5ff 42%,#d8e9ff 100%);display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative;overflow:hidden}.visual-placeholder:before{content:"";position:absolute;width:125px;height:225px;border-radius:24px 24px 38px 38px;background:linear-gradient(#fff,#d9e4ef);box-shadow:0 25px 55px rgba(26,58,96,.2)}.visual-placeholder span,.visual-placeholder strong,.visual-placeholder em{position:relative;z-index:1}.visual-placeholder span{font-weight:900;letter-spacing:.2em;color:#006cff}.visual-placeholder strong{margin-top:55px;font-size:1.35rem}.visual-placeholder em{font-style:normal;color:#526276;margin-top:5px}.visual-placeholder.mots{background:radial-gradient(circle at 50% 20%,#fff 0,#effcff 42%,#d7f5f0 100%)}
.community-intro{margin:0 0 18px;color:#42546b;line-height:1.65}.perspective-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.perspective-card{background:#fff;border:1px solid #dce6f1;border-radius:16px;padding:15px}.perspective-card h3{margin:0 0 9px;font-size:.95rem;color:#07172b}.perspective-card ul{margin:0;padding-left:18px;color:#42546b}.perspective-card li{margin:0 0 7px;line-height:1.45}.perspective-card.shared{background:#f4fbf8;border-color:#cde9dc}.community-caveat{margin:17px 0 0;padding:13px 15px;border-radius:13px;background:#f3f7fb;color:#526276;font-size:.86rem;line-height:1.55}.source-links{margin-top:15px!important}.source-links a{display:inline-block;margin-right:8px;margin-bottom:5px}.price.pending strong{font-size:1.05rem}.price.pending span{font-size:.8rem}@media(max-width:760px){.perspective-grid{grid-template-columns:1fr}.visual-placeholder{min-height:260px}}


/* v24.6.0 · Certificación Comercial 02 · Premium Product Experience */
body[data-line="metabolic"]{--accent:#0c8f78;--accent-soft:#e9fbf6;--accent-rgb:12,143,120}
body[data-line="recovery"]{--accent:#1769d2;--accent-soft:#eaf3ff;--accent-rgb:23,105,210}
body[data-line="regenerative"]{--accent:#7b4cc4;--accent-soft:#f3edff;--accent-rgb:123,76,196}
body[data-line="body"]{--accent:#c76b20;--accent-soft:#fff1e7;--accent-rgb:199,107,32}
body[data-line] .product-hero{border-color:rgba(var(--accent-rgb),.24);box-shadow:0 24px 70px rgba(var(--accent-rgb),.14)}
body[data-line] .visual{background:linear-gradient(145deg,var(--accent-soft),#fff)}
body[data-line] .visual-placeholder{background:radial-gradient(circle at 50% 18%,#fff 0,var(--accent-soft) 48%,rgba(var(--accent-rgb),.2) 100%)}
body[data-line] .visual-placeholder span{color:var(--accent)}
body[data-line] .badge,body[data-line] .section-number{background:var(--accent-soft);color:var(--accent)}
.premium-strip{display:flex;flex-wrap:wrap;gap:7px;margin:0 0 14px}
.premium-strip span{display:inline-flex;align-items:center;min-height:28px;padding:5px 9px;border-radius:999px;border:1px solid rgba(var(--accent-rgb),.22);background:var(--accent-soft);color:var(--accent);font-size:11px;font-weight:900}
.premium-strip .reading{background:#fff;color:#51647a;border-color:var(--line)}
.evidence-band{margin-top:15px;padding:11px 13px;border-left:3px solid var(--accent);border-radius:10px;background:var(--accent-soft);color:#30465f;font-size:12px;font-weight:850}
.premium-info-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.perspective-grid{display:grid;gap:10px;margin-top:14px}
.perspective-card{padding:14px;border:1px solid rgba(var(--accent-rgb),.18);border-radius:15px;background:#fff}
.perspective-card h3{margin:0 0 8px;font-size:14px;color:var(--accent)}
.perspective-card ul{margin:0;padding-left:18px;color:#4d6279;font-size:13px;line-height:1.52}
.perspective-card.shared{background:var(--accent-soft)}
.community-caveat{margin-top:13px!important;padding:11px;border-radius:11px;background:#f7fafc;font-size:11px!important}
.explore-panel{border-color:rgba(var(--accent-rgb),.25);background:linear-gradient(180deg,#fff,var(--accent-soft))}
.explore-cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:auto}
.explore-card{display:flex;flex-direction:column;gap:5px;min-height:100px;padding:15px;border:1px solid rgba(var(--accent-rgb),.22);border-radius:15px;background:#fff;transition:.18s ease}
.explore-card:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(var(--accent-rgb),.13)}
.explore-card strong{color:var(--accent);font-size:14px}.explore-card span{color:#5d6d82;font-size:12px;line-height:1.4}
@media(max-width:920px){.premium-info-grid{grid-template-columns:1fr}.page-steps[style]{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media(max-width:640px){.premium-strip{margin-bottom:10px}.page-steps[style]{grid-template-columns:1fr!important}.explore-cards{grid-template-columns:1fr}.evidence-band{font-size:11px}}
