:root{
  /* Paleta basada en el logo */
  --brand:#F860A8;
  --brand2:#FF7DBB;
  --brandDark:#C93478;

  --bg:#F8E8F0;
  --surface:rgba(255,255,255,.78);
  --card:#ffffff;

  --ink:#1B1020;
  --muted:#6E5B69;

  --line:rgba(27,16,32,.10);
  --shadow:0 18px 45px rgba(27,16,32,.12);
  --shadowSoft:0 12px 28px rgba(27,16,32,.10);

  --radiusXL:26px;
  --radiusLG:18px;
  --radiusMD:14px;

  --container:min(1120px, 92vw);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  color:var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(248,96,168,.18), transparent 55%),
    radial-gradient(900px 500px at 85% 8%, rgba(255,125,187,.18), transparent 55%),
    linear-gradient(180deg, var(--bg), #fff 45%, var(--bg));
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

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

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
  background:#fff; border:1px solid var(--line); border-radius:12px;
  z-index:9999;
}

/* ===== Header ===== */
.header{
  position:sticky; top:0; z-index:999;
  backdrop-filter: blur(14px);
  background: rgba(248,232,240,.78);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.header.is-shadow{
  box-shadow: 0 16px 26px rgba(27,16,32,.10);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:12px 0;
  height: 90px;
}
.brand{ display:flex; align-items:center; }
.brand__logo{ height:150px; width:auto; }

.nav{
  display:flex; align-items:center;
  gap:18px;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.60);
}
.nav a{
  font-weight:800;
  font-size:14px;
  opacity:.86;
}
.nav a:hover{ opacity:1; color: var(--brandDark); }

.header__actions{ display:flex; align-items:center; gap:10px; }

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--brand{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  box-shadow: 0 14px 28px rgba(248,96,168,.30);
}
.btn--brand:hover{
  box-shadow: 0 18px 34px rgba(248,96,168,.36);
}

.btn--ghost{
  background: rgba(255,255,255,.70);
  border:1px solid var(--line);
  box-shadow: var(--shadowSoft);
}
.btn--ghost:hover{
  border-color: rgba(248,96,168,.35);
  color: var(--brandDark);
}

.btn--full{ width:100%; }
.btn--small{ padding:10px 12px; border-radius:12px; font-size:14px; }

/* ===== Burger ===== */
.burger{
  display:none;
  width:46px; height:46px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadowSoft);
  cursor:pointer;
  padding:10px;
}
.burger span{
  display:block;
  height:2px;
  background: var(--ink);
  margin:6px 0;
  border-radius:2px;
  opacity:.85;
}

/* ===== Hero ===== */
.hero{ padding: 15px 0 28px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.65);
  font-weight:900;
  font-size:13px;
  color: var(--muted);
}
.dot{
  width:10px; height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}
.hero h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height:1.02;
  letter-spacing:-.02em;
}
.grad{
  background: linear-gradient(135deg, var(--brandDark), var(--brand));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0;
  font-size:18px;
  line-height:1.6;
  color: var(--muted);
  max-width: 56ch;
}
.hero__cta{ margin-top:18px; display:flex; gap:12px; flex-wrap:wrap; }

.trust{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.trust__item{
  background: rgba(255,255,255,.70);
  border:1px solid var(--line);
  border-radius:16px;
  padding:10px 12px;
  min-width: 150px;
  box-shadow: var(--shadowSoft);
}
.trust__item strong{ display:block; font-size:16px; }
.trust__item span{ color:var(--muted); font-size:13px; font-weight:800; }

.badges{ margin-top:12px; display:flex; gap:10px; flex-wrap:wrap; }
.badge{
  padding:8px 12px;
  border-radius:999px;
  border:1px dashed rgba(248,96,168,.45);
  background: rgba(255,255,255,.60);
  font-weight:900;
  font-size:13px;
  color: var(--brandDark);
}

.hero__media{ justify-self:end; width: min(480px, 100%); }
.mediaCard{
  position:relative;
  border-radius: var(--radiusXL);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.55);
}
.mediaCard img{ width:100%; height:520px; object-fit:cover; }
.mediaCard__float{
  position:absolute;
  left:16px; right:16px; bottom:16px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  background: rgba(27,16,32,.72);
  color:#fff;
  border:1px solid rgba(255,255,255,.20);
}
.pill--soft{
  background: rgba(255,255,255,.72);
  color: var(--ink);
  border:1px solid var(--line);
}
.pillBar{ display:flex; gap:10px; flex-wrap:wrap; }

/* ===== Strip ===== */
.strip{ padding: 18px 0 8px; }
.strip__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.mini{
  background: rgba(255,255,255,.70);
  border: 1px solid var(--line);
  border-radius: var(--radiusLG);
  padding: 16px;
  box-shadow: var(--shadowSoft);
}
.mini h3{ margin:0 0 6px; }
.mini p{ margin:0; color:var(--muted); font-weight:750; }

/* ===== Sections ===== */
.section{ padding: 54px 0; }
.section--soft{
  background: rgba(255,255,255,.35);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 18px;
}
@media (max-width: 768px){
  .section__head{ flex-direction:column; align-items:flex-start; }
}
.section__head h2{ margin:0; font-size:30px; letter-spacing:-.02em; }
.muted{ color:var(--muted); font-weight:750;}
.muted-1{ color:var(--muted); font-weight:400; text-align: center;}
.section__actions{ display:flex; gap:8px; flex-wrap:wrap; }
.seg{
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  padding:10px 12px;
  border-radius:999px;
  font-weight:950;
  cursor:pointer;
  box-shadow: var(--shadowSoft);
}
.seg.is-active{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  border-color: transparent;
}

/* ===== Products ===== */
.grid{ display:grid; gap:14px; }
.products{ grid-template-columns: repeat(3, 1fr); }

.product{
  background: rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius: var(--radiusXL);
  overflow:hidden;
  box-shadow: var(--shadowSoft);
}
.product__img{ position:relative; display:block; }
.product__img img{ width:100%; height:240px; object-fit:cover; }
.tag{
  position:absolute;
  top:12px; left:12px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.78);
  border:1px solid var(--line);
  font-weight:950;
  font-size:12px;
}
.product__body{ padding:14px; }
.product__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
}
.product h3{ margin:0; font-size:18px; }
.price{ font-weight:1000; color: var(--brandDark); }
.meta{ margin:6px 0 0; color:var(--muted); font-weight:800; }

.product__actions{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ===== Categories ===== */
.cats{ grid-template-columns: repeat(2, 1fr); }
.cat{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px;
  border-radius: var(--radiusXL);
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadowSoft);
}
.cat__icon{
  width:48px; height:48px;
  border-radius:16px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(248,96,168,.18), rgba(255,125,187,.22));
  border:1px solid rgba(248,96,168,.25);
  font-weight:1000;
}
.cat__txt span{ display:block; color:var(--muted); font-weight:800; margin-top:3px; }
.cat__arrow{ margin-left:auto; font-weight:1000; opacity:.8; }

/* ===== Steps ===== */
.steps{ grid-template-columns: repeat(3, 1fr); }
.step{
  padding:18px;
  border-radius: var(--radiusXL);
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadowSoft);
}
.step__n{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  font-weight:1000;
  background: rgba(248,96,168,.18);
  border:1px solid rgba(248,96,168,.25);
  color: var(--brandDark);
}
.step h3{ margin:10px 0 6px; }
.step p{ margin:0; color:var(--muted); font-weight:800; line-height:1.55; }

.ctaRow{
  margin-top:16px;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.ctaRow__card{
  flex:1;
  min-width: 240px;
  background: rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius: var(--radiusXL);
  padding:14px 16px;
  box-shadow: var(--shadowSoft);
}

/* ===== Slider / reviews ===== */
.slider{
  position:relative;
  border-radius: var(--radiusXL);
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadowSoft);
  overflow:hidden;
}
.slider__track{
  display:flex;
  gap:14px;
  padding:16px;
  overflow:auto;
  scroll-snap-type: x mandatory;
  scroll-behavior:smooth;
}
.review{
  min-width: min(380px, 86vw);
  background: rgba(255,255,255,.88);
  border:1px solid var(--line);
  border-radius: var(--radiusXL);
  padding:16px;
  scroll-snap-align: start;
}
.review p{ margin:0; font-weight:850; line-height:1.55; }
.review__foot{
  margin-top:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}

/* icon button (reused) */
.icon-btn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  cursor:pointer;
  box-shadow: var(--shadowSoft);
}
.icon-btn:active{ transform: translateY(1px); }

.slider__controls{
  position:absolute;
  top:12px; right:12px;
  display:flex; gap:8px;
}

/* ===== FAQ ===== */
.faq{ display:grid; gap:12px; }
.faq__item{
  border-radius: var(--radiusXL);
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadowSoft);
  padding:14px 16px;
}
.faq__item summary{
  cursor:pointer;
  font-weight:1000;
  list-style:none;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item p{ margin:10px 0 0; color:var(--muted); font-weight:800; line-height:1.55; }

/* ===== Final CTA ===== */
.final{ padding: 60px 0; }
.final__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:stretch;
}
.final__card{
  border-radius: var(--radiusXL);
  border:1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.84), rgba(248,232,240,.62));
  box-shadow: var(--shadow);
  padding:22px;
}
.final__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:12px; }
.final__chips{ display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }
.chip{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  font-weight:900;
  font-size:13px;
}
.contactBox{
  height:100%;
  border-radius: var(--radiusXL);
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadowSoft);
  padding:14px;
}
.social{ display:grid; gap:10px; margin-top:12px; }
.tiny{ font-size:13px; }

/* ===== Footer ===== */
.footer{
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.60);
  padding: 34px 0 18px;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap:16px;
}
.footer__logo{ height:120px; width:auto; }
.footer h4{ margin:0 0 10px; }
.footer a{
  display:block;
  padding:6px 0;
  font-weight:900;
  color: rgba(27,16,32,.85);
}
.footer__bottom{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line);
  justify-content:center;
  align-items:center;
  text-align: center;
}
.footer__bottom small{
  color: var(--muted)
} 
.toTop{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadowSoft);
  text-align: center;
}

/* ===== WhatsApp float ===== */
.waFloat{
  position:fixed;
  right:16px;
  bottom:16px;
  width:56px;
  height:56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:#25D366;
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
  box-shadow: 0 18px 30px rgba(0,0,0,.22);
}

/* ===== Drawer ===== */
.drawer{
   display:none; 
   width: 100%;
  }
.drawer.is-open{
  display:block;
  position:fixed;
  inset:0;
  background: rgba(27,16,32,.45);
}
.drawer__panel{
  position:absolute;
  right:0; top:0;
  width:80%;
  background: rgba(248,232,240,.92);
  border-left:1px solid var(--line);
  padding:16px;
  backdrop-filter: blur(14px);
}
.drawer__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-bottom:12px;
  border-bottom:1px solid var(--line);
}
.drawer__nav{
  display:grid;
  gap:10px;
  padding:14px 0;
  background: rgba(248,232,240,.92);
}
.drawer__nav a{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  font-weight:900;
}
.drawer__social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
  background: rgba(248,232,240,.92);
}

/* ===== Reveal animations ===== */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}
.products .reveal {
  opacity: 1;
  transform: none;
}
/* ===== Helpers ===== */
.center{ display:flex; justify-content:center; }
.mt-24{ margin-top:24px; }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .nav{ display:none; }
  .burger{ display:block; }

  .hero__grid{ grid-template-columns: 1fr; }
  .hero__media{ justify-self:stretch; }
  .mediaCard img{ height:420px; }

  .strip__grid{ grid-template-columns: 1fr; }
  .products{ grid-template-columns: repeat(2, 1fr); }
  .cats{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .final__grid{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .products{ grid-template-columns: 1fr; }
}
@media (max-width: 768px){
    .header {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        backdrop-filter: none;
        transform: translateZ(0);
        will-change: transform;
    }
    body {
        padding-top: 75px;
    }
    .header__inner {
        width: 100%;
        height: 80px;
        padding: 0 10px !important;
    }
    .brand__logo{
        width: 130px;
        height: auto;
  }
}
.quoteBox{
  margin-top:14px;
  padding:14px;
  border-radius:14px;
  background:#fff7fb;
  border:1px dashed #f3b3cc;
  text-align:center;
}

.quoteBox p{
  margin-bottom:10px;
  font-size:.9rem;
}
/* =========================
   CARRITO - PRO LAYOUT
========================= */

.cartTop{
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.cartTop__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

.cartCta{
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.60);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.cartList{
  grid-template-columns: 1fr;
  gap: 12px;
}

.cartBottom{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.cartTotal{
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.60);
  box-shadow: 0 10px 28px rgba(0,0,0,.04);
}

/* Sticky CTA en desktop */
@media (min-width: 901px){
  .cartTop__right{
    position: sticky;
    top: 92px; /* ajusta si tu header es más alto */
  }
}

/* Responsive */
@media (max-width: 900px){
  .cartTop{
    grid-template-columns: 1fr;
  }

  .cartTop__actions{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cartTop__actions .btn{
    width: 100%;
    justify-content: center;
  }
}
