/* ============================================================
   SANUI — Sistema de diseño (branding real del repo)
   Bebas Neue (display) + Space Grotesk (texto)
   Azul cyan · Verde · Amarillo · Kraft · Dark
   ============================================================ */

:root {
  /* SANUI Brand Colors (del repo, oklch) */
  --blue:        oklch(0.62 0.19 218);
  --blue-light:  oklch(0.78 0.14 215);
  --blue-dark:   oklch(0.44 0.18 225);
  --green:       oklch(0.70 0.22 142);
  --green-light: oklch(0.83 0.18 140);
  --yellow:      oklch(0.88 0.20 90);
  --yellow-bright: oklch(0.93 0.22 88);
  --kraft:       oklch(0.82 0.06 75);
  --kraft-dark:  oklch(0.68 0.08 72);
  --dark:        oklch(0.15 0.012 260);
  --graphite:    oklch(0.21 0.01 260);
  --white:       oklch(0.99 0 0);
  --off-white:   oklch(0.975 0.005 80);

  --ink:         oklch(0.235 0.015 65);
  --muted:       oklch(0.55 0.016 285);
  --line:        oklch(0.92 0.004 286);

  --ff-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --ff: "Space Grotesk", "Inter", system-ui, sans-serif;

  --maxw: 1280px;
  --pad: clamp(16px, 4vw, 32px);
  --nav-h: 76px;
  --r: 1.25rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--ff);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3 { font-family: var(--ff-display); font-weight: 400; letter-spacing: 0.02em; line-height: 0.92; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); width: 100%; }
.display { font-family: var(--ff-display); letter-spacing: 0.02em; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-dir="left"]  { transform: translateX(40px); }
.reveal[data-dir="right"] { transform: translateX(-40px); }
.reveal.in[data-dir] { transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes orb { 0%,100%{transform:scale(1);opacity:.12} 50%{transform:scale(1.18);opacity:.24} }
.float { animation: float 4s ease-in-out infinite; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 999px; transition: transform .15s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 10px 24px -8px var(--blue); }
.btn--blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn--yellow { background: var(--yellow); color: var(--dark); }
.btn--yellow:hover { background: #fff; transform: translateY(-2px); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: var(--graphite); transform: translateY(-2px); }
.btn--ghost { border: 2px solid color-mix(in srgb, currentColor 35%, transparent); }
.btn--ghost:hover { border-color: currentColor; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .4; pointer-events: none; }
.btn--lg { padding: 19px 40px; font-size: 15px; }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 999px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--nav-h);
  display: flex; align-items: center; transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.nav.solid { background: color-mix(in srgb, var(--white) 82%, transparent); backdrop-filter: blur(16px); box-shadow: 0 6px 24px -16px rgba(0,0,0,.4); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 20px; }
.logo { display: flex; flex-direction: column; line-height: .82; }
.logo b { font-family: var(--ff-display); font-size: 34px; letter-spacing: 0.14em; color: var(--dark); transition: color .3s; }
.logo span { font-size: 9px; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase; color: var(--blue); transition: color .3s; margin-top: 2px; }
.nav.ontop .logo b { color: #fff; }
.nav.ontop .logo span { color: var(--yellow); }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dark); position: relative; padding: 6px 0; transition: color .2s;
}
.nav.ontop .nav__links a { color: rgba(255,255,255,.9); }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0; background: var(--yellow); transition: width .3s; }
.nav__links a:hover::after { width: 100%; }
.nav__links a:hover { color: var(--blue); }
.nav.ontop .nav__links a:hover { color: var(--yellow); }

.nav__right { display: flex; align-items: center; gap: 14px; }
.cart-ico { position: relative; width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; color: var(--dark); transition: background .2s, color .3s; }
.nav.ontop .cart-ico { color: #fff; }
.cart-ico:hover { background: color-mix(in srgb, var(--blue) 12%, transparent); }
.cart-ico .badge {
  position: absolute; top: 2px; right: 2px; min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--yellow); color: var(--dark); font-size: 11px; font-weight: 800;
  border-radius: 999px; display: grid; place-items: center;
}
.nav__cta { display: inline-flex; }
.burger { display: none; width: 44px; height: 44px; border-radius: 999px; place-items: center; color: var(--dark); }
.nav.ontop .burger { color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: var(--dark); }
.hero__bg { position: absolute; inset: 0; background: linear-gradient(135deg, color-mix(in srgb, var(--blue) 30%, transparent) 0%, var(--dark) 45%, var(--dark) 100%); }
.hero__orb { position: absolute; border-radius: 999px; filter: blur(70px); }
.hero__orb.a { top: 18%; right: -60px; width: 380px; height: 380px; background: var(--blue); animation: orb 8s ease-in-out infinite; }
.hero__orb.b { bottom: 0; left: 18%; width: 280px; height: 280px; background: var(--green); animation: orb 10s ease-in-out infinite 2s; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; padding: calc(var(--nav-h) + 24px) 0 60px; }
.hero h1 { font-size: clamp(64px, 11vw, 132px); color: #fff; }
.hero h1 .y { color: var(--yellow); }
.hero h1 .b { color: var(--blue-light); }
.hero__sub { color: rgba(255,255,255,.72); font-size: clamp(16px, 1.7vw, 20px); max-width: 30ch; margin: 22px 0 26px; }
.hero__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.hero__pills .pill { background: rgba(255,255,255,.1); color: #fff; }
.hero__pills .pill svg { color: var(--green-light); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__media { display: flex; justify-content: center; }
.hero__photo { position: relative; }
.hero__photo > .frame { width: clamp(260px, 32vw, 400px); aspect-ratio: 1; border-radius: 2rem; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); }
.hero__photo > .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__tag { position: absolute; font-weight: 800; font-size: 14px; padding: 10px 16px; border-radius: 1rem; box-shadow: 0 12px 30px -10px rgba(0,0,0,.5); }
.hero__tag.t1 { top: -16px; right: -14px; background: var(--yellow); color: var(--dark); transform: rotate(4deg); }
.hero__tag.t2 { bottom: -16px; left: -14px; background: var(--green); color: #fff; transform: rotate(-3deg); }
.hero__scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.4); }
.hero__scroll span { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.hero__scroll .line { width: 2px; height: 30px; background: linear-gradient(rgba(255,255,255,.4), transparent); }

/* marquee */
.marquee { background: var(--yellow); color: var(--dark); overflow: hidden; padding: 12px 0; border-top: 3px solid var(--dark); border-bottom: 3px solid var(--dark); }
.marquee__track { display: flex; gap: 28px; white-space: nowrap; width: max-content; animation: scrollx 28s linear infinite; }
.marquee span { font-family: var(--ff-display); font-size: 26px; letter-spacing: .06em; display: inline-flex; gap: 28px; align-items: center; }
.marquee span::after { content: "★"; color: var(--blue); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section.off { background: var(--off-white); }
.section.dark { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.section.blue { background: var(--blue); color: #fff; position: relative; overflow: hidden; }
.s-eyebrow { font-size: 13px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.s-title { font-size: clamp(40px, 6vw, 72px); color: var(--dark); margin-top: 6px; }
.section.dark .s-title, .section.blue .s-title { color: #fff; }
.s-head { margin-bottom: clamp(32px, 5vw, 56px); }
.s-head.row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.s-head.center { text-align: center; }

/* values */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value { padding: 26px; border-radius: var(--r); border: 1px solid var(--line); transition: transform .25s, box-shadow .25s, border-color .25s; height: 100%; }
.value:hover { transform: translateY(-6px); box-shadow: 0 24px 44px -20px color-mix(in srgb, var(--blue) 40%, transparent); border-color: color-mix(in srgb, var(--blue) 30%, transparent); }
.value__ico { width: 56px; height: 56px; border-radius: 1rem; display: grid; place-items: center; background: var(--off-white); margin-bottom: 16px; }
.value h4 { font-family: var(--ff); font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.value p { color: var(--muted); font-size: 14px; }

/* product grid */
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); transition: all .2s; }
.filter:hover { border-color: var(--dark); color: var(--dark); }
.filter.on { background: var(--blue); color: #fff; border-color: var(--blue); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pcard { background: #fff; border-radius: var(--r); overflow: hidden; box-shadow: 0 2px 14px -8px rgba(0,0,0,.2); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.pcard:hover { transform: translateY(-8px); box-shadow: 0 30px 50px -24px rgba(0,0,0,.3); }
.pcard__media { position: relative; aspect-ratio: 1; cursor: pointer; overflow: hidden; }
.pcard__media.green { background: linear-gradient(160deg, var(--green-light), var(--green)); }
.pcard__media.blue  { background: linear-gradient(160deg, var(--blue-light), var(--blue)); }
.pcard__media.kraft { background: linear-gradient(160deg, var(--kraft), var(--kraft-dark)); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__badge { position: absolute; top: 12px; left: 12px; background: var(--yellow); color: var(--dark); font-size: 11px; font-weight: 800; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.pcard__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.pcard__name { font-family: var(--ff); font-weight: 700; font-size: 18px; cursor: pointer; transition: color .2s; }
.pcard__name:hover { color: var(--blue); }
.pcard__short { color: var(--muted); font-size: 13.5px; margin: 4px 0 12px; }
.pcard__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag { font-size: 11px; font-weight: 700; color: var(--green); background: color-mix(in srgb, var(--green) 12%, transparent); padding: 4px 10px; border-radius: 999px; }
.pcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.price { font-family: var(--ff-display); font-size: 30px; color: var(--dark); line-height: 1; }
.price small { font-family: var(--ff); font-size: 11px; color: var(--muted); font-weight: 500; display: block; letter-spacing: 0; }
.add-btn { background: var(--blue); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 12px 18px; border-radius: 12px; transition: background .2s, transform .15s; }
.add-btn:hover { background: var(--blue-dark); }
.add-btn:active { transform: scale(.95); }

/* lifestyle / split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split h2 { font-size: clamp(40px, 6vw, 72px); margin-bottom: 20px; }
.split h2 .b { color: var(--blue); }
.split p { color: var(--muted); font-size: 17px; margin-bottom: 16px; }
.section.dark .split p { color: rgba(255,255,255,.6); }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.photo-grid .col { display: flex; flex-direction: column; gap: 16px; }
.photo-grid .col:last-child { margin-top: 32px; }
.photo-grid img { width: 100%; border-radius: var(--r); object-fit: cover; transition: transform .5s; }
.photo-grid a, .photo-grid div { overflow: hidden; border-radius: var(--r); }
.photo-grid img:hover { transform: scale(1.05); }
.ph-48 { height: 200px; } .ph-64 { height: 264px; }

.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 28px 0; }
.stat { text-align: center; }
.stat b { font-family: var(--ff-display); font-size: 44px; color: var(--yellow); display: block; line-height: 1; }
.stat span { color: rgba(255,255,255,.5); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

/* community grid */
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ig-cell { position: relative; aspect-ratio: 1; border-radius: var(--r); overflow: hidden; background: rgba(255,255,255,.05); }
.ig-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ig-cell:hover img { transform: scale(1.08); }
.ig-cell .ov { position: absolute; inset: 0; background: color-mix(in srgb, var(--dark) 76%, transparent); opacity: 0; transition: opacity .3s; display: grid; place-items: center; color: #fff; gap: 6px; }
.ig-cell:hover .ov { opacity: 1; }

/* reviews */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review { background: #fff; border-radius: var(--r); padding: 26px; box-shadow: 0 2px 14px -8px rgba(0,0,0,.2); height: 100%; }
.review .stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--yellow); }
.review p { color: var(--ink); font-size: 15px; margin-bottom: 14px; }
.review b { font-weight: 700; font-size: 14px; }

/* about */
.about { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px,5vw,64px); align-items: center; }
.about__media { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/5; }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about h2 { font-size: clamp(40px,6vw,68px); margin-bottom: 18px; }
.about p { color: var(--muted); font-size: 16.5px; margin-bottom: 14px; }
.about .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.about .chips .pill { border: 2px solid color-mix(in srgb, var(--green) 40%, transparent); color: var(--green); }

/* faq */
.faq { max-width: 820px; margin: 0 auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; text-align: left; font-weight: 700; font-size: 18px; color: var(--dark); }
.qa__q .ico { flex: none; width: 28px; height: 28px; border-radius: 999px; display: grid; place-items: center; background: var(--off-white); transition: transform .3s, background .3s; font-size: 18px; }
.qa.open .qa__q .ico { transform: rotate(45deg); background: var(--blue); color: #fff; }
.qa__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.qa__a p { color: var(--muted); font-size: 15.5px; padding: 0 4px 22px; }

/* final cta */
.section.blue .fcta { text-align: center; position: relative; z-index: 2; }
.section.blue .fcta h2 { font-size: clamp(48px, 9vw, 104px); color: #fff; }
.section.blue .fcta h2 .y { color: var(--yellow); }
.section.blue .fcta p { color: rgba(255,255,255,.82); font-size: clamp(16px,2vw,20px); margin: 18px auto 36px; max-width: 36ch; }
.section.blue .fcta .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: #fff; }
.footer .wrap { padding-left: var(--pad); padding-right: var(--pad); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding: clamp(48px,6vw,80px) 0; }
.footer .logo b { color: #fff; } .footer .logo span { color: var(--yellow); }
.footer__tag { color: rgba(255,255,255,.5); font-size: 14px; margin: 16px 0; max-width: 32ch; }
.footer h5 { font-family: var(--ff); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer__links a { display: block; color: rgba(255,255,255,.55); font-size: 14px; padding: 5px 0; transition: color .2s; }
.footer__links a:hover { color: var(--yellow); }
.footer .contact li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.55); font-size: 14px; margin-bottom: 14px; }
.footer .contact a:hover { color: var(--yellow); }
.footer .socials { display: flex; gap: 10px; margin-top: 4px; }
.footer .socials a { width: 42px; height: 42px; border-radius: 999px; background: rgba(255,255,255,.1); display: grid; place-items: center; transition: background .2s; }
.footer .socials a:hover { background: var(--blue); }
.footer .chips { display: flex; gap: 8px; flex-wrap: wrap; }
.footer .chips .pill { border: 1px solid color-mix(in srgb, var(--green) 45%, transparent); color: var(--green-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,.4); font-size: 12.5px; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.scrim { position: fixed; inset: 0; background: rgba(15,15,20,.5); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 90; }
.scrim.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(440px, 100%); background: #fff; z-index: 100; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .38s cubic-bezier(.3,.8,.3,1); box-shadow: -30px 0 60px -30px rgba(0,0,0,.4); }
.drawer.open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 30px; color: var(--dark); }
.x { width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; border: 1px solid var(--line); transition: background .2s; font-size: 16px; }
.x:hover { background: var(--off-white); }
.drawer__body { flex: 1; overflow-y: auto; padding: 6px 24px; }
.empty { text-align: center; color: var(--muted); padding: 56px 16px; }
.empty .display { font-size: 28px; color: var(--dark); display: block; margin-bottom: 6px; }
.li { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--off-white); }
.li__img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; background: var(--off-white); }
.li__name { font-weight: 700; font-size: 15px; }
.li__opt { font-size: 12.5px; color: var(--muted); }
.li__price { font-weight: 700; font-size: 14px; margin-top: 4px; color: var(--blue); }
.qty { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty button { width: 26px; height: 26px; border-radius: 999px; border: 1px solid var(--line); display: grid; place-items: center; font-size: 16px; line-height: 1; }
.qty button:hover { background: var(--off-white); }
.qty span { font-weight: 700; font-size: 14px; min-width: 16px; text-align: center; }
.li__rm { font-size: 12px; color: var(--muted); text-decoration: underline; align-self: start; }
.li__rm:hover { color: var(--blue); }
.drawer__foot { border-top: 1px solid var(--line); padding: 20px 24px calc(20px + env(safe-area-inset-bottom)); }
.drawer__tot { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.drawer__tot span { color: var(--muted); font-weight: 600; }
.drawer__tot b { font-family: var(--ff-display); font-size: 34px; color: var(--dark); }
.note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* ============================================================
   MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 110; display: grid; place-items: center; padding: 16px; opacity: 0; pointer-events: none; transition: opacity .28s; }
.modal.open { opacity: 1; pointer-events: auto; }
.sheet { background: #fff; border-radius: var(--r); width: min(940px, 100%); max-height: 92vh; overflow: auto; display: grid; grid-template-columns: 1fr 1fr; transform: translateY(16px) scale(.99); transition: transform .3s; position: relative; }
.modal.open .sheet { transform: none; }
.sheet__x { position: absolute; top: 14px; right: 14px; z-index: 3; width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; background: color-mix(in srgb, #fff 72%, transparent); backdrop-filter: blur(6px); border: 1px solid var(--line); }
.sheet__x:hover { background: var(--dark); color: #fff; }
.sheet__media { position: relative; }
.sheet__media.green { background: linear-gradient(160deg, var(--green-light), var(--green)); }
.sheet__media.blue  { background: linear-gradient(160deg, var(--blue-light), var(--blue)); }
.sheet__media.kraft { background: linear-gradient(160deg, var(--kraft), var(--kraft-dark)); }
.sheet__media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.sheet__info { padding: clamp(24px, 3.5vw, 40px); }
.sheet__name { font-family: var(--ff-display); font-size: clamp(34px, 4.5vw, 52px); color: var(--dark); line-height: .95; }
.sheet__price { display: flex; align-items: baseline; gap: 10px; margin: 12px 0 16px; }
.sheet__price .p { font-family: var(--ff-display); font-size: 40px; color: var(--blue); line-height: 1; }
.sheet__price small { color: var(--muted); font-size: 13px; }
.sheet__desc { color: var(--ink); font-size: 15px; }
.nutri { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin: 22px 0; }
.nutri div { background: var(--off-white); border-radius: 12px; padding: 12px 8px; text-align: center; }
.nutri b { font-family: var(--ff-display); font-size: 26px; color: var(--dark); display: block; line-height: 1; }
.nutri span { font-size: 11px; color: var(--muted); }
.opt-label { font-weight: 700; font-size: 13px; margin-bottom: 10px; }
.opts { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.opt { min-width: 52px; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line); font-weight: 700; font-size: 14px; transition: all .15s; }
.opt:hover { border-color: var(--dark); }
.opt.on { background: var(--dark); color: #fff; border-color: var(--dark); }
.ingredients { font-size: 13px; color: var(--muted); margin: 14px 0 22px; }
.ingredients b { color: var(--ink); }

/* checkout */
.checkout { grid-template-columns: 1fr !important; width: min(560px, 100%) !important; }
.checkout .sheet__info { padding: clamp(24px,4vw,38px); }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1/-1; }
.field label { font-weight: 600; font-size: 13px; color: var(--ink); }
.field input, .field textarea, .field select { font-family: var(--ff); font-size: 15px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); background: #fff; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 15%, transparent); }
.ship { display: flex; gap: 10px; margin: 4px 0 4px; }
.ship label { flex: 1; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; cursor: pointer; transition: all .2s; display: flex; flex-direction: column; gap: 2px; }
.ship label:has(input:checked) { border-color: var(--blue); background: color-mix(in srgb, var(--blue) 6%, transparent); }
.ship input { position: absolute; opacity: 0; }
.ship b { font-size: 14px; } .ship span { font-size: 12px; color: var(--muted); }
.sum { border-top: 1px solid var(--line); padding-top: 14px; margin-top: 6px; }
.sum .r { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink); padding: 4px 0; }
.sum .r.tot { font-family: var(--ff-display); font-size: 28px; color: var(--dark); padding-top: 10px; align-items: baseline; }
.success { text-align: center; padding: 26px 8px; }
.success .ck { width: 70px; height: 70px; border-radius: 999px; background: var(--green); color: #fff; display: grid; place-items: center; margin: 0 auto 18px; font-size: 34px; }
.success h3 { font-size: 36px; color: var(--dark); margin-bottom: 10px; }
.success p { color: var(--muted); max-width: 36ch; margin: 0 auto 8px; }

/* ============================================================
   WELCOME POPUP
   ============================================================ */
.wpop-scrim {
  position: fixed; inset: 0; z-index: 200; background: rgba(15,15,20,.72); backdrop-filter: blur(4px);
  display: grid; place-items: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.wpop-scrim.show { opacity: 1; pointer-events: auto; }
.wpop {
  background: var(--dark); border-radius: calc(var(--r) * 1.4); overflow: hidden;
  width: min(820px, 100%); display: grid; grid-template-columns: .85fr 1.15fr;
  transform: translateY(20px) scale(.97); transition: transform .35s; position: relative;
}
.wpop-scrim.show .wpop { transform: none; }
.wpop__img { position: relative; background: var(--graphite); min-height: 380px; }
.wpop__img img { width: 100%; height: 100%; object-fit: cover; }
.wpop__body { padding: clamp(28px,5vw,48px); display: flex; flex-direction: column; gap: 16px; }
.wpop__tag { background: color-mix(in srgb, var(--yellow) 18%, transparent); color: var(--yellow); border: 1px solid color-mix(in srgb, var(--yellow) 35%, transparent); font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; align-self: flex-start; }
.wpop h2 { font-size: clamp(36px, 6vw, 56px); color: #fff; line-height: .9; }
.wpop h2 span { color: var(--yellow); }
.wpop p { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.5; }
.wpop__offer { background: color-mix(in srgb, var(--blue) 15%, transparent); border: 1px solid color-mix(in srgb, var(--blue) 35%, transparent); border-radius: var(--r); padding: 16px 20px; }
.wpop__offer .label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 4px; }
.wpop__offer .val { font-family: var(--ff-display); font-size: 24px; color: #fff; }
.wpop__offer .sub { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }
.wpop__close { position: absolute; top: 14px; right: 14px; z-index: 3; width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #fff; font-size: 15px; transition: background .2s; }
.wpop__close:hover { background: rgba(255,255,255,.25); }
.wpop__foot { font-size: 12px; color: rgba(255,255,255,.35); cursor: pointer; margin-top: auto; }
.wpop__foot:hover { color: rgba(255,255,255,.6); }

/* ============================================================
   LIVE NOTIFICATION
   ============================================================ */
.live-notif {
  position: fixed; bottom: 90px; left: 20px; z-index: 75;
  background: #fff; border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px -10px rgba(0,0,0,.35);
  max-width: 300px;
  transform: translateX(-130%); transition: transform .4s cubic-bezier(.3,.8,.3,1);
}
.live-notif.show { transform: translateX(0); }
.live-notif__img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; flex: none; }
.live-notif__text b { font-size: 13px; font-weight: 700; color: var(--dark); display: block; }
.live-notif__text span { font-size: 12px; color: var(--muted); }
.live-notif__dot { width: 8px; height: 8px; border-radius: 999px; background: var(--green); flex: none; animation: pdot 2s ease-in-out infinite; }
@keyframes pdot { 0%,100%{opacity:1} 50%{opacity:.3} }

/* exit intent */
.exit-scrim { position: fixed; inset: 0; z-index: 190; background: rgba(15,15,20,.7); backdrop-filter: blur(3px); display: grid; place-items: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.exit-scrim.show { opacity: 1; pointer-events: auto; }
.exit-pop { background: var(--dark); border-radius: var(--r); padding: clamp(28px,5vw,44px); width: min(480px,100%); text-align: center; position: relative; transform: translateY(12px); transition: transform .3s; }
.exit-scrim.show .exit-pop { transform: none; }
.exit-pop h3 { font-size: clamp(32px,6vw,50px); color: #fff; margin-bottom: 12px; }
.exit-pop h3 span { color: var(--yellow); }
.exit-pop p { color: rgba(255,255,255,.65); font-size: 15px; margin-bottom: 22px; }
.exit-pop .email-row { display: flex; gap: 8px; }
.exit-pop .email-row input { flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 12px; padding: 13px 16px; color: #fff; font-family: var(--ff); font-size: 14px; }
.exit-pop .email-row input::placeholder { color: rgba(255,255,255,.35); }
.exit-pop .email-row input:focus { outline: none; border-color: var(--blue); }
.exit-pop__x { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 999px; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; font-size: 14px; }
.exit-pop__x:hover { background: rgba(255,255,255,.2); }
.exit-pop small { display: block; margin-top: 14px; font-size: 11px; color: rgba(255,255,255,.3); }

@media (max-width: 640px) {
  .wpop { grid-template-columns: 1fr; }
  .wpop__img { display: none; }
  .live-notif { max-width: 260px; bottom: 80px; left: 10px; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wpp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 80;
  width: 60px; height: 60px; border-radius: 999px;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 28px -8px rgba(37,211,102,.6);
  transition: transform .2s, box-shadow .2s;
  animation: wpp-pulse 3s ease-in-out infinite;
}
.wpp-float:hover { transform: scale(1.1); box-shadow: 0 12px 36px -8px rgba(37,211,102,.7); }
@keyframes wpp-pulse {
  0%,100% { box-shadow: 0 8px 28px -8px rgba(37,211,102,.6); }
  50% { box-shadow: 0 8px 28px -8px rgba(37,211,102,.6), 0 0 0 8px rgba(37,211,102,.15); }
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.proof-bar {
  background: var(--dark); color: #fff;
  padding: 18px 0;
  display: flex; justify-content: center;
}
.proof-bar__inner { display: flex; gap: clamp(24px,4vw,60px); flex-wrap: wrap; justify-content: center; }
.proof-bar div { display: flex; align-items: center; gap: 10px; }
.proof-bar b { font-family: var(--ff-display); font-size: 28px; color: var(--yellow); }
.proof-bar span { font-size: 13px; color: rgba(255,255,255,.6); max-width: 14ch; line-height: 1.3; }

/* ============================================================
   REVIEWS REDESIGN
   ============================================================ */
.rating-summary { display: flex; align-items: center; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.rating-big { text-align: center; }
.rating-big b { font-family: var(--ff-display); font-size: 72px; line-height: 1; color: var(--dark); display: block; }
.rating-big .stars-row { color: var(--yellow); font-size: 22px; letter-spacing: 2px; }
.rating-big small { font-size: 13px; color: var(--muted); display: block; margin-top: 4px; }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.rbar { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); }
.rbar__track { flex: 1; height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; }
.rbar__fill { height: 100%; background: var(--yellow); border-radius: 999px; }

.reviews-scroll {
  display: flex; gap: 18px; overflow-x: auto; padding-bottom: 16px;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.reviews-scroll::-webkit-scrollbar { display: none; }
.review {
  background: #fff; border-radius: var(--r); padding: 24px;
  box-shadow: 0 2px 14px -8px rgba(0,0,0,.15);
  min-width: 280px; max-width: 320px;
  flex: 0 0 auto; scroll-snap-align: start;
}
.review .stars { font-size: 15px; letter-spacing: 1px; color: var(--yellow); margin-bottom: 12px; }
.review p { color: var(--ink); font-size: 15px; line-height: 1.55; margin-bottom: 12px; }
.review .rev-foot { display: flex; justify-content: space-between; align-items: center; }
.review b { font-weight: 700; font-size: 14px; }
.review time { font-size: 12px; color: var(--muted); }

/* ============================================================
   MOBILE IMPROVEMENTS
   ============================================================ */
@media (max-width: 768px) {
  .hero h1 { font-size: clamp(56px, 17vw, 80px); }
  .hero__sub { font-size: 16px; }
  .hero__cta .btn { padding: 14px 24px; font-size: 13px; }
  .hero__tag { font-size: 12px; padding: 8px 13px; }
  .hero__tag.t1 { top: -10px; right: -8px; }
  .hero__tag.t2 { bottom: -10px; left: -8px; }
  .marquee span { font-size: 20px; }
  .s-title { font-size: clamp(34px, 10vw, 52px); }
  .values { gap: 14px; }
  .value { padding: 18px; }
  .pcard__name { font-size: 16px; }
  .price { font-size: 26px; }
  .stats { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .stat b { font-size: 34px; }
  .ig-grid { gap: 8px; }
  .about__media { aspect-ratio: 4/3; }
  .drawer { width: 100%; }
  .sheet { grid-template-columns: 1fr; }
  .wpp-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 6px; }
}

/* toast */
.toast { position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 20px); background: var(--dark); color: #fff; padding: 13px 22px; border-radius: 999px; font-weight: 700; font-size: 14px; z-index: 130; opacity: 0; pointer-events: none; transition: all .3s; box-shadow: 0 16px 34px -12px rgba(0,0,0,.5); display: flex; align-items: center; gap: 8px; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast svg { color: var(--green-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
.mobile-menu { position: fixed; inset: 0; z-index: 80; display: none; }
.mobile-menu.open { display: block; }
.mobile-menu__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); }
.mobile-menu__panel { position: absolute; top: 0; right: 0; height: 100%; width: 280px; background: #fff; padding: 24px; display: flex; flex-direction: column; gap: 6px; box-shadow: -20px 0 50px -20px rgba(0,0,0,.5); }
.mobile-menu__panel .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mobile-menu__panel a { padding: 13px 16px; border-radius: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 15px; color: var(--dark); transition: background .2s; }
.mobile-menu__panel a:hover { background: var(--off-white); color: var(--blue); }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .hero__media { order: -1; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__pills, .hero__cta { justify-content: center; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .split, .about { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .sheet { grid-template-columns: 1fr; }
  .sheet__media img { min-height: 240px; max-height: 320px; }
}
@media (max-width: 640px) {
  .nav__links, .nav__cta { display: none; }
  .burger { display: grid; }
  .grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .nutri { grid-template-columns: repeat(2,1fr); }
  .photo-grid .col:last-child { margin-top: 0; }
}
