:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --card:#ffffff;
  --line:#eaeef5;

  --orange:#ff4d4d;
  --orange2:#ff914d;
  --yellow:#ffd24a;
  --black:#0b0d12;
}
html, body {
  height: 100%;
}body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}main {
  flex: 1 0 auto;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:var(--bg);
  color:var(--text);
}
a{text-decoration:none;color:inherit}

/* ICONS */
.icon{width:18px;height:18px;vertical-align:-3px}
.icon.sm{width:16px;height:16px}
.icon.lg{width:22px;height:22px}

/* LAYOUT */
.container{max-width:1440px;margin:0 auto;padding:0 22px}
@media(max-width:600px){.container{padding:0 14px}}

.top{
  position:sticky;top:0;z-index:40;
  background:rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:14px 0;
}
.brand{display:flex;align-items:center;gap:10px;font-weight:1000}
.logoMark{
  width:42px;height:42px;border-radius:14px;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  display:flex;align-items:center;justify-content:center;
  color:#111;font-weight:1000;
  box-shadow:0 10px 22px rgba(0,0,0,.12);
}
.brandName{line-height:1}
.brandName small{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  margin-top:2px;
}

.cart-btn{
  display:flex;align-items:center;gap:10px;
  background:#fff;
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:14px;
  font-weight:900;
  box-shadow:0 10px 22px rgba(0,0,0,.05);
}
.badge{
  min-width:26px;height:26px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  display:flex;align-items:center;justify-content:center;
  color:#111;
  font-weight:1000;
}

/* HERO */
.full{width:100%}
.hero{
  background:
    radial-gradient(1100px 480px at 15% 0%, rgba(255,77,77,.14), transparent 60%),
    radial-gradient(900px 480px at 85% 0%, rgba(255,210,74,.14), transparent 55%),
    #fff;
  padding:28px 0;
  border-bottom:1px solid var(--line);
}
.heroGrid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:24px;
  align-items:start;
}
@media(max-width:980px){.heroGrid{grid-template-columns:1fr}}

.h1{
  margin:0;
  font-size:52px;
  font-weight:1000;
  line-height:1.02;
  letter-spacing:-.03em;
}
.sub{
  color:var(--muted);
  margin-top:12px;
  font-size:16px;
  max-width:760px;
}

.ctaRow{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.btn{
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:1000;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.btn.primary{
  border:none;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  color:#ffffff;
  box-shadow:0 14px 30px rgba(255,77,77,.16);
}
.btn.dark{
  border:none;
  background:var(--black);
  color:#fff;
}

.pills{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.pill{
  border:1px solid var(--line);
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  background:#fff;
  display:flex;
  align-items:center;
  gap:8px;
  box-shadow:0 10px 22px rgba(0,0,0,.04);
}

.illu{
  border-radius:26px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  padding:18px;
}
.illuTitle{font-weight:1000;margin:0 0 10px;font-size:16px}
.steps{display:grid;gap:10px}
.step{
  border:1px solid var(--line);
  border-radius:999px;
  padding:12px 14px;
  background:#fff;
  font-weight:900;
  display:flex;
  align-items:center;
  gap:10px;
}
.step b{
  width:26px;height:26px;border-radius:999px;
  background:#f2f5fb;border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;
}

/* CONTENT */
.section{padding:22px 0}
.sectionTitle{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin:18px 0 12px;
}
.sectionTitle h2{margin:0;font-size:18px}
.mini{color:var(--muted);font-size:12px;font-weight:800}

.cats{display:flex;gap:10px;flex-wrap:wrap}
.chip{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  font-weight:1000;
  background:#fff;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.chip:hover{border-color:#d8deea}

.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
@media(max-width:1100px){.grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:820px){.grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.grid{grid-template-columns:1fr}}

.pcard{
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 14px 30px rgba(0,0,0,.06);
}
.pimg{
  height:160px;
  background:#f8fafc;
  display:flex;
  align-items:center;
  justify-content:center;
}
.pimg img{width:100%;height:100%;object-fit:cover}
.pbody{padding:12px}
.ptitle{font-weight:1000}
.pdesc{color:var(--muted);font-size:13px;margin-top:4px;min-height:18px}
.prow{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:12px;
  gap:10px;
}
.pprice{font-weight:1000}
.add{
  border:none;
  background:linear-gradient(135deg,var(--yellow),#ffe089);
  padding:10px 12px;
  border-radius:14px;
  font-weight:1000;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.toast{
  position:fixed;left:50%;transform:translateX(-50%);
  bottom:18px;
  background:rgba(255,255,255,.95);
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 14px;
  box-shadow:0 18px 38px rgba(0,0,0,.14);
  font-weight:900;
  display:none;
  z-index:60;
}

/* FLOAT */
.waFloat{
  position:fixed;
  right:16px;
  bottom:16px;
  background:var(--black);
  color:#fff;
  padding:12px 14px;
  border-radius:999px;
  border:none;
  font-weight:1000;
  display:flex;
  align-items:center;
  gap:8px;
  box-shadow:0 18px 36px rgba(0,0,0,.18);
  cursor:pointer;
}
.logoImg{
  width:46px;
  height:46px;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}

.logoImg img{
  width:100%;
  height:100%;
  object-fit:contain; /* no deforma */
  padding:6px;       /* aire tipo Rappi */
}
.logoOnly{
  display:flex;
  align-items:center;
}

.logoOnly img{
  height:44px;           /* tamaño tipo Rappi */
  width:auto;
  object-fit:contain;
}
.footer{
  border-top:1px solid var(--line);
  background:#fff;
  padding:22px 0;
  margin-top:22px;
  flex-shrink: 0;
}

.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap:18px;
  align-items:start;
}
@media(max-width:980px){ .footerGrid{grid-template-columns:1fr; } }

.footerLogo{
  display:flex;
  align-items:center;
  gap:12px;
}
.footerLogo img{
  height:44px;
  width:auto;
  object-fit:contain;
}

.footerText{
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
  margin-top:8px;
}

.footerTitle{
  font-weight:1000;
  margin:0 0 10px;
  font-size:14px;
}

.footerLinks{
  display:grid;
  gap:10px;
}
.footerLinks a{
  color:var(--text);
  font-weight:900;
  display:inline-flex;
  align-items:center;
  gap:8px;
  opacity:.92;
}
.footerLinks a:hover{opacity:1}

.footerBottom{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footerBottom .mini{margin:0}

.socialRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.pillLink{
  border:1px solid var(--line);
  background:#fff;
  padding:10px 12px;
  border-radius:999px;
  font-weight:1000;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.pillLink:hover{border-color:#d8deea}
