/* ============ STICKDIS — rosa, dorado y brillo ============ */
:root {
  --rosa-bg: #FDF3F6;
  --rosa-suave: #F9DCE4;
  --rosa: #F2A0B0;
  --rosa-fuerte: #E87D96;
  --magenta: #C2286B;
  --magenta-osc: #9E1E56;
  --oro-claro: #F9E7A0;
  --oro: #E3B341;
  --oro-osc: #A87710;
  --tinta: #55253A;
  --blanco: #FFFFFF;
  --verde-wsp: #25D366;
  --verde-wsp-osc: #1DA851;
  --sombra: 0 10px 30px rgba(194, 40, 107, .12);
  --radio: 20px;
  --fuente: 'Poppins', sans-serif;
  --script: 'Lobster Two', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fuente);
  background: var(--rosa-bg);
  background-image: radial-gradient(rgba(194, 40, 107, .05) 1.1px, transparent 1.1px);
  background-size: 24px 24px;
  color: var(--tinta);
  overflow-x: hidden;
}
.caveat {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 1.25em;
}
img { max-width: 100%; }
a { color: var(--magenta); text-decoration: none; }

.gold-text {
  background: linear-gradient(177deg, #FFF6CF 0%, #F7DC85 20%, #E3B341 40%, #9C7112 55%, #EBC65F 70%, #FBEFC0 84%, #A87710 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Íconos SVG propios */
.ico { vertical-align: -3px; flex: none; }
.card-add, .tab, .btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; }

/* Patrón del logo (el papel real del feed de @stickdis) */
.logo-pattern {
  position: absolute;
  inset: -70px;
  pointer-events: none;
  z-index: 0;
  background:
    url("../assets/logo-circle.png") 0 0 / 92px auto repeat,
    url("../assets/logo-circle.png") 46px 54px / 92px auto repeat;
  opacity: .05;
  transform: rotate(-7deg);
}

/* Pinza metálica — la firma de @stickdis sosteniendo cada foto */
.pinza {
  position: absolute;
  top: -34px; left: 50%;
  width: 46px; height: 66px;
  transform: translateX(-50%) rotate(-4deg);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 84'%3E%3Cdefs%3E%3ClinearGradient id='m' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='%23F4F5F7'/%3E%3Cstop offset='.45' stop-color='%23A6AAB3'/%3E%3Cstop offset='.6' stop-color='%23E7E9ED'/%3E%3Cstop offset='1' stop-color='%2383878F'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M27 6 C22 32 18 54 15 80' stroke='url(%23m)' stroke-width='6.5' stroke-linecap='round' fill='none'/%3E%3Cpath d='M33 6 C38 32 42 54 45 80' stroke='url(%23m)' stroke-width='6.5' stroke-linecap='round' fill='none'/%3E%3Crect x='21' y='2' width='18' height='13' rx='4' fill='url(%23m)'/%3E%3C/svg%3E") no-repeat center / contain;
  filter: drop-shadow(0 3px 4px rgba(85, 37, 58, .28));
  z-index: 2;
}

/* ---------- Topbar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--magenta), var(--rosa-fuerte), var(--magenta));
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
}
.topbar-track {
  display: inline-flex;
  gap: 14px;
  padding: 7px 16px;
  animation: marquee 22s linear infinite;
}
.topbar-track .dot { opacity: .6; }
@keyframes marquee {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}
@media (min-width: 900px) {
  .topbar-track { animation: none; width: 100%; justify-content: center; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 14px rgba(194, 40, 107, .08);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-img { width: 42px; height: 42px; border-radius: 50%; box-shadow: 0 0 0 2px var(--rosa); }
.brand-img.hide { display: none; }
.brand-text {
  font-family: var(--script);
  font-style: italic;
  font-size: 1.5rem;
  background: linear-gradient(160deg, #E3B341, #A87710);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links { display: flex; gap: 22px; }
.nav-links a { font-weight: 600; font-size: .92rem; color: var(--tinta); transition: color .2s; }
.nav-links a:hover { color: var(--magenta); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  position: relative;
  border: none;
  background: var(--rosa-suave);
  font-size: 1.2rem;
  padding: 9px 14px;
  border-radius: 99px;
  cursor: pointer;
  transition: transform .15s;
}
.cart-btn:hover { transform: scale(1.06); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--magenta);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  min-width: 20px; height: 20px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-btn.bump { animation: bump .4s; }
@keyframes bump { 30% { transform: scale(1.25); } }
.hamburger { display: none; border: none; background: none; font-size: 1.5rem; color: var(--tinta); cursor: pointer; }

@media (max-width: 820px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 18px 24px;
    gap: 16px;
    box-shadow: 0 14px 24px rgba(194, 40, 107, .12);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
}

/* ---------- Banner cotización ---------- */
.quote-banner {
  background: linear-gradient(90deg, #43152B, #5F1F3D);
  text-align: center;
  padding: 10px 16px;
}
.quote-banner a { color: #F6D9E2; font-size: .86rem; }
.quote-banner b { color: var(--oro-claro); }
.quote-pill {
  display: inline-block;
  background: linear-gradient(160deg, #F5D879, #DBA827);
  color: #5A3B00;
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  margin-right: 10px;
  letter-spacing: .5px;
}

/* ---------- Franja de promesas ---------- */
.promesas {
  max-width: 1120px;
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.promesa {
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sombra);
  transition: transform .2s;
}
.promesa:nth-child(odd) { transform: rotate(-.7deg); }
.promesa:nth-child(even) { transform: rotate(.7deg); }
.promesa:hover { transform: rotate(0) translateY(-3px); }
.promesa-ico {
  width: 42px; height: 42px;
  flex: none;
  border-radius: 12px;
  background: linear-gradient(160deg, #F9E7A0, #EEC96A);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(201, 146, 43, .3);
}
.promesa b { display: block; font-size: .88rem; color: var(--tinta); }
.promesa small { font-size: .74rem; color: #9A6478; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: 72px 20px 80px;
  background:
    radial-gradient(circle at 15% 20%, rgba(249, 231, 160, .35), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(242, 160, 176, .35), transparent 45%),
    linear-gradient(180deg, #FBE3EA 0%, var(--rosa-bg) 100%);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "✦";
  position: absolute;
  color: var(--oro);
  opacity: .7;
  font-size: 1.4rem;
  animation: twinkle 2.6s ease-in-out infinite;
}
.hero::before { top: 18%; left: 12%; }
.hero::after { bottom: 22%; right: 10%; animation-delay: 1.2s; }
@keyframes twinkle { 0%,100% { opacity: .25; transform: scale(.8);} 50% { opacity: .9; transform: scale(1.15);} }
.hero-glow {
  position: absolute;
  inset: auto;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(242,160,176,.45), transparent 65%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 780px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: #fff;
  border: 2px dashed var(--rosa);
  color: var(--magenta);
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 99px;
  box-shadow: var(--sombra);
  transform: rotate(-1.5deg);
}
.chip-r1 { transform: rotate(-1.8deg); }
.chip-r2 { transform: rotate(1.2deg); }
.chip-r3 { transform: rotate(-1deg); }
a.chip:hover { transform: rotate(0) scale(1.04); transition: transform .2s; }
.hero-brand {
  display: block;
  width: clamp(110px, 18vw, 150px);
  margin: 22px auto -6px;
  filter: drop-shadow(0 12px 28px rgba(194, 40, 107, .35));
  animation: floaty 4s ease-in-out infinite;
}
.hero-logo {
  font-family: var(--script);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 5.5rem);
  line-height: 1;
  margin: 18px 0 6px;
  background: linear-gradient(177deg, #FFF6CF 0%, #F7DC85 20%, #E3B341 40%, #9C7112 55%, #EBC65F 70%, #FBEFC0 84%, #A87710 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 0 #FFF8DC) drop-shadow(0 3px 1px rgba(122, 88, 7, .45)) drop-shadow(0 6px 0 rgba(85, 37, 58, .1)) drop-shadow(0 14px 22px rgba(194, 40, 107, .22));
}
.hero-tagline { font-size: clamp(1.15rem, 3.4vw, 1.6rem); font-weight: 700; color: var(--magenta); }
.hero-tagline b { color: var(--magenta-osc); }
.hero-sub { margin: 14px auto 26px; max-width: 560px; font-size: .98rem; line-height: 1.65; color: #7A4257; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.chip {
  background: #fff;
  padding: 9px 16px;
  border-radius: 99px;
  font-size: .82rem;
  color: #7A4257;
  box-shadow: var(--sombra);
}
.chip b { color: var(--magenta); }

/* ---------- Polaroids del hero ---------- */
.hero-polaroid {
  position: absolute;
  width: 168px;
  background: #fff;
  padding: 9px 9px 6px;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(85, 37, 58, .22);
  z-index: 3;
}
.hero-polaroid::before {
  content: "";
  position: absolute;
  top: -30px; left: 50%;
  width: 40px; height: 56px;
  transform: translateX(-50%) rotate(3deg);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 84'%3E%3Cdefs%3E%3ClinearGradient id='m' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='%23F4F5F7'/%3E%3Cstop offset='.45' stop-color='%23A6AAB3'/%3E%3Cstop offset='.6' stop-color='%23E7E9ED'/%3E%3Cstop offset='1' stop-color='%2383878F'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M27 6 C22 32 18 54 15 80' stroke='url(%23m)' stroke-width='6.5' stroke-linecap='round' fill='none'/%3E%3Cpath d='M33 6 C38 32 42 54 45 80' stroke='url(%23m)' stroke-width='6.5' stroke-linecap='round' fill='none'/%3E%3Crect x='21' y='2' width='18' height='13' rx='4' fill='url(%23m)'/%3E%3C/svg%3E") no-repeat center / contain;
  filter: drop-shadow(0 3px 4px rgba(85, 37, 58, .25));
}
.hero-polaroid img { width: 100%; height: 140px; object-fit: cover; border-radius: 3px; display: block; }
.hero-polaroid span {
  display: block;
  text-align: center;
  font-family: var(--script);
  font-style: italic;
  font-size: .95rem;
  color: #9A6478;
  padding: 6px 0 4px;
}
.hp-left { left: 4%; top: 24%; transform: rotate(-7deg); animation: floaty 4.5s ease-in-out infinite; }
.hp-right { right: 4%; top: 34%; transform: rotate(6deg); animation: floaty 5s ease-in-out infinite 1s; }
@media (max-width: 1150px) { .hero-polaroid { display: none; } }

/* ---------- Subrayado a mano en títulos ---------- */
.section-title .gold-text {
  position: relative;
  white-space: nowrap;
}
.section-title .gold-text::after {
  content: "";
  position: absolute;
  left: 2%; right: 2%;
  bottom: -8px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 18 3, 34 7 T 66 7 T 98 6 T 118 8' fill='none' stroke='%23E3B341' stroke-width='3.4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

/* ---------- Links de tarjeta ---------- */
.card-link { color: inherit; display: block; }
.card-link:hover h3, .card-body h3 .card-link:hover { color: var(--magenta); }
.card .card-media { cursor: pointer; }

/* ---------- Botones ---------- */
.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: var(--fuente);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 26px;
  border-radius: 99px;
  transition: transform .15s, box-shadow .15s, filter .15s;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(160deg, #F5D879, #DBA827 60%, #B98A1C);
  color: #5A3B00;
  box-shadow: 0 8px 22px rgba(219, 168, 39, .4);
}
.btn-magenta {
  background: linear-gradient(160deg, var(--rosa-fuerte), var(--magenta));
  color: #fff;
  box-shadow: 0 8px 22px rgba(194, 40, 107, .35);
}
.btn-wsp {
  background: linear-gradient(160deg, var(--verde-wsp), var(--verde-wsp-osc));
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .35);
}
.btn-outline {
  background: #fff;
  color: var(--magenta);
  border: 2px solid var(--rosa);
}

/* ---------- Secciones ---------- */
.section { padding: 72px 20px; max-width: 1120px; margin: 0 auto; }
.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  font-weight: 800;
  color: var(--tinta);
}
.section-sub { text-align: center; color: #9A6478; margin: 10px 0 40px; }

/* ---------- Cómo funciona ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.step {
  position: relative;
  background: #fff;
  border-radius: var(--radio);
  padding: 34px 24px 26px;
  text-align: center;
  box-shadow: var(--sombra);
}
.step-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(160deg, #F5D879, #C9922B);
  color: #5A3B00;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(201, 146, 43, .4);
}
.step-emoji { font-size: 2.4rem; margin-bottom: 10px; }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--magenta-osc); }
.step p { font-size: .9rem; color: #7A4257; line-height: 1.6; }

/* ---------- Pack Emprende ---------- */
.pack { padding-top: 20px; }
.pack-card {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, #FFF6F8 0%, #FDE7ED 55%, #FBD9E3 100%);
  border: 2px solid var(--rosa-suave);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--sombra);
  position: relative;
  overflow: hidden;
}
.pack-card::after {
  content: "✨";
  position: absolute;
  top: 18px; right: 22px;
  font-size: 1.6rem;
}
.pack-flag {
  display: inline-block;
  background: var(--magenta);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.pack-info h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 16px; }
.pack-list { list-style: none; display: grid; gap: 9px; margin-bottom: 20px; }
.pack-list li { font-size: .97rem; color: #6B3448; }
.pack-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.pack-price {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(160deg, #E3B341, #A87710);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pack-note { font-size: .85rem; color: #9A6478; }
.pack-art { display: flex; justify-content: center; }
.pack-art-circle {
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #FBD9E3, var(--rosa));
  box-shadow: inset 0 0 0 10px rgba(255,255,255,.5), 0 18px 40px rgba(232, 125, 150, .45);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  overflow: hidden;
}
.pack-art-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px rgba(255,255,255,.5);
}
.pack-art-e { font-size: 3rem; animation: floaty 3s ease-in-out infinite; }
.pack-art-e:nth-child(2) { animation-delay: .5s; }
.pack-art-e:nth-child(3) { animation-delay: 1s; }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }
@media (max-width: 760px) {
  .pack-card { grid-template-columns: 1fr; padding: 30px 22px; }
  .pack-art { order: -1; }
  .pack-art-circle { width: 150px; height: 150px; }
  .pack-art-e { font-size: 2rem; }
}

/* ---------- Favoritos (carrusel) ---------- */
.favs { padding-top: 30px; padding-bottom: 30px; }
.favs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.favs-badge {
  display: inline-block;
  color: var(--magenta);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  background: #fff;
  border: 1px solid var(--rosa-suave);
  border-radius: 99px;
  padding: 5px 14px;
  margin-bottom: 10px;
}
.favs-arrows { display: flex; gap: 8px; }
.fav-arrow {
  width: 42px; height: 42px;
  border: 2px solid var(--rosa-suave);
  background: #fff;
  color: var(--magenta);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: all .2s;
}
.fav-arrow:hover { background: var(--magenta); border-color: var(--magenta); color: #fff; }
.favs-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 4px 14px;
}
.favs-track::-webkit-scrollbar { display: none; }
.favs-track .card { flex: 0 0 250px; }

/* ---------- Buscador ---------- */
.search-wrap { max-width: 520px; margin: 0 auto 22px; }
.search-input {
  width: 100%;
  font-family: var(--fuente);
  font-size: .95rem;
  padding: 14px 20px;
  border: 2px solid var(--rosa-suave);
  border-radius: 99px;
  background: #fff;
  color: var(--tinta);
  box-shadow: var(--sombra);
  transition: border-color .2s;
}
.search-input:focus { outline: none; border-color: var(--rosa-fuerte); }
.search-input::placeholder { color: #C495A5; }
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  color: #9A6478;
  padding: 40px 16px;
  font-size: .95rem;
  line-height: 1.8;
}

/* ---------- Catálogo ---------- */
.tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.tab {
  border: 2px solid var(--rosa-suave);
  background: #fff;
  color: #9A6478;
  font-family: var(--fuente);
  font-weight: 700;
  font-size: .88rem;
  padding: 10px 20px;
  border-radius: 99px;
  cursor: pointer;
  transition: all .2s;
}
.tab.active, .tab:hover {
  background: linear-gradient(160deg, var(--rosa-fuerte), var(--magenta));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px rgba(194, 40, 107, .3);
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border: 5px solid #fff;
  border-radius: 18px 24px 20px 26px;
  overflow: hidden;
  box-shadow: 0 2px 0 rgba(85, 37, 58, .05), 0 14px 30px -8px rgba(194, 40, 107, .2);
  display: flex;
  flex-direction: column;
  transition: rotate .25s, translate .25s, box-shadow .25s;
}
.grid { padding: 8px; }
.grid .card:nth-child(4n+1) { rotate: -1.1deg; }
.grid .card:nth-child(4n+2) { rotate: .9deg; }
.grid .card:nth-child(4n+3) { rotate: -.6deg; }
.grid .card:nth-child(4n) { rotate: 1.2deg; }
.favs-track .card:nth-child(odd) { rotate: -1deg; }
.favs-track .card:nth-child(even) { rotate: 1deg; }
.card:hover { rotate: 0deg; translate: 0 -6px; box-shadow: 0 20px 40px -8px rgba(194, 40, 107, .28); }
.card-media {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--rosa-suave), #FCE9EF);
  position: relative;
}
.card-media::after {
  content: "✦";
  position: absolute;
  top: 10px; right: 14px;
  color: var(--oro);
  font-size: .95rem;
  opacity: .8;
}
.card-tag {
  position: absolute;
  top: 10px; left: 12px;
  background: var(--magenta);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  transform: rotate(-4deg);
  box-shadow: 0 0 0 2px #fff, 0 3px 8px rgba(194,40,107,.35);
}
.card-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: 1rem; color: var(--tinta); }
.card-desc { font-size: .82rem; color: #9A6478; line-height: 1.5; flex: 1; }
.card-variant {
  width: 100%;
  font-family: var(--fuente);
  font-size: .85rem;
  font-weight: 600;
  color: var(--tinta);
  padding: 10px 12px;
  border: 2px solid var(--rosa-suave);
  border-radius: 12px;
  background: #FFF9FB;
  cursor: pointer;
}
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.card-price { font-size: 1.25rem; font-weight: 800; color: var(--magenta); }
.card-add {
  border: none;
  background: linear-gradient(160deg, var(--rosa-fuerte), var(--magenta));
  color: #fff;
  font-family: var(--fuente);
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 16px;
  border-radius: 99px;
  cursor: pointer;
  transition: transform .15s, filter .15s;
}
.card-add:hover { transform: scale(1.05); filter: brightness(1.08); }
.card-quote {
  border: 2px solid var(--verde-wsp);
  background: #fff;
  color: var(--verde-wsp-osc);
}
.catalog-note { text-align: center; margin-top: 36px; color: #9A6478; font-size: .93rem; }
.catalog-note a { font-weight: 700; }

/* ---------- Testimonios (estilo comentario de Instagram) ---------- */
.opiniones { background: transparent; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.testi {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 26px 20px 16px;
  box-shadow: 0 8px 24px rgba(85, 37, 58, .12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s;
}
.t-rot1 { rotate: -1.6deg; }
.t-rot2 { rotate: 1.2deg; }
.t-rot3 { rotate: -.8deg; }
.t-rot4 { rotate: 1.8deg; }
.testi { transition: rotate .25s, scale .25s; }
.testi:hover { rotate: 0deg; scale: 1.03; }
.testi-tape {
  position: absolute;
  top: -32px; left: 50%;
  width: 44px; height: 62px;
  transform: translateX(-50%) rotate(-3deg);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 84'%3E%3Cdefs%3E%3ClinearGradient id='m' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='%23F4F5F7'/%3E%3Cstop offset='.45' stop-color='%23A6AAB3'/%3E%3Cstop offset='.6' stop-color='%23E7E9ED'/%3E%3Cstop offset='1' stop-color='%2383878F'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M27 6 C22 32 18 54 15 80' stroke='url(%23m)' stroke-width='6.5' stroke-linecap='round' fill='none'/%3E%3Cpath d='M33 6 C38 32 42 54 45 80' stroke='url(%23m)' stroke-width='6.5' stroke-linecap='round' fill='none'/%3E%3Crect x='21' y='2' width='18' height='13' rx='4' fill='url(%23m)'/%3E%3C/svg%3E") no-repeat center / contain;
  filter: drop-shadow(0 3px 4px rgba(85, 37, 58, .28));
  z-index: 2;
}
.t-rot2 .testi-tape { transform: translateX(-50%) rotate(4deg); }
.t-rot3 .testi-tape { transform: translateX(-50%) rotate(-1deg); }
.t-rot4 .testi-tape { transform: translateX(-50%) rotate(6deg); }
.testi-head { display: flex; align-items: center; gap: 10px; }
.testi-head b { font-size: .88rem; color: var(--tinta); display: block; }
.testi-head small { font-size: .72rem; color: #A87B8C; }
.testi-ig { margin-left: auto; font-size: .95rem; opacity: .8; }
.testi-avatar {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--rosa-suave);
}
.av1 { background: linear-gradient(140deg, #E87D96, #C2286B); }
.av2 { background: linear-gradient(140deg, #E3B341, #A87710); }
.av3 { background: linear-gradient(140deg, #B583E0, #7E3FA8); }
.av4 { background: linear-gradient(140deg, #F2A0B0, #E8657F); }
.testi p { font-size: .93rem; line-height: 1.6; color: #6B3448; }
.testi-foot {
  font-size: .74rem;
  color: #A87B8C;
  border-top: 1px solid #FBEDF1;
  padding-top: 9px;
}
.opiniones-cta { text-align: center; margin-top: 34px; }

/* ---------- Detalle de producto (modal) ---------- */
.pd-overlay {
  position: fixed; inset: 0;
  background: rgba(85, 37, 58, .5);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  z-index: 95;
}
.pd-overlay.open { opacity: 1; pointer-events: auto; }
.pd-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.92);
  width: min(820px, calc(100vw - 28px));
  max-height: min(88vh, 700px);
  background: #FFF9FB;
  border-radius: 24px;
  z-index: 96;
  opacity: 0;
  pointer-events: none;
  transition: all .28s cubic-bezier(.2, .8, .3, 1.1);
  box-shadow: 0 30px 80px rgba(85, 37, 58, .35);
  overflow: hidden;
}
.pd-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.pd-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 36px; height: 36px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--magenta);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(85, 37, 58, .18);
}
.pd-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  max-height: inherit;
}
.pd-media {
  position: relative;
  background: linear-gradient(135deg, var(--rosa-suave), #FCE9EF);
  min-height: 280px;
}
.pd-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-media .card-tag { top: 16px; left: 16px; font-size: .74rem; }
.pd-emoji { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 5rem; }
.pd-info { padding: 30px 28px; overflow-y: auto; max-height: min(88vh, 700px); }
.pd-info h3 { font-size: 1.5rem; color: var(--tinta); margin-bottom: 10px; }
.pd-detail { font-size: .92rem; line-height: 1.65; color: #7A4257; margin-bottom: 14px; }
.pd-includes { list-style: none; display: grid; gap: 6px; margin-bottom: 14px; }
.pd-includes li { font-size: .85rem; color: #6B3448; }
.pd-trust {
  font-size: .78rem;
  color: var(--magenta);
  background: #FDEFF4;
  border-radius: 10px;
  padding: 9px 12px;
  margin-bottom: 16px;
}
.pd-controls { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.pd-variant { flex: 1; min-width: 170px; }
.pd-single { font-size: .85rem; font-weight: 600; color: #9A6478; flex: 1; }
.pd-qty {
  display: flex; align-items: center; gap: 8px;
  background: #fff;
  border: 2px solid var(--rosa-suave);
  border-radius: 99px;
  padding: 7px 12px;
}
.pd-price { font-size: 1.7rem; font-weight: 800; color: var(--magenta); margin-bottom: 14px; }
.pd-buy { width: 100%; }
.pd-ask { display: block; text-align: center; font-size: .82rem; font-weight: 600; margin-top: 12px; }
@media (max-width: 640px) {
  .pd-content { grid-template-columns: 1fr; overflow-y: auto; max-height: 88vh; }
  .pd-media { min-height: 200px; max-height: 240px; }
  .pd-info { overflow: visible; max-height: none; padding: 22px 20px 28px; }
  .pd-buy { position: sticky; bottom: 8px; z-index: 2; box-shadow: 0 8px 22px rgba(194, 40, 107, .35), 0 -14px 16px #FFF9FB; }
}
.footer-inner { position: relative; z-index: 1; }
.footer-copy { position: relative; z-index: 1; }

/* ---------- Envíos ---------- */
.envio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.envio-card {
  background: #fff;
  border-radius: var(--radio);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--sombra);
  border-top: 4px solid var(--rosa);
}
.envio-emoji { font-size: 2.4rem; margin-bottom: 10px; }
.envio-card h3 { color: var(--magenta-osc); margin-bottom: 6px; }
.envio-precio { font-size: 1.5rem; font-weight: 800; color: var(--magenta); margin-bottom: 8px; }
.envio-precio.gratis { color: var(--verde-wsp-osc); }
.envio-card p { font-size: .88rem; color: #7A4257; line-height: 1.55; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--sombra);
  padding: 0 22px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: .96rem;
  padding: 18px 0;
  color: var(--tinta);
  list-style: none;
  position: relative;
  padding-right: 34px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  color: var(--magenta);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 0 18px; font-size: .9rem; line-height: 1.65; color: #7A4257; }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  margin-top: 70px;
  background: linear-gradient(160deg, #5F1F3D, #43152B);
  color: #F6D9E2;
  padding: 56px 20px 26px;
}
.footer::before {
  content: "";
  position: absolute;
  top: -26px; left: 0; right: 0;
  height: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 28' preserveAspectRatio='none'%3E%3Cpath d='M0 28 Q 20 4 40 16 T 80 12 T 120 18 T 160 10 L 160 28 Z' fill='%235F1F3D'/%3E%3C/svg%3E") repeat-x bottom / 160px 28px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
}
.footer-logo {
  font-family: var(--script);
  font-style: italic;
  font-size: 2.1rem;
  background: linear-gradient(160deg, #F9E7A0, #E3B341);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-brand p { margin-top: 12px; font-size: .88rem; line-height: 1.7; opacity: .85; }
.footer-col h4 { color: #fff; margin-bottom: 14px; font-size: .95rem; }
.footer-col a { display: block; color: #F6D9E2; font-size: .88rem; margin-bottom: 10px; opacity: .9; }
.footer-col a:hover { color: var(--oro-claro); }
.footer-copy { text-align: center; margin-top: 42px; font-size: .78rem; opacity: .6; }
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- FAQ CTA ---------- */
.faq-cta { text-align: center; margin-top: 30px; }
.faq-cta p { color: #9A6478; font-size: .93rem; margin-bottom: 12px; }

/* ---------- Burbuja WhatsApp ---------- */
.wsp-bubble {
  position: fixed;
  bottom: 34px; right: 92px;
  z-index: 60;
  background: #fff;
  color: var(--tinta);
  font-size: .85rem;
  font-weight: 600;
  padding: 12px 34px 12px 16px;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 10px 30px rgba(85, 37, 58, .22);
  max-width: 230px;
  opacity: 0;
  transform: translateY(8px);
  transition: all .4s;
  pointer-events: none;
}
.wsp-bubble.show { opacity: 1; transform: none; pointer-events: auto; }
.wsp-bubble-close {
  position: absolute;
  top: 6px; right: 8px;
  border: none;
  background: none;
  color: #C495A5;
  font-size: .8rem;
  cursor: pointer;
}

/* ---------- Imagen de producto en cards ---------- */
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-media.has-img { height: 170px; font-size: 0; }
.card-media.has-img::after { display: none; }

/* ---------- WhatsApp flotante ---------- */
.wsp-float {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--verde-wsp), var(--verde-wsp-osc));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.35); }
  50% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* ---------- Carrito ---------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(85, 37, 58, .45);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  z-index: 70;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: #FFF9FB;
  z-index: 80;
  transform: translateX(105%);
  transition: transform .3s cubic-bezier(.2, .8, .3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(85, 37, 58, .25);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: linear-gradient(160deg, var(--rosa-fuerte), var(--magenta));
  color: #fff;
}
.cart-head h3 { font-size: 1.15rem; }
.cart-close { border: none; background: rgba(255,255,255,.2); color: #fff; width: 32px; height: 32px; border-radius: 50%; font-size: 1rem; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 22px; display: grid; gap: 14px; align-content: start; }
.cart-empty { text-align: center; color: #9A6478; padding: 40px 10px; font-size: .93rem; line-height: 1.7; }
.cart-empty .big { font-size: 2.6rem; display: block; margin-bottom: 8px; }
.cart-item {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 4px 14px rgba(194, 40, 107, .08);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.ci-emoji { font-size: 1.7rem; }
.ci-name { font-size: .88rem; font-weight: 700; color: var(--tinta); }
.ci-variant { font-size: .76rem; color: #9A6478; }
.ci-price { font-size: .85rem; font-weight: 700; color: var(--magenta); margin-top: 2px; }
.ci-controls { display: flex; align-items: center; gap: 6px; }
.ci-qty { min-width: 20px; text-align: center; font-weight: 700; font-size: .9rem; }
.ci-btn {
  width: 26px; height: 26px;
  border: none;
  border-radius: 50%;
  background: var(--rosa-suave);
  color: var(--magenta-osc);
  font-weight: 800;
  cursor: pointer;
  font-size: .95rem;
  line-height: 1;
}
.ci-btn:hover { background: var(--rosa); color: #fff; }
.ci-del { background: none; border: none; color: #C88; cursor: pointer; font-size: .85rem; }
.cart-footer { padding: 16px 22px 20px; background: #fff; box-shadow: 0 -6px 18px rgba(194, 40, 107, .08); }
.ship-title { font-size: .85rem; font-weight: 700; margin-bottom: 8px; color: var(--tinta); }
.ship-options { display: grid; gap: 7px; margin-bottom: 14px; }
.ship-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFF9FB;
  border: 2px solid var(--rosa-suave);
  border-radius: 12px;
  padding: 9px 12px;
  font-size: .8rem;
  cursor: pointer;
  transition: border-color .15s;
}
.ship-opt input { accent-color: var(--magenta); }
.ship-opt.sel { border-color: var(--magenta); background: #FDEFF4; }
.ship-opt b { color: var(--magenta); }
.cart-totals { display: grid; gap: 5px; margin-bottom: 12px; }
.cart-totals .row { display: flex; justify-content: space-between; font-size: .88rem; color: #7A4257; }
.cart-totals .row.total {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--magenta-osc);
  border-top: 2px dashed var(--rosa-suave);
  padding-top: 8px;
  margin-top: 4px;
}
.cart-name {
  width: 100%;
  font-family: var(--fuente);
  font-size: .88rem;
  padding: 11px 14px;
  border: 2px solid var(--rosa-suave);
  border-radius: 12px;
  margin-bottom: 10px;
  background: #FFF9FB;
}
.cart-name:focus { outline: none; border-color: var(--rosa); }
.btn-send { width: 100%; font-size: 1rem; }
.btn-send:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.cart-hint { text-align: center; font-size: .72rem; color: #B58; margin-top: 8px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 96px; left: 50%;
  transform: translate(-50%, 20px);
  background: var(--tinta);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 99px;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Por qué Stickdis (barrido lateral ligado al scroll, mecánica Plusafe) ---------- */
.porque-wrap {
  position: relative;
  height: 100vh;
  height: 100svh;
  margin-top: 40px;
}
.porque {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  padding: 0;
}
.porque-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(165deg, #C2286B 0%, #8E1B4E 55%, #6E1039 100%);
  transform: translateX(100%);
  will-change: transform;
}
.porque-pattern {
  z-index: 2;
  inset: -80px -10vw;
  opacity: .06;
  filter: brightness(2.6);
}
.porque-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FBE3EA;
  padding: 30px 24px;
  opacity: 0;
  transform: translateY(60px);
  will-change: transform, opacity;
}
.porque-content > * { max-width: 900px; }
.porque-arrow {
  margin-top: 24px;
  color: #F2B8CC;
  animation: arrowBounce 1s ease-in-out infinite alternate;
}
@keyframes arrowBounce {
  from { transform: translateY(0); }
  to { transform: translateY(12px); }
}
@media (max-height: 700px) {
  .porque-title { font-size: clamp(1.7rem, 5vw, 2.6rem); }
  .porque-stats { margin: 28px 0 26px; }
}
@media (max-width: 700px) {
  .porque-content { padding: 18px 16px; }
  .porque-title { font-size: clamp(1.55rem, 7.5vw, 2.2rem); }
  .porque-title br { display: none; }
  .porque-sub { font-size: .85rem; }
  .porque-sub br { display: none; }
  .porque-stats { gap: 12px; margin: 24px 0 22px; }
  .pstat-num { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .pstat small { font-size: .72rem; }
  .porque-cta { padding: 12px 22px; font-size: .9rem; }
  .porque-arrow { margin-top: 14px; }
}
.porque-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  letter-spacing: 4px;
  font-size: .76rem;
  font-weight: 700;
  color: #F9E7A0;
}
.porque-eyebrow span { display: block; width: 46px; height: 2px; background: #F9E7A0; opacity: .6; border-radius: 2px; }
.porque-title {
  font-size: clamp(2.1rem, 6vw, 3.7rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin: 20px 0 16px;
}
.porque-title em {
  font-family: var(--script);
  font-style: italic;
  background: linear-gradient(177deg, #FFF6CF 0%, #F7DC85 25%, #E3B341 50%, #C9922B 70%, #FBEFC0 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 1px rgba(60, 8, 30, .5));
}
.porque-sub { color: #F2B8CC; font-size: .98rem; line-height: 1.75; }
.porque-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 44px 0 38px;
  width: min(860px, 100%);
}
.pstat-num {
  display: block;
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  font-weight: 800;
  background: linear-gradient(177deg, #FFF6CF, #F7DC85 35%, #E3B341 65%, #EBC65F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pstat small { display: block; margin-top: 6px; color: #F2B8CC; font-size: .8rem; line-height: 1.5; }
.porque-cta { font-size: 1rem; }

/* ---------- Ficha: galería, movimiento y testimonio ---------- */
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.12) translate(-2%, 2%); }
}
.pd-media img.kenburns { animation: kenburns 9s ease-in-out infinite alternate; }
.pd-media { overflow: hidden; }
.pd-thumbs {
  position: absolute;
  bottom: 12px; left: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.pd-thumb {
  width: 52px; height: 52px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  opacity: .85;
  box-shadow: 0 4px 12px rgba(85, 37, 58, .25);
  transition: opacity .15s, box-shadow .15s;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-thumb.sel, .pd-thumb:hover { opacity: 1; box-shadow: 0 0 0 2px var(--magenta), 0 4px 12px rgba(85, 37, 58, .25); }
.pd-testi {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(194, 40, 107, .12);
  rotate: -1deg;
  color: inherit;
}
.pd-testi p { font-size: .85rem; font-style: italic; color: #6B3448; line-height: 1.45; }
.pd-testi small { font-size: .72rem; color: #A87B8C; }
.pd-testi-avatar {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, #E87D96, #C2286B);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--rosa-suave);
}
.pd-testi-link .ico { color: var(--oro); }
.pd-testi-link:hover { box-shadow: 0 6px 16px rgba(194, 40, 107, .22); }

/* ---------- Íconos de secciones ---------- */
.step-ico { color: var(--rosa-fuerte); margin-bottom: 10px; }
.envio-ico { color: var(--magenta); margin-bottom: 10px; }
.promesa-ico { color: #7A5410; }

/* ---------- Miniaturas del carrito ---------- */
.ci-img {
  width: 54px; height: 54px;
  object-fit: cover;
  border-radius: 13px;
  flex: none;
  rotate: -2deg;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--rosa-suave);
}
.cart-empty .big { color: var(--rosa); }
.cart-trust li::before { content: "✓ "; color: var(--oro); font-weight: 800; }

/* ---------- Viñetas corazón (listas de producto) ---------- */
.pd-includes li, .pack-list li {
  padding-left: 22px;
  position: relative;
}
.pd-includes li::before, .pack-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .28em;
  width: 13px; height: 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20s-7.5-4.6-9.2-9C1.5 7.5 3.8 5 6.7 5c2 0 3.7 1.3 5.3 3.2C13.6 6.3 15.3 5 17.3 5c2.9 0 5.2 2.5 3.9 6-1.7 4.4-9.2 9-9.2 9z' fill='%23E8657F'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ---------- Buscador con ícono ---------- */
.search-wrap { position: relative; }
.search-ico {
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  color: #C495A5;
  pointer-events: none;
}
.search-input { padding-left: 46px; }

/* ---------- Bandas de fondo alternadas ---------- */
.como, .opiniones {
  background: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(0 -100vmax);
}
.envios {
  background: #FBE3EA;
  box-shadow: 0 0 0 100vmax #FBE3EA;
  clip-path: inset(0 -100vmax);
}

/* ---------- Confianza en el carrito ---------- */
.cart-trust {
  list-style: none;
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}
.cart-trust li { font-size: .76rem; color: #9A6478; }

/* ---------- Barra móvil de carrito ---------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(85, 37, 58, .18);
  font-size: .88rem;
  font-weight: 700;
  color: var(--tinta);
}
.mobile-bar-btn { padding: 10px 18px; font-size: .85rem; }
@media (max-width: 640px) {
  .mobile-bar.show { display: flex; }
  body.has-bar .wsp-float { bottom: calc(76px + env(safe-area-inset-bottom)); }
  body.has-bar .wsp-bubble { bottom: calc(88px + env(safe-area-inset-bottom)); }
  body.has-bar .toast { bottom: calc(140px + env(safe-area-inset-bottom)); }
}

/* ---------- Toast botón ---------- */
.toast-btn {
  border: none;
  background: rgba(255, 255, 255, .18);
  color: #F9E7A0;
  font-family: var(--fuente);
  font-weight: 700;
  font-size: .82rem;
  padding: 5px 12px;
  border-radius: 99px;
  margin-left: 8px;
  cursor: pointer;
}

/* ---------- Animación reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.js .reveal.vis { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
