/* ══════════════════════════════════════════════════════════
   Peru Ladybug — Sistema de diseño
   Paleta: crema/blanco base + rosa #F5CAC3 + coral #F28482
           + mostaza #F6BD60 + salvia #84A59D + malva #98718C
   Tipos:  Baloo 2 (títulos, redondeada pop) + Nunito Sans (texto)
   ══════════════════════════════════════════════════════════ */

:root {
  --bg: #FFFDFB;
  --cream: #F7EDE2;
  --pink: #F5CAC3;
  --pink-soft: #FBE4DF;
  --coral: #F28482;
  --coral-dark: #E56765;
  --sage: #84A59D;
  --mustard: #F6BD60;
  --mauve: #98718C;
  --ink: #3D3436;
  --ink-soft: #8A7F81;
  --line: #F0E4DA;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 6px 24px rgba(61, 52, 54, .08);
  --shadow-lift: 0 12px 32px rgba(61, 52, 54, .14);
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
main { max-width: 1140px; margin: 0 auto; padding: 16px 20px; }
img { max-width: 100%; }
a { color: var(--coral-dark); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(28px, 4vw, 42px); }
h2 { font-size: clamp(22px, 3vw, 30px); }

/* ── Ticker marquee ── */
.ticker {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  overflow: hidden;
  padding: 8px 0;
  white-space: nowrap;
}
.ticker-track { display: inline-flex; align-items: center; gap: 28px; padding-right: 28px; animation: marquee 22s linear infinite; }
.ticker .dot { font-size: 5px; color: var(--pink); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 30;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 28px;
  background: rgba(255, 253, 251, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.logo {
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: 8px;
}
.logo i { color: var(--coral); }
.logo-bug { height: 36px; width: auto; display: block; }
.logo-text { height: 24px; width: auto; display: block; }
.site-header nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.site-header nav a {
  text-decoration: none; color: var(--ink); font-weight: 700; font-size: 14px;
  transition: color .2s;
}
.site-header nav a:hover { color: var(--coral-dark); }
.cart-link { position: relative; display: inline-flex; align-items: center; gap: 6px; }
.cart-count {
  background: var(--coral); color: #fff; font-size: 11px; font-weight: 800;
  min-width: 18px; height: 18px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 5px;
}

/* ── Texto burbuja con el degradado rosa-durazno del logo ── */
.bubble-text {
  font-family: var(--font-display);
  font-weight: 800;
  background: linear-gradient(100deg, #F2A49B 0%, var(--pink) 45%, #F8DCC3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 0 rgba(199, 93, 91, .35)) drop-shadow(0 12px 18px rgba(61, 52, 54, .18));
  letter-spacing: .01em;
}

/* ── Anuncios: banda gigante (referencia: pickyou entre PICKER y PRO) ── */
.announcement {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: clamp(14px, 2.5vw, 26px) 0 clamp(10px, 2vw, 20px);
  overflow: hidden;
}
.announcement .ann-detail {
  margin: 0 24px 4px;
  text-align: center;
  font-weight: 800;
  font-size: clamp(13px, 1.6vw, 17px);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ann-marquee { overflow: hidden; white-space: nowrap; }
.ann-track {
  display: inline-flex;
  align-items: baseline;
  gap: clamp(30px, 5vw, 70px);
  padding-right: clamp(30px, 5vw, 70px);
  animation: marquee 18s linear infinite;
}
.ann-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 10vw, 130px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  background: linear-gradient(100deg, #F2A49B 0%, var(--pink) 45%, #F8DCC3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 10px rgba(242, 132, 130, .3));
}

.flash { padding: 12px 20px; margin: 12px auto; max-width: 1100px; border-radius: var(--radius-sm); font-weight: 600; }
.flash-ok { background: #EAF3F0; border: 1px solid #C9DED7; color: #3D6156; }
.flash-error { background: var(--pink-soft); border: 1px solid var(--pink); color: #A04543; }
.flash ul { margin: 0; padding-left: 18px; }

/* ── Hero: a todo lo ancho y alto (referencia: 8enjamin) ── */
.hero {
  position: relative; overflow: hidden;
  background: var(--cream);
  border-radius: 0;
  padding: clamp(50px, 8vw, 110px) 24px;
  margin: -16px calc(50% - 50vw) 40px;
  min-height: clamp(440px, 74vh, 780px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.hero h1 { margin: 0 0 10px; font-weight: 800; }
.hero h1 .hl { color: var(--coral); }
.hero p { max-width: 520px; margin: 0 auto 24px; color: var(--ink-soft); font-size: 17px; }
/* Logotipo grande sobre el fondo (referencia: hero de 8enjamin) */
.hero-name { margin: 0 0 10px; }
.hero-logo {
  width: min(920px, 92%);
  height: auto;
  filter: drop-shadow(0 3px 2px rgba(255, 255, 255, .55)) drop-shadow(0 12px 34px rgba(61, 52, 54, .38));
}
.hero-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.6vw, 28px);
  color: var(--ink);
}
.hero.has-image .hero-sub { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.hero > *:not(.blob):not(.hero-bg):not(.hero-tint) { position: relative; z-index: 1; }
.hero .blob { position: absolute; border-radius: 50%; opacity: .55; pointer-events: none; z-index: 0; }
/* Imagen de fondo con parallax (se sube desde Ajustes) */
.hero-bg {
  position: absolute; inset: -25% 0; z-index: 0;
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero-tint {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, .30), rgba(255, 255, 255, 0) 65%),
    rgba(61, 52, 54, .10);
}
.hero.has-image { color: #fff; }
.hero.has-image h1 { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.hero.has-image p { color: #FFF6F0; text-shadow: 0 1px 8px rgba(0,0,0,.3); }
.hero.has-image .hl { color: var(--pink); }
.hero .blob-1 { width: 180px; height: 180px; background: var(--pink); top: -60px; left: -50px; }
.hero .blob-2 { width: 120px; height: 120px; background: var(--mustard); bottom: -40px; right: 8%; }
.hero .blob-3 { width: 70px; height: 70px; background: var(--sage); top: 20%; right: -20px; }

/* ── Banner de video (frase editable sobre video de fondo) ── */
.video-banner {
  position: relative; overflow: hidden;
  border-radius: 28px; margin: 14px 0 6px;
  min-height: clamp(220px, 34vw, 400px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 44px 24px;
  background: linear-gradient(115deg, var(--coral) 0%, var(--pink) 55%, var(--mustard) 120%);
}
.video-banner-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.video-banner-tint {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(61, 52, 54, .34);
}
.video-banner-text {
  position: relative; z-index: 2; margin: 0; max-width: 20ch;
  color: #fff; font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em; line-height: 1.05;
  font-size: clamp(30px, 6vw, 66px);
  text-shadow: 0 3px 20px rgba(0, 0, 0, .35);
}

/* ── Botones ── */
.btn {
  font-family: var(--font-body); font-weight: 800; font-size: 14px;
  padding: 10px 20px; border: 2px solid var(--line); background: #fff; color: var(--ink);
  border-radius: 999px; cursor: pointer; text-decoration: none; display: inline-block;
  transition: transform .15s, box-shadow .15s, background .2s, border-color .2s;
}
.btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:disabled { opacity: .45; cursor: default; }
.btn-primary { background: var(--coral); border-color: var(--coral); color: #fff; }
.btn-primary:hover:not(:disabled) { background: var(--coral-dark); border-color: var(--coral-dark); }
.btn-lg { padding: 14px 30px; font-size: 16px; }
/* Botón con brillo animado (referencia: ButtonCTA de 8enjamin) */
.btn-shine {
  background: linear-gradient(135deg, var(--coral) 10%, var(--pink) 50%, var(--coral) 90%);
  background-size: 200% 200%;
  animation: shine 5s linear infinite;
  border-color: transparent;
  color: #fff;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .15);
}
.btn-shine:hover:not(:disabled) { background: var(--coral-dark); animation-play-state: paused; }
@keyframes shine { 0% { background-position: 0 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }
.btn-ghost { background: transparent; border-color: var(--ink); }
.btn-sm { padding: 4px 12px; font-size: 12px; border-width: 1.5px; }
.btn i { margin-right: 6px; }

/* ── Categorías ── */
.category-nav { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 26px; }
.cat-btn {
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  padding: 8px 18px; border-radius: 999px; border: 2px solid var(--line);
  background: #fff; color: var(--ink); cursor: pointer; transition: all .2s;
}
.cat-btn:hover { border-color: var(--pink); background: var(--pink-soft); }
.cat-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ── Tarjetas de producto (referencia: display de pickyou) ── */
.section-head { display: flex; align-items: baseline; gap: 12px; margin: 36px 0 6px; }
.section-head i { color: var(--coral); font-size: 20px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.product-card {
  background: transparent; border: 0; padding: 0;
  display: flex; flex-direction: column;
}
.product-card h3 { font-size: 15px; margin: 10px 2px 2px; cursor: pointer; font-weight: 800; }
.product-img {
  position: relative; aspect-ratio: 3 / 4; background: var(--cream);
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; display: block;
}
.card-add {
  position: absolute; bottom: 10px; right: 10px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; border: 0;
  background: var(--coral); color: #fff; font-size: 16px; cursor: pointer;
  box-shadow: var(--shadow); transition: transform .2s, background .2s;
  display: flex; align-items: center; justify-content: center;
}
.card-add:hover { transform: scale(1.12); background: var(--coral-dark); }
.soldout { font-weight: 800; color: var(--ink-soft); letter-spacing: .05em; font-size: 13px; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
/* Segunda foto al pasar el mouse (referencia: pickyou) */
.product-img .img-hover { position: absolute; inset: 0; opacity: 0; transition: opacity .35s ease; }
.product-card:hover .product-img .img-hover { opacity: 1; }
.img-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--pink); font-size: 34px; }
.price { margin: 4px 2px 12px; font-size: 15px; }
.price s { color: var(--ink-soft); margin-right: 6px; font-weight: 400; }
.price strong { font-family: var(--font-display); font-size: 17px; }

/* ── Tags ── */
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 800; letter-spacing: .03em;
  padding: 3px 10px; border-radius: 999px; margin: 2px; background: var(--cream); color: var(--ink);
}
.tag-oferta { background: var(--mustard); }
.tag-2x1, .tag-3x2 { background: var(--sage); color: #fff; }
.tag-agotado { background: var(--ink); color: var(--cream); }
.product-img .tag { position: absolute; top: 8px; left: 8px; box-shadow: var(--shadow); }
.product-img .tag + .tag { top: 34px; }
.product-img .tag + .tag + .tag { top: 60px; }

/* ── Bestsellers: tarjetas que giran al hacer scroll (referencia: 8enjamin) ── */
.bestsellers {
  background: var(--pink-soft);
  padding: 40px 20px 46px; border-radius: 28px; margin-bottom: 10px;
  text-align: center; overflow: hidden;
}
.bs-title { margin: 0 0 26px; font-size: clamp(26px, 4vw, 38px); }
.bs-grid {
  display: flex; justify-content: center; align-items: stretch;
  gap: 22px; flex-wrap: wrap;
  perspective: 1100px;
}
.bs-flip {
  width: min(250px, 74vw);
  text-align: left;
  opacity: 0;
  transform: rotateY(-85deg) translateY(20px);
  transform-style: preserve-3d;
  transition: transform .9s cubic-bezier(.2, .75, .3, 1), opacity .5s ease;
}
.bs-flip.in { opacity: 1; transform: none; }
.bs-flip.in:hover { transform: rotateY(360deg); }

/* Títulos grandes: coral sólido y nítido, estilo del logo */
.bs-title, .big-head h2, .cat-head h2 {
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  color: var(--coral);
}

/* ── Encabezado grande (referencia: ITEM SNAPS de pickyou) ── */
.big-head { position: relative; text-align: center; padding: 56px 0 6px; }
.big-head h2 { position: relative; z-index: 1; margin: 0; font-size: clamp(30px, 5vw, 52px); font-weight: 800; }
.big-head p { position: relative; z-index: 1; margin: 6px 0 0; }
.big-head-outline {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(60px, 13vw, 150px); line-height: 1; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 2px var(--pink);
  opacity: .5; pointer-events: none; user-select: none;
}

/* ── Buscador ── */
.search-wrap {
  position: relative; max-width: 480px; margin: 22px auto 8px;
}
.search-wrap i {
  position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
  color: var(--coral); font-size: 15px;
}
.search-wrap input {
  width: 100%; padding: 14px 22px 14px 48px;
  border: 2px solid var(--line); border-radius: 999px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.search-wrap input:focus { outline: none; border-color: var(--pink); box-shadow: var(--shadow); }
.search-wrap input::placeholder { color: var(--ink-soft); font-weight: 400; }

/* ── Grilla filtrable de productos ── */
.category-nav { justify-content: center; }
#category-filters { margin: 18px 0 30px; }
#product-grid {
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 28px 16px;
}
.product-card[hidden] { display: none; }
.grid-more { text-align: center; margin: 36px 0 8px; }
#ver-mas { padding: 12px 32px; }
#ver-mas[hidden] { display: none; }

/* ── Botón flotante "regresar arriba" ── */
.back-top {
  position: fixed; bottom: 22px; right: 22px; z-index: 40;
  width: 48px; height: 48px; border-radius: 50%; border: 0;
  background: var(--ink); color: var(--cream); font-size: 17px; cursor: pointer;
  box-shadow: var(--shadow-lift);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
  animation: toastIn .3s ease;
}
.back-top:hover { transform: translateY(-3px); background: var(--coral-dark); }
.back-top[hidden] { display: none; }

/* ── Pestaña lateral OFERTAS (referencia: kaleido) ── */
.offers-tab {
  position: fixed; right: 0; top: 50%; z-index: 45;
  transform: rotate(180deg); writing-mode: vertical-rl;
  background: var(--ink); color: var(--cream);
  border: 0; border-radius: 0 12px 12px 0;
  padding: 16px 10px; cursor: pointer;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  letter-spacing: .12em; text-transform: uppercase;
  transition: background .2s, padding .2s;
}
.offers-tab:hover { background: var(--coral-dark); padding-right: 16px; }
.offers-tab i { transform: rotate(90deg); margin-bottom: 6px; }
.offers-drawer { position: fixed; inset: 0; z-index: 60; background: rgba(61, 52, 54, .45); }
.offers-drawer[hidden] { display: none; }
.offers-panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: min(360px, 90vw);
  background: #fff; padding: 26px; overflow: auto;
  animation: drawerIn .3s ease;
}
@keyframes drawerIn { from { transform: translateX(60px); opacity: 0; } to { transform: none; opacity: 1; } }
.offers-panel h2 i { color: var(--coral); }
.offers-list { list-style: none; padding: 0; }
.offers-list li {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.offers-list li small { flex-basis: 100%; }

/* ── Reveal al hacer scroll ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .bs-flip { opacity: 1; transform: none; transition: none; }
  .ticker-track, .ann-track { animation: none; }
}

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(61, 52, 54, .45);
  display: flex; align-items: center; justify-content: center; z-index: 50; padding: 16px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: #fff; border-radius: 24px; max-width: 480px; width: 100%;
  max-height: 85vh; overflow: auto; padding: 24px; position: relative;
  animation: modalIn .25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 12px; right: 12px; border: 0; width: 36px; height: 36px;
  border-radius: 50%; background: var(--cream); color: var(--ink); font-size: 16px; cursor: pointer;
  transition: background .2s;
}
.modal-close:hover { background: var(--pink); }
.modal-img { border-radius: var(--radius-sm); margin-bottom: 10px; }
.modal-cat { color: var(--mauve); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin: 0; }
.modal-desc { color: var(--ink-soft); line-height: 1.6; }
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.btn-share { border-color: var(--sage); color: var(--sage); background: #fff; }
.btn-share:hover:not(:disabled) { background: var(--sage); color: #fff; border-color: var(--sage); }

/* ── Página de producto (destino al compartir) ── */
.product-page {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 34px; align-items: start; margin: 20px 0 40px;
}
.pp-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pp-gallery img, .pp-gallery .img-placeholder {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: var(--radius-sm); background: var(--cream);
}
.pp-gallery img:only-child { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
.pp-info h1 { font-size: clamp(24px, 3.5vw, 38px); margin: 6px 0 10px; }
.pp-tags { margin: 0 0 10px; }
.pp-tags:empty { display: none; }
.pp-back {
  display: inline-block; margin-bottom: 8px; font-weight: 700; font-size: 14px;
  color: var(--ink-soft); text-decoration: none;
}
.pp-back:hover { color: var(--coral-dark); }
.price-lg strong { font-size: 26px; }
@media (max-width: 720px) {
  .product-page { grid-template-columns: 1fr; gap: 22px; }
}

/* ── Tablas (carrito / cuenta) ── */
.cart-table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.cart-table th {
  font-family: var(--font-display); font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-soft); text-align: left; padding: 10px 8px; border-bottom: 2px solid var(--line);
}
.cart-table td { padding: 12px 8px; border-bottom: 1px solid var(--line); }
.cart-prod img { width: 54px; height: 54px; object-fit: cover; border-radius: var(--radius-sm); vertical-align: middle; margin-right: 10px; }
.cart-table input[type=number] {
  width: 68px; padding: 8px; border: 2px solid var(--line); border-radius: 999px;
  text-align: center; font-family: var(--font-body); font-weight: 700;
}
.cart-summary { max-width: 400px; margin-left: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.totals { width: 100%; border-collapse: collapse; }
.totals td { padding: 5px 0; }
.totals td:last-child { text-align: right; font-weight: 700; }
.totals .grand td { font-family: var(--font-display); font-weight: 800; font-size: 19px; border-top: 2px solid var(--line); padding-top: 10px; }
.discount { color: var(--sage); }
/* Sugerencias de venta cruzada en el carrito */
.suggest { margin: 44px 0 10px; }
.suggest h2 { margin-bottom: 2px; }
.suggest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 190px)); gap: 16px; margin-top: 14px; }
.s-card { display: flex; flex-direction: column; }
.s-img {
  aspect-ratio: 1; background: var(--cream); border-radius: var(--radius-sm);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  color: var(--pink); font-size: 26px;
}
.s-img img { width: 100%; height: 100%; object-fit: cover; }
.s-card h3 { font-size: 13.5px; margin: 8px 0 2px; font-weight: 700; }
.s-card .price { margin: 0 0 8px; font-size: 13.5px; }
.s-card .btn { align-self: flex-start; }

.coupon-form { display: flex; gap: 8px; margin-bottom: 14px; }
.coupon-form input { flex: 1; padding: 10px 14px; border: 2px solid var(--line); border-radius: 999px; font-family: var(--font-body); }

/* ── Checkout ── */
.checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: start; }
@media (max-width: 820px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout-form label { display: block; margin: 10px 0; font-weight: 600; font-size: 14px; }
.checkout-form input:not([type=radio]):not([type=checkbox]),
.checkout-form textarea {
  width: 100%; padding: 11px 14px; margin-top: 5px;
  border: 2px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px;
  transition: border-color .2s;
}
.checkout-form input:focus, .checkout-form textarea:focus { outline: none; border-color: var(--pink); }
.reclamos-page { max-width: 640px; margin: 0 auto; }
.reclamos-page h1 i { color: var(--coral); }
.politicas h2 { margin-top: 30px; }
.politicas ul { padding-left: 20px; line-height: 1.7; }
.politicas p { line-height: 1.7; }
.checkout-form h2 { margin: 28px 0 8px; font-size: 19px; }
.checkout-form h2 i { color: var(--coral); margin-right: 8px; }
.radio { font-weight: 600; }
.order-summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; position: sticky; top: 90px; }
.order-summary ul { list-style: none; padding: 0; }
.order-summary li { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; font-size: 14px; }
.bank-info { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 18px; margin: 12px 0; }
.pickup-address { background: var(--cream); padding: 12px 14px; border-radius: var(--radius-sm); }
.guest-note { background: var(--pink-soft); padding: 12px 18px; border-radius: var(--radius-sm); font-weight: 600; }
.free-ship-note {
  background: var(--sage); color: #fff; border-radius: var(--radius-sm);
  padding: 12px 14px; text-align: center; font-family: var(--font-display); font-weight: 700;
  animation: modalIn .3s ease;
}
.free-ship-note i { margin-right: 8px; }

/* ── Formularios sueltos ── */
.form-narrow { max-width: 400px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.form-narrow label { display: block; margin: 12px 0; font-weight: 600; font-size: 14px; }
.form-narrow input {
  width: 100%; padding: 11px 14px; margin-top: 5px;
  border: 2px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px;
}
.form-narrow input:focus { outline: none; border-color: var(--pink); }
.account-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }

/* ── Estados de pedido ── */
.status { padding: 3px 12px; border-radius: 999px; font-size: 12px; font-weight: 800; background: var(--cream); white-space: nowrap; }
.status-pendiente_pago { background: var(--mustard); }
.status-procesando { background: var(--pink); }
.status-enviado { background: var(--mauve); color: #fff; }
.status-completado { background: var(--sage); color: #fff; }
.status-cancelado { background: var(--ink); color: var(--cream); }
.ship-note { display: block; margin: 2px 0 0 26px; font-weight: 400; }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 24px; right: 24px; padding: 14px 22px;
  border-radius: 999px; color: #fff; z-index: 100; font-weight: 700;
  box-shadow: var(--shadow-lift); animation: toastIn .3s ease;
}
@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.toast-ok { background: var(--sage); }
.toast-error { background: var(--coral-dark); }

/* ── Instagram + footer ── */
.insta-feed { max-width: 1140px; margin: 50px auto 0; padding: 0 20px; text-align: center; }
.insta-feed h2 i { color: var(--mauve); margin-right: 8px; }
.site-footer {
  background: var(--cream); margin-top: 50px; padding: 40px 24px 30px;
  color: var(--ink); font-size: 14px;
}
.newsletter {
  max-width: 480px; margin: 0 auto 36px; text-align: center;
  padding-bottom: 30px; border-bottom: 1px solid var(--line);
}
.newsletter p { margin: 4px 0; }
.newsletter-form { display: flex; gap: 8px; margin: 14px 0 6px; }
.newsletter-form input {
  flex: 1; padding: 11px 18px; border: 2px solid var(--line); border-radius: 999px;
  font-family: var(--font-body); font-size: 14px; background: #fff;
}
.newsletter-form input:focus { outline: none; border-color: var(--pink); }
.btn-community {
  margin-top: 12px; background: #25d366; border-color: #25d366; color: #fff;
  font-weight: 800;
}
.btn-community:hover:not(:disabled) { background: #1ebe5a; border-color: #1ebe5a; }
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px;
}
.footer-logo { height: 22px; width: auto; margin-bottom: 14px; }
.footer-title {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .08em; color: var(--coral-dark);
  margin: 0 0 10px;
}
.footer-col p { margin: 6px 0; }
.footer-col a { color: var(--ink); text-decoration: none; font-weight: 600; }
.footer-col a:hover { color: var(--coral-dark); }
.footer-col i { color: var(--coral); width: 18px; }
.wa-float {
  position: fixed; bottom: 22px; left: 22px; width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 26px; text-decoration: none; box-shadow: var(--shadow-lift); z-index: 40;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

.muted { color: var(--ink-soft); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
