/* === FUENTES === */
@font-face {
  font-family: 'Cherolina';
  src: url('../fonts/Cherolina.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* === VARIABLES === */
:root {
  --color-salmon:    #e29275;
  --color-salmon-light: #f0c4b0;
  --color-salmon-pale:  #fdf5f2;
  --color-gray:      #585857;
  --color-gray-light:#a0a09f;
  --color-gray-pale: #f5f5f4;
  --color-white:     #ffffff;
  --color-text:      #3a3a39;

  --font-script: 'Cherolina', cursive;
  --font-body:   'Inter', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);

  --max-w: 1200px;
  --gutter: 24px;
  --section-py: 80px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-script);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* === TIPOGRAFÍA === */
h1, h2, h3, h4 {
  font-family: var(--font-script);
  line-height: 1.2;
  color: var(--color-gray);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
p  { line-height: 1.7; }

em {
  font-style: normal;
  color: var(--color-salmon);
}

/* === UTILIDADES === */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-salmon);
  margin-bottom: 8px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-family: var(--font-body);
  color: var(--color-gray-light);
  font-size: 1rem;
  max-width: 480px;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.center { text-align: center; }
p.center, h2.center { margin-left: auto; margin-right: auto; }

/* === BOTONES === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-salmon);
  color: var(--color-white);
}
.btn-primary:hover { background: #d07f63; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--color-gray);
  border: 1.5px solid var(--color-gray-light);
}
.btn-outline:hover { border-color: var(--color-salmon); color: var(--color-salmon); }

.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--color-salmon);
  border: 1.5px solid var(--color-salmon);
}
.btn-ghost:hover { background: var(--color-salmon); color: var(--color-white); }

.btn-white {
  background: var(--color-white);
  color: var(--color-gray);
}
.btn-white:hover { background: var(--color-salmon-pale); }

.btn-sm { padding: 8px 16px; font-size: .82rem; }

/* === HEADER / NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,146,117,.15);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-logo {
  font-family: var(--font-script);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-salmon);
  flex-shrink: 0;
}
.nav-primary { margin-left: auto; }
.nav-list {
  display: flex;
  gap: 32px;
}
.nav-list a {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--color-gray);
  transition: color .2s;
}
.nav-list a:hover { color: var(--color-salmon); }
.nav-cta { margin-left: 16px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-gray);
  border-radius: 2px;
  transition: all .3s;
}

/* === HERO === */
.hero {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--color-salmon-pale) 0%, var(--color-white) 60%);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-salmon);
  background: rgba(226,146,117,.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.hero-title { margin-bottom: 20px; }
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-gray-light);
  margin-bottom: 36px;
  max-width: 420px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img { width: 100%; height: 420px; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  color: var(--color-gray);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge span { color: #22c55e; font-weight: 700; }

/* === PRODUCTOS === */
.productos {
  padding: var(--section-py) 0;
  background: var(--color-white);
}
.productos-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  cursor: grab;
}
.productos-grid:active { cursor: grabbing; }
.productos-grid::-webkit-scrollbar { height: 4px; }
.productos-grid::-webkit-scrollbar-track { background: var(--color-gray-pale); border-radius: 2px; }
.productos-grid::-webkit-scrollbar-thumb { background: var(--color-salmon-light); border-radius: 2px; }

.producto-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-gray-pale);
  transition: transform .3s ease, box-shadow .3s ease;
}
.producto-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.producto-img-link {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-white);
}
.producto-img-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform .4s ease;
}
.producto-card:hover .producto-img-link img { transform: scale(1.04); }

.producto-info { padding: 18px 20px 20px; }
.producto-categoria {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-salmon);
  display: block;
  margin-bottom: 5px;
}
.producto-nombre {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-gray);
}
.producto-precio {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray);
}

/* === BANNER OCASIONES === */
.banner-ocasiones {
  padding: var(--section-py) 0;
  background: var(--color-white);
}
.banner-intro {
  font-family: var(--font-body);
  color: var(--color-gray-light);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 48px;
}
.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.banner-col { display: flex; flex-direction: column; gap: 16px; }
.banner-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.banner-item:hover img { transform: scale(1.04); }
.banner-item--large { min-height: 360px; }
.banner-item:not(.banner-item--large):not(.banner-item--wide) { min-height: 168px; }
.banner-item--wide {
  width: 100%;
  min-height: 200px;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--color-white);
}
.banner-overlay h3 {
  color: var(--color-white);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.banner-overlay p {
  font-family: var(--font-body);
  font-size: .88rem;
  opacity: .88;
  line-height: 1.5;
}

/* === SOBRE NOSOTROS === */
.sobre-nosotros {
  padding: var(--section-py) 0;
  background: var(--color-white);
}
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sobre-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.sobre-content p {
  font-family: var(--font-body);
  color: var(--color-gray-light);
  margin-bottom: 16px;
  font-size: 1rem;
}
.sobre-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--color-gray-pale);
}
.stat-num {
  display: block;
  font-family: var(--font-script);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-salmon);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-gray-light);
}

/* === VALORES === */
.valores {
  padding: var(--section-py) 0;
  background: var(--color-gray-pale);
}
.valores .section-title { margin-bottom: 56px; }
.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.valor-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(226,146,117,.12);
  color: var(--color-salmon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.valor-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--color-gray);
}
.valor-item p {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--color-gray-light);
}

/* === TESTIMONIOS === */
.testimonios {
  padding: var(--section-py) 0;
  background: var(--color-white);
}
.testimonios .section-title { margin-bottom: 56px; }
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonio-card {
  background: var(--color-gray-pale);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(226,146,117,.12);
}
.stars {
  color: var(--color-salmon);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonio-card blockquote {
  font-family: var(--font-script);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 24px;
}
.testimonio-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.autor-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-salmon);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonio-autor strong {
  display: block;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-gray);
}
.testimonio-autor span {
  font-family: var(--font-body);
  font-size: .78rem;
  color: var(--color-gray-light);
}

/* === BLOG === */
.blog {
  padding: var(--section-py) 0;
  background: var(--color-salmon-pale);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}
.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card:hover .blog-img-wrap img { transform: scale(1.04); }
.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-white);
  color: var(--color-gray);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 1;
}
.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-content h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-content p {
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--color-gray-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.blog-leer-mas {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-salmon);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.blog-leer-mas:hover { gap: 10px; }

/* === FOOTER === */
.site-footer {
  background: var(--color-gray);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-logo {
  font-family: var(--font-script);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-salmon);
  display: block;
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-social a:hover { color: var(--color-salmon); }

.footer-heading {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-family: var(--font-body);
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--color-salmon); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.footer-contact a { transition: color .2s; }
.footer-contact a:hover { color: var(--color-salmon); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom a:hover { color: var(--color-salmon); }

/* === RESPONSIVE: TABLET === */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; }
  .hero-visual { order: 0; max-width: 480px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-subtitle { margin: 0 auto 36px; }
  .productos-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-inner { grid-template-columns: 1fr; gap: 40px; }
  .sobre-img { aspect-ratio: 16/9; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* === RESPONSIVE: MOBILE === */
@media (max-width: 767px) {
  :root { --section-py: 56px; --gutter: 20px; }

  /* nav */
  .nav-primary { display: none; position: fixed; inset: 0; top: 68px; background: var(--color-white); padding: 32px var(--gutter); flex-direction: column; z-index: 99; }
  .nav-primary.is-open { display: flex; }
  .nav-list { flex-direction: column; gap: 8px; }
  .nav-list a { font-size: 1.1rem; padding: 12px 0; border-bottom: 1px solid var(--color-gray-pale); display: block; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }

  /* hero */
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-img { height: 280px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* productos */
  .productos-grid { gap: 16px; }
  .producto-card { flex: 0 0 220px; }
  .section-header { flex-direction: column; align-items: flex-start; }

  /* banner */
  .banner-grid { grid-template-columns: 1fr; }
  .banner-item--large { min-height: 260px; }

  /* sobre */
  .sobre-inner { grid-template-columns: 1fr; gap: 32px; }
  .sobre-img { aspect-ratio: 4/3; }
  .sobre-stats { gap: 24px; }

  /* valores */
  .valores-grid { grid-template-columns: 1fr; gap: 32px; }

  /* testimonios */
  .testimonios-grid { grid-template-columns: 1fr; gap: 20px; }

  /* blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* trust bar */
  .trust-item {
    padding: 14px 16px;
    width: 50%;
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.07);
  }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(0,0,0,.07); }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-bottom: none; }

  /* hero proof */
  .hero-proof { margin-top: 28px; padding-top: 28px; }
  .hero-product-float { display: none; }
  .hero-rating-float { top: 12px; right: 12px; }

  /* newsletter */
  .newsletter-inner { grid-template-columns: 1fr; gap: 36px; }
  .newsletter-input-wrap {
    flex-direction: column;
    border-radius: var(--radius-md);
  }
  .newsletter-input-wrap .btn {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
}

/* === TOPBAR === */
.topbar {
  background: var(--color-salmon);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  text-align: center;
  padding: 9px var(--gutter);
  letter-spacing: .01em;
}
.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
}
.topbar-sep { opacity: .6; }
@media (max-width: 540px) {
  .topbar-sep--hide,
  .topbar-item--hide { display: none; }
}

/* === HERO — NUEVOS ELEMENTOS V2 === */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(226,146,117,.18);
}
.hero-avatars {
  display: flex;
  flex-shrink: 0;
}
.hero-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -9px;
  box-shadow: var(--shadow-sm);
}
.hero-avatar:last-child { margin-right: 0; }
.hero-proof p {
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--color-gray-light);
  line-height: 1.4;
  padding-left: 6px;
  margin-bottom: 0;
}
.hero-proof p strong { color: var(--color-gray); }
.hero-proof-stars {
  color: #f59e0b;
  font-size: .9rem;
  letter-spacing: 1px;
}

.hero-rating-float {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-gray);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-rating-float span:first-child {
  color: #f59e0b;
  font-size: .88rem;
  letter-spacing: 1px;
}

.hero-product-float {
  position: absolute;
  bottom: 72px;
  left: -20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 190px;
}
.hero-product-float img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--color-gray-pale);
  padding: 6px;
  flex-shrink: 0;
}
.hero-float-name {
  display: block;
  font-family: var(--font-body);
  font-size: .74rem;
  color: var(--color-gray-light);
  margin-bottom: 3px;
}
.hero-float-price {
  display: block;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  color: var(--color-gray);
}

/* === TRUST BAR === */
.trust-bar {
  padding: 0;
  background: var(--color-gray-pale);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.trust-items {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  color: var(--color-gray);
  padding: 18px 36px;
  border-right: 1px solid rgba(0,0,0,.07);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--color-salmon); flex-shrink: 0; }

/* === PRODUCTOS — OVERLAY HOVER === */
.producto-img-link { position: relative; }
.producto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(226,146,117,.82);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  border-radius: 0;
}
.producto-card:hover .producto-overlay { opacity: 1; }

/* === TESTIMONIOS — MEJORAS V2 === */
.testimonios-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 52px;
}
.testimonios-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.testimonios-score {
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--color-gray-light);
}
.testimonio-card::before {
  content: '\201C';
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--color-salmon);
  opacity: .22;
  line-height: .5;
  display: block;
  margin-bottom: 12px;
}

/* === NEWSLETTER === */
.newsletter {
  padding: var(--section-py) 0;
  background: var(--color-salmon-pale);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.newsletter-content p:not(.section-eyebrow) {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-gray-light);
  margin-top: 12px;
  max-width: 380px;
}
.newsletter-form { display: flex; flex-direction: column; gap: 14px; }
.newsletter-input-wrap {
  display: flex;
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(226,146,117,.28);
  background: var(--color-white);
}
.newsletter-input-wrap input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--color-text);
  background: transparent;
  outline: none;
}
.newsletter-input-wrap input::placeholder { color: var(--color-gray-light); }
.newsletter-input-wrap .btn {
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  flex-shrink: 0;
}
.newsletter-note {
  font-family: var(--font-body);
  font-size: .78rem;
  color: var(--color-gray-light);
  text-align: center;
  margin: 0;
}

/* === ANIMACIONES === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.is-visible { animation: fadeUp .6s ease forwards; }
.fade-up:nth-child(2) { animation-delay: .1s; }
.fade-up:nth-child(3) { animation-delay: .2s; }
.fade-up:nth-child(4) { animation-delay: .3s; }
.fade-up:nth-child(5) { animation-delay: .4s; }

/* ═══════════════════════════════════════════
   V5 — HERO
════════════════════════════════════════════ */
.hero-v5 {
  position: relative;
  height: 85vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-v5-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-v5-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 10s ease;
}
.hero-v5:hover .hero-v5-img { transform: scale(1.04); }
.hero-v5-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(253,245,242,.78) 0%, rgba(253,245,242,.38) 55%, transparent 100%);
}
.hero-v5-inner {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.hero-v5-content { max-width: 560px; }
.hero-v5-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
  color: var(--color-gray);
}
.hero-v5-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-gray-light);
  margin-bottom: 36px;
  max-width: 420px;
}
.hero-v5-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* ═══════════════════════════════════════════
   V5 — BESTSELLERS
════════════════════════════════════════════ */
.bestsellers {
  padding: var(--section-py) 0;
  background: var(--color-white);
}
.bestsellers .section-eyebrow.center {
  display: block;
  text-align: center;
  margin-bottom: 4px;
}
.bestsellers .section-title.center {
  text-align: center;
}
.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.bs-card { cursor: pointer; }
.bs-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-gray-pale);
  margin-bottom: 14px;
}
.bs-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.bs-card:hover .bs-img-wrap img { transform: scale(1.05); }
.bs-wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--color-salmon);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s, transform .2s;
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.bs-card:hover .bs-wish { opacity: 1; }
.bs-wish:hover { transform: scale(1.12); }
.bs-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-salmon);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 1;
}
.bs-cta-wrap {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  transform: translateY(130%);
  transition: transform .3s ease;
}
.bs-card:hover .bs-cta-wrap { transform: translateY(0); }
.bs-cta-wrap .btn { width: 100%; justify-content: center; }
.bs-info { padding: 0 4px; }
.bs-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray);
  margin-bottom: 5px;
}
.bs-price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-salmon);
}

/* ═══════════════════════════════════════════
   V5 — CATEGORÍAS
════════════════════════════════════════════ */
.categorias {
  padding: var(--section-py) 0;
  background: var(--color-white);
}
.cat-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cat-item {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
}
.cat-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.cat-item:hover .cat-img { transform: scale(1.06); }
.cat-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
}
.cat-label span {
  display: block;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  color: var(--color-gray);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(226,146,117,.2);
  transition: background .3s, color .3s, border-color .3s;
}
.cat-item:hover .cat-label span {
  background: var(--color-salmon);
  color: var(--color-white);
  border-color: var(--color-salmon);
}

/* ═══════════════════════════════════════════
   V5 — COLABORACIONES
════════════════════════════════════════════ */
.colabs {
  padding: var(--section-py) 0;
  background: var(--color-gray-pale);
}
.colabs-intro {
  max-width: 520px;
  margin: 0 auto 56px;
  text-align: center;
}
.colabs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.colab-item {
  position: relative;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.colab-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.colab-item:hover img { transform: scale(1.06); }
.colab-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.44);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  color: var(--color-white);
  transition: background .3s;
}
.colab-item:hover .colab-overlay { background: rgba(0,0,0,.6); }
.colab-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.colab-overlay h3 {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.colab-overlay p {
  font-family: var(--font-body);
  font-size: .88rem;
  opacity: 0;
  line-height: 1.5;
  transition: opacity .35s;
}
.colab-item:hover .colab-overlay p { opacity: .92; }

/* ═══════════════════════════════════════════
   V5 — NEWSLETTER CARD
════════════════════════════════════════════ */
.newsletter-v5 {
  padding: var(--section-py) 0;
  background: var(--color-white);
}
.newsletter-v5-card {
  background: var(--color-salmon-pale);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-v5-deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(226,146,117,.18);
}
.newsletter-v5-deco--tl { width: 120px; height: 120px; top: -40px; left: -40px; }
.newsletter-v5-deco--br { width: 200px; height: 200px; bottom: -60px; right: -60px; }
.newsletter-v5-body {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-v5-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-gray-light);
  margin: 12px auto 32px;
  max-width: 440px;
  line-height: 1.6;
}
.newsletter-v5-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.newsletter-v5-inputs {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
.newsletter-v5-inputs input {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  border: none;
  border-radius: var(--radius-full);
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--color-text);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: box-shadow .2s;
}
.newsletter-v5-inputs input:focus {
  box-shadow: 0 0 0 2px var(--color-salmon-light);
}

/* ═══════════════════════════════════════════
   V5 — RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .bestsellers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .hero-v5 { height: auto; min-height: 72vh; padding: 64px 0; }
  .hero-v5-overlay {
    background: linear-gradient(to bottom, rgba(253,245,242,.85) 0%, rgba(253,245,242,.55) 100%);
  }
  .bestsellers-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .bs-cta-wrap { transform: translateY(0); }
  .bs-wish { opacity: 1; }
  .cat-header { flex-direction: column; align-items: flex-start; }
  .cat-grid { grid-template-columns: 1fr; gap: 14px; }
  .cat-item { aspect-ratio: 16 / 9; }
  .colabs-grid { grid-template-columns: 1fr; gap: 14px; }
  .colab-item { height: 240px; }
  .colab-overlay p { opacity: .88; }
  .newsletter-v5-card { padding: 48px 24px; }
  .newsletter-v5-inputs { flex-direction: column; align-items: stretch; }
  .newsletter-v5-inputs input { max-width: 100%; }
  .newsletter-v5-inputs .btn { width: 100%; justify-content: center; }
}
