/* =========================================================
   RUCAPELLAN — estilo rústico (carbón · kraft · dorado · brasa)
   ========================================================= */
:root {
  /* Charcoal */
  --char: #17110c;
  --char-2: #221a12;
  --char-3: #2e241a;

  /* Brand gold (del logo) */
  --gold: #e7a812;
  --gold-deep: #b97f0a;
  --gold-soft: #f3cd6a;

  /* Ember */
  --ember: #c0391b;
  --ember-2: #e0531f;

  /* Paper / kraft */
  --cream: #f4ead6;
  --cream-2: #efe2c9;
  --card: #fbf5e7;
  --kraft: #e7d4b2;

  /* Ink / lines */
  --ink: #2a2017;
  --ink-soft: #6a584440;
  --ink-soft-2: #6b5844;
  --line: #d9c39d;
  --line-soft: #e6d7ba;

  --wsp: #25d366;

  --display: "Alfa Slab One", Georgia, "Times New Roman", serif;
  --head: "Oswald", system-ui, -apple-system, Segoe UI, sans-serif;
  --body: "Bitter", Georgia, serif;

  --shadow-sm: 0 3px 10px rgba(23, 17, 12, .10);
  --shadow-md: 0 14px 34px rgba(23, 17, 12, .18);
  --radius: 6px;

  /* paper grain (subtle, desaturated) */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(120% 80% at 50% -10%, #f8f0df 0%, var(--cream) 45%, var(--cream-2) 100%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Global paper grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background-image: var(--grain);
  background-size: 180px 180px;
  opacity: .045;
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, 92vw); margin-inline: auto; }

/* ===== Reveal on scroll (subtle & smooth) ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  * { scroll-behavior: auto; }
}

/* ===== Announcement bar ===== */
.announce {
  background: var(--char);
  color: var(--gold-soft);
  font-family: var(--head);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-align: center;
  padding: 10px 16px;
  border-bottom: 2px solid var(--gold-deep);
  overflow: hidden;
  white-space: nowrap;
}
.announce__text {
  display: inline-block;
  animation: announceSway 16s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes announceSway {
  from { transform: translateX(-7vw); }
  to   { transform: translateX(7vw); }
}
@media (prefers-reduced-motion: reduce) { .announce__text { animation: none; } }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 234, 214, .92);
  backdrop-filter: blur(8px) saturate(1.1);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.brand__logo {
  height: 60px; width: auto;
  filter: drop-shadow(0 3px 6px rgba(23,17,12,.25));
  transition: transform .3s ease;
}
.brand:hover .brand__logo { transform: rotate(-3deg) scale(1.04); }

.nav { display: flex; gap: 28px; }
.nav__link {
  font-family: var(--head);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  transition: width .28s ease;
}
.nav__link:hover { color: var(--gold-deep); }
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--char);
  border-radius: 2px;
  transition: .25s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #1a0a05;
  background-image:
    url("/assets/hero.webp"),
    radial-gradient(120% 90% at 30% 110%, #f3b417 0%, #f3801f 22%, #d6271f 42%, #6e1208 68%, #1a0a05 100%);
  background-size: cover, cover;
  background-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,11,5,.30) 0%, rgba(20,11,5,.40) 55%, rgba(20,11,5,.72) 100%),
    radial-gradient(80% 60% at 75% 30%, rgba(231,168,18,.18), transparent 70%);
}
.hero__overlay::after {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 200px 200px;
  opacity: .10;
  mix-blend-mode: overlay;
}
.hero__inner { position: relative; z-index: 2; padding: 70px 0 96px; }
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  color: #fff;
  font-size: clamp(36px, 5.6vw, 70px);
  line-height: 1.05;
  margin: 0 0 28px;
  letter-spacing: .5px;
  text-shadow: 0 4px 2px rgba(0,0,0,.35), 0 10px 30px rgba(0,0,0,.55);
  max-width: 17ch;
}
.hero__note {
  display: inline-block;
  background: var(--card);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(15px, 1.8vw, 18px);
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md), inset 0 0 0 2px rgba(255,255,255,.4);
  margin-bottom: 30px;
  max-width: 760px;
}
/* torn paper edge into the products (cream) section */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 44px;
  z-index: 3;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 44' preserveAspectRatio='none'%3E%3Cpath d='M0,44 L0,24 C 200,6 400,6 600,20 C 800,34 1000,8 1200,22 L1200,44 Z' fill='%23f4ead6'/%3E%3C/svg%3E") no-repeat bottom / 100% 44px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 0;
  cursor: pointer;
  border-radius: var(--radius);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, filter .18s ease;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.25); }
.btn:active { transform: translateY(0); }

.btn--red {
  background: linear-gradient(180deg, var(--ember-2), var(--ember));
  color: #fff;
  padding: 16px 30px; font-size: 15px;
  border: 1px solid rgba(0,0,0,.18);
}
.btn--red:hover { filter: brightness(1.06); }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: var(--char);
  padding: 20px 42px; font-size: clamp(16px, 2.2vw, 22px);
  border: 1px solid rgba(0,0,0,.22);
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.btn--gold:hover { filter: brightness(1.05); }

.btn--sm { padding: 12px 22px; font-size: 13px; }

/* ===== Section titles ===== */
.section-title {
  font-family: var(--head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(28px, 3.8vw, 42px);
  color: var(--char);
  margin: 0 0 24px;
  position: relative;
  padding-bottom: 16px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 64px; height: 4px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  border-radius: 2px;
}

/* ===== Products ===== */
.products { padding: 78px 0 30px; }
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.card__media {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}
.card__media img {
  height: 100%; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(23,17,12,.28));
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.card:hover .card__media img { transform: scale(1.07) rotate(-1deg); }
.card__title {
  font-family: var(--head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--char);
  margin: 0 0 14px;
  min-height: 3.1em;
}
.card__price {
  align-self: flex-start;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .5px;
  color: #fff;
  background: linear-gradient(180deg, var(--ember-2), var(--ember));
  padding: 7px 18px;
  border-radius: 4px;
  margin-bottom: 16px;
  border: 2px solid rgba(0,0,0,.22);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18);
  transform: rotate(-1.6deg);
  transition: transform .25s ease, filter .2s ease;
  cursor: pointer;
  -webkit-appearance: none;
  line-height: 1.1;
}
.card:hover .card__price { transform: rotate(0deg); }
.card__price:hover { filter: brightness(1.06); }
.card__price-hint {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .9;
  margin-top: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card__price-hint::before { content: "▾"; font-size: 9px; }

/* ===== Price scale modal ===== */
.pricemodal {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pricemodal.is-open { display: flex; }
.pricemodal__backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 8, 4, .68);
  backdrop-filter: blur(3px);
  animation: fade .2s ease;
}
.pricemodal__box {
  position: relative;
  width: min(440px, 100%);
  background: var(--char-2);
  color: #f0e6d6;
  border: 1px solid rgba(231,168,18,.35);
  border-radius: 12px;
  padding: 30px 28px 26px;
  box-shadow: 0 26px 60px rgba(0,0,0,.55);
  animation: pop .24s cubic-bezier(.2,.8,.2,1);
}
.pricemodal__box::before {
  content: ""; position: absolute; inset: 0; border-radius: 12px;
  background-image: var(--grain); background-size: 200px 200px;
  opacity: .06; mix-blend-mode: overlay; pointer-events: none;
}
.pricemodal__close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: 0; color: #c8bba6;
  font-size: 30px; line-height: 1; cursor: pointer;
  transition: color .15s ease;
}
.pricemodal__close:hover { color: #fff; }
.pricemodal__title {
  font-family: var(--head); text-transform: uppercase; letter-spacing: 1px;
  font-size: 22px; color: #fff; margin: 0 0 4px;
}
.pricemodal__note {
  font-family: var(--head); text-transform: uppercase; letter-spacing: 1px;
  font-size: 11px; color: var(--gold-soft); margin: 0 0 18px;
}
.pricemodal__table { width: 100%; border-collapse: collapse; }
.pricemodal__table th {
  text-align: left; font-family: var(--head); text-transform: uppercase;
  letter-spacing: 1px; font-size: 11px; color: #9c8c75;
  padding: 0 0 10px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.pricemodal__table th:last-child { text-align: right; }
.pricemodal__table td {
  padding: 13px 0; font-family: var(--head); font-size: 17px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pricemodal__table td:last-child { text-align: right; color: var(--gold); font-weight: 700; }
.pricemodal__table tr:last-child td { border-bottom: 0; }
.pricemodal__table tr.is-current td { color: #fff; }
.pricemodal__table tr.is-current td:first-child::after {
  content: " ★"; color: var(--gold); font-size: 12px;
}
.pricemodal__table tr.is-current td:last-child { color: var(--ember-2); }
.pricemodal__ship {
  margin: 16px 0 0;
  padding: 10px 14px;
  background: rgba(231,168,18,.10);
  border: 1px solid rgba(231,168,18,.30);
  border-radius: 8px;
  font-size: 13px;
  color: #f0e6d6;
  text-align: center;
}
.pricemodal__ship strong { color: var(--gold-soft); }
.pricemodal__cta { margin-top: 16px; width: 100%; text-align: center; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .pricemodal__box, .pricemodal__backdrop { animation: none; } }
.card__desc {
  font-size: 14.5px;
  color: var(--ink-soft-2);
  margin: 0 0 18px;
  flex-grow: 1;
}
.card__cta {
  align-self: flex-start;
  font-family: var(--head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12.5px;
  color: var(--char);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  transition: color .2s ease, border-color .2s ease;
}
.card__cta:hover { color: var(--ember); border-color: var(--ember); }

/* ===== Wholesale band ===== */
.wholesale {
  position: relative;
  margin-top: 48px;
  background: url("/assets/brasas.webp") center/cover no-repeat fixed;
  background-color: #1a0a05;
  border-top: 3px solid var(--gold-deep);
  border-bottom: 3px solid var(--gold-deep);
}
.wholesale__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,7,3,.66), rgba(15,7,3,.80));
}
.wholesale__inner {
  position: relative; z-index: 2;
  text-align: center;
  padding: 70px 0;
}
.wholesale__kicker {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-soft);
  font-weight: 500;
  font-size: clamp(15px, 2.2vw, 21px);
  margin: 0 0 24px;
  text-shadow: 0 2px 14px rgba(0,0,0,.7);
}
.wholesale .btn--gold { animation: emberPulse 3.4s ease-in-out infinite; }
@keyframes emberPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(231,168,18,0), var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.25); }
  50%      { box-shadow: 0 0 30px rgba(231,168,18,.5), var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.25); }
}
@media (prefers-reduced-motion: reduce) { .wholesale .btn--gold { animation: none; } }

/* ===== About ===== */
.about {
  background: var(--cream-2);
  padding: 78px 0;
  border-top: 1px solid var(--line-soft);
}
.about__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 54px;
  align-items: center;
}
.about__text p { font-size: 16.5px; color: var(--ink-soft-2); margin: 0 0 16px; max-width: 58ch; }
.about__text strong { color: var(--char); }
.about__text .btn { margin-top: 10px; }
.about__photo { position: relative; }
.about__photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border: 8px solid #fff;
  box-shadow: var(--shadow-md);
  transform: rotate(1.4deg);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.about__photo:hover img { transform: rotate(0deg) scale(1.01); }

.about__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.badge-stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.badge-stat span { font-family: var(--head); font-weight: 700; font-size: 30px; color: var(--ember); }
.badge-stat small { font-family: var(--head); text-transform: uppercase; letter-spacing: .5px; font-size: 13px; color: var(--ink-soft-2); }

/* ===== Bottom: reviews + playlist ===== */
.bottom { padding: 78px 0 96px; }
.bottom__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}
/* Encabezado de Opiniones con badge de Google */
.reviews__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.reviews__head .section-title { margin-bottom: 18px; }
.reviews__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 14px; margin-bottom: 18px;
  box-shadow: var(--shadow-sm); white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease;
}
.reviews__badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.reviews__g {
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  border: 1px solid var(--line); display: inline-flex;
  align-items: center; justify-content: center;
  font-family: var(--head); font-weight: 700; font-size: 12px; color: #4285f4;
}
.reviews__badge strong { font-family: var(--head); font-size: 16px; color: var(--char); }
.reviews__stars-mini { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.reviews__badge em { font-style: normal; font-family: var(--head); font-size: 12px; color: var(--ink-soft-2); }

/* Lista compacta de reseñas */
.reviews__list { display: flex; flex-direction: column; gap: 14px; }
.reviews__loading { font-size: 14px; color: var(--ink-soft-2); font-style: italic; }
.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review__top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review__avatar, .review__avatar-img {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
}
.review__avatar {
  background: linear-gradient(180deg, var(--ember-2), var(--ember));
  color: #fff; font-family: var(--head); font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.review__avatar-img { object-fit: cover; border: 1px solid var(--line); }
.review__meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.review__name {
  font-family: var(--head); font-weight: 600; font-size: 14px; color: var(--char);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.review__stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.review__google {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--head); font-weight: 700; font-size: 12px; color: #4285f4;
}
.review__text {
  font-size: 14px; color: var(--ink-soft-2); margin: 0; font-style: italic;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}

.playlist__embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  min-height: 380px;
  background: linear-gradient(135deg, #1db954 0%, #128a3e 60%, #0c5e2b 100%);
}
.playlist__embed iframe { display: block; }
.playlist__placeholder {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  height: 380px; color: #fff; font-family: var(--head); font-size: 14px; letter-spacing: .5px;
}
.playlist__placeholder .playlist__play {
  width: 40px; height: 40px; border-radius: 50%; background: #fff; color: #128a3e;
  display: inline-flex; align-items: center; justify-content: center; font-size: 16px;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  background: var(--char);
  color: #e8dcc8;
  padding: 56px 0 30px;
  border-top: 3px solid var(--gold-deep);
}
.footer::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 200px 200px;
  opacity: .06;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: start;
}
.footer__logo { height: 66px; margin-bottom: 16px; }
.footer__brand p { font-family: var(--body); font-size: 14.5px; color: #c4b39c; margin: 0; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-family: var(--head); text-transform: uppercase; letter-spacing: 1px;
  font-size: 14px; color: #e8dcc8;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(231,168,18,.18);
  margin-top: 28px; padding-top: 20px;
  font-family: var(--head); letter-spacing: .5px;
  font-size: 12.5px; color: #9b8a73; text-align: center;
}

/* ===== WhatsApp float ===== */
.wsp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  background: var(--wsp);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .5);
  z-index: 60;
  transition: transform .2s ease;
  animation: wspBob 4s ease-in-out infinite;
}
.wsp-float:hover { transform: scale(1.1); }
@keyframes wspBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (prefers-reduced-motion: reduce) { .wsp-float { animation: none; } }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .about__inner, .bottom__inner, .footer__inner { grid-template-columns: 1fr; gap: 38px; }
  .about__badges { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 80px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav.is-open { max-height: 420px; }
  .nav__link { padding: 16px 24px; border-top: 1px solid var(--line-soft); }
  .header__inner { position: relative; }
  .hero { min-height: 540px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .about__badges { grid-template-columns: 1fr; }
  .wholesale { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .grid { grid-template-columns: 1fr; }
  .badge-stat span { font-size: 26px; }
}

/* =========================================================
   Componentes adicionales (marketing)
   ========================================================= */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }

.qty-btn {
  background: rgba(255,255,255,.06); color: #f0e6d6; border: 0;
  width: 38px; height: 40px; font-size: 20px; cursor: pointer; font-family: var(--head);
  transition: background .15s ease;
}
.qty-btn:hover { background: rgba(231,168,18,.25); }

/* Hero: rating + dual CTA */
.hero__rating {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.35); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.25); border-radius: 999px;
  padding: 6px 14px; margin-bottom: 18px; color: #fff; font-family: var(--head);
}
.hero__rating-g { width: 20px; height: 20px; border-radius: 50%; background: #fff; color: #4285f4; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; }
.hero__rating strong { font-size: 16px; }
.hero__rating-stars { color: var(--gold); letter-spacing: 1px; }
.hero__rating-text { opacity: .85; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.hero__note strong { color: var(--ember); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__cta .btn { font-size: 18px; padding: 18px 36px; }

/* Modal: calculadora de cantidad */
.pricemodal__calc {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.pricemodal__calc-label { font-family: var(--head); text-transform: uppercase; letter-spacing: 1px; font-size: 12px; color: #c8bba6; }
.pricemodal__qty { display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; overflow: hidden; }
.pricemodal__qty input { width: 56px; height: 40px; text-align: center; background: transparent; border: 0; color: #fff; font-family: var(--head); font-size: 16px; }
.pricemodal__total { text-align: right; margin-left: auto; }
.pricemodal__total #pricemodal-unit { display: block; font-size: 12px; color: #c8bba6; }
.pricemodal__total strong { font-family: var(--head); color: var(--gold); font-size: 18px; }

/* ¿Cuál elegir? */
.compare { padding: 24px 0 6px; }
.compare__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare__table { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-width: 520px; }
.compare__table th { background: var(--char); color: var(--gold-soft); font-family: var(--head); text-transform: uppercase; letter-spacing: 1px; font-size: 12px; padding: 12px 14px; text-align: left; }
.compare__table td { padding: 12px 14px; font-size: 14px; border-top: 1px solid var(--line); color: var(--ink-soft-2); }
.compare__table td strong { color: var(--char); font-family: var(--head); text-transform: uppercase; font-size: 14px; }

/* Calculadora de asado */
.calc { padding: 44px 0; }
.calc__intro { color: var(--ink-soft-2); margin: 0 0 22px; max-width: 60ch; }
.calc__card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); max-width: 640px; }
.calc__control { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.calc__control label { font-family: var(--head); text-transform: uppercase; letter-spacing: 1px; font-size: 15px; color: var(--char); }
.calc__stepper { display: inline-flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.calc__stepper .qty-btn { background: #f0e6d2; color: var(--char); width: 44px; height: 46px; }
.calc__stepper .qty-btn:hover { background: var(--gold-soft); }
.calc__stepper input { width: 66px; height: 46px; text-align: center; border: 0; background: #fff; font-family: var(--head); font-size: 18px; color: var(--char); }
.calc__results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 20px; }
.calc__stat { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 16px 10px; text-align: center; }
.calc__stat span { display: block; font-family: var(--head); font-weight: 700; font-size: 24px; color: var(--ember); }
.calc__stat small { font-size: 12px; color: var(--ink-soft-2); }
.calc__cta { width: 100%; text-align: center; }
.calc__note { font-size: 12.5px; color: var(--ink-soft-2); margin: 14px 0 0; }

/* FAQ */
.faq { background: var(--cream-2); padding: 60px 0; border-top: 1px solid var(--line-soft); }
.faq__list { max-width: 760px; }
.faq__item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq__item summary { cursor: pointer; padding: 16px 20px; font-family: var(--head); font-weight: 600; font-size: 15px; color: var(--char); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 22px; color: var(--gold-deep); flex-shrink: 0; }
.faq__item[open] summary::after { content: "−"; }
.faq__item p { margin: 0; padding: 0 20px 18px; font-size: 14.5px; color: var(--ink-soft-2); }

/* Calendario de feriados */
.holidays { padding: 60px 0 70px; }
.holidays__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.holidays__intro { color: var(--ink-soft-2); margin: 0 0 18px; max-width: 52ch; }
.holidays__yearpick { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.holidays__yearpick label { font-family: var(--head); text-transform: uppercase; letter-spacing: 1px; font-size: 13px; color: var(--char); }
.holidays__yearpick select { font-family: var(--head); font-size: 16px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); color: var(--char); cursor: pointer; }
.holidays__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.holiday { display: flex; align-items: center; gap: 14px; background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--ember); border-radius: 10px; padding: 12px 16px; }
.holiday.is-past { opacity: .45; }
.holiday__date { flex-shrink: 0; width: 46px; text-align: center; }
.holiday__day { display: block; font-family: var(--head); font-weight: 700; font-size: 22px; color: var(--ember); line-height: 1; }
.holiday__mon { font-family: var(--head); text-transform: uppercase; font-size: 11px; color: var(--ink-soft-2); }
.holiday__info { display: flex; flex-direction: column; min-width: 0; }
.holiday__name { font-family: var(--head); font-weight: 600; font-size: 14px; color: var(--char); }
.holiday__wd { font-size: 12px; color: var(--ink-soft-2); text-transform: capitalize; }
.holiday__wd em { color: var(--gold-deep); font-style: normal; text-transform: uppercase; font-size: 10px; letter-spacing: .5px; }
.holidays__note { font-size: 12px; color: var(--ink-soft-2); margin: 18px 0 16px; }

/* Playlist facade */
.playlist__facade {
  display: block; width: 100%; border: 0; cursor: pointer; border-radius: var(--radius);
  overflow: hidden; padding: 0; position: relative;
  background: linear-gradient(135deg, #1db954 0%, #128a3e 60%, #0c5e2b 100%);
  box-shadow: var(--shadow-md);
}
.playlist__facade::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); background-size: 200px 200px; opacity: .08; mix-blend-mode: overlay; }
.playlist__facade-inner { display: flex; align-items: center; gap: 16px; padding: 26px 24px; position: relative; z-index: 1; text-align: left; }
.playlist__play { width: 54px; height: 54px; border-radius: 50%; background: #fff; color: #128a3e; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; box-shadow: 0 6px 16px rgba(0,0,0,.3); transition: transform .2s ease; }
.playlist__facade:hover .playlist__play { transform: scale(1.1); }
.playlist__facade-text { display: flex; flex-direction: column; flex: 1; color: #fff; }
.playlist__facade-text strong { font-family: var(--head); font-size: 18px; }
.playlist__facade-text small { font-size: 12.5px; opacity: .92; }
.playlist__spotify { font-family: var(--head); text-transform: uppercase; letter-spacing: 1px; font-size: 11px; color: #fff; opacity: .85; }

/* Barra fija de pedido (móvil) */
.orderbar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  align-items: center; justify-content: space-between; gap: 10px;
  background: var(--char); color: #f0e6d6; padding: 10px 14px;
  border-top: 2px solid var(--gold-deep); box-shadow: 0 -4px 16px rgba(0,0,0,.28);
}
.orderbar__text { font-family: var(--head); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.orderbar__btn { background: var(--wsp); color: #fff; font-family: var(--head); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; font-size: 13px; padding: 9px 16px; border-radius: 8px; white-space: nowrap; }

@media (max-width: 720px) {
  .holidays__list { grid-template-columns: 1fr; }
  .orderbar { display: flex; }
  .wsp-float { display: none; } /* en móvil solo la barra fija de pedido */
}
@media (max-width: 600px) {
  .compare__table { min-width: 0; }
  .compare__table thead { display: none; }
  .compare__table, .compare__table tbody, .compare__table tr, .compare__table td { display: block; width: 100%; }
  .compare__table tr { border-top: 1px solid var(--line); padding: 8px 0; }
  .compare__table tr:first-child { border-top: 0; }
  .compare__table td { border: 0; padding: 6px 14px; display: flex; justify-content: space-between; gap: 14px; }
  .compare__table td::before { content: attr(data-l); font-family: var(--head); text-transform: uppercase; font-size: 11px; color: var(--ink-soft-2); }
}
@media (max-width: 420px) {
  .calc__results { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; text-align: center; }
}
