/* ===== Happy Soup - styles ===== */
:root {
  --slate: #4a4f5a;
  --slate-dark: #383c45;
  --orange: #f5a04a;
  --orange-dark: #e8893a;
  --cream: #fdf7ee;
  --cream-2: #fbeeda;
  --ink: #2c2f36;
  --muted: #6f7680;
  --white: #ffffff;
  --wa: #25d366;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px rgba(74, 79, 90, 0.12);
  --shadow-sm: 0 8px 24px rgba(74, 79, 90, 0.10);
  --max: 1160px;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 140px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--slate-dark); line-height: 1.12; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 14px;
}
.lead { font-size: 1.15rem; color: var(--muted); }
.section-sub { font-size: 1.08rem; color: var(--muted); max-width: 640px; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .section-sub { margin-inline: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: .92rem; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(245,160,74,.35); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-ghost { background: transparent; color: var(--slate-dark); border-color: rgba(74,79,90,.22); }
.btn-ghost:hover { border-color: var(--slate); background: rgba(74,79,90,.05); }
.btn-light { background: #fff; color: var(--slate-dark); box-shadow: var(--shadow-sm); }
.btn-wa { background: var(--wa); box-shadow: 0 10px 24px rgba(37,211,102,.3); }
.btn-wa:hover { background: #1da851; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 247, 238, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,79,90,.07);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 20px rgba(74,79,90,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.logo-img { height: 38px; width: auto; }
.nav { display: flex; gap: 30px; }
.nav a { font-weight: 500; font-size: .96rem; color: var(--slate); position: relative; }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0; background: var(--orange); transition: width .22s ease;
}
.nav a:hover { color: var(--slate-dark); }
.nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  background: none; border: 1px solid rgba(74,79,90,.2); border-radius: 999px;
  padding: 6px 12px; cursor: pointer; font-family: var(--font-body); font-weight: 600;
  font-size: .82rem; color: var(--muted); display: flex; gap: 4px; align-items: center;
}
.lang-opt.active { color: var(--orange-dark); }
.lang-sep { opacity: .4; }
.menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-btn span { width: 24px; height: 2px; background: var(--slate-dark); border-radius: 2px; transition: .25s; }

/* ===== Hero ===== */
.hero { position: relative; padding: 80px 0 120px; overflow: hidden;
  background: radial-gradient(120% 100% at 80% 0%, var(--cream-2) 0%, var(--cream) 55%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: center; }
.hero-text .eyebrow { margin-bottom: 18px; }
.hero-text .lead { margin: 22px 0 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 30px; margin-top: 44px; }
.badge { display: flex; flex-direction: column; }
.badge strong { font-family: var(--font-head); font-size: 1.9rem; color: var(--orange-dark); line-height: 1; }
.badge em { font-style: normal; font-size: .86rem; color: var(--muted); margin-top: 4px; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.hero-blob {
  position: absolute; inset: 0; margin: auto; width: 380px; height: 380px;
  background: linear-gradient(150deg, var(--orange) 0%, #ffc27d 100%);
  border-radius: 46% 54% 58% 42% / 50% 44% 56% 50%;
  filter: blur(2px); opacity: .9;
  animation: morph 9s ease-in-out infinite;
}
@keyframes morph {
  0%,100% { border-radius: 46% 54% 58% 42% / 50% 44% 56% 50%; }
  50% { border-radius: 58% 42% 44% 56% / 42% 58% 42% 58%; }
}
.hero-product {
  position: relative; z-index: 2; width: 300px; height: 360px;
  background: rgba(255,255,255,.55); border: 2px dashed rgba(255,255,255,.9);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); box-shadow: var(--shadow);
}

/* Wave divider */
.wave-divider { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.wave-divider svg { width: 100%; height: 60px; }
.wave-divider path { fill: var(--slate-dark); }

/* ===== Trust strip ===== */
.trust-strip { background: var(--slate-dark); color: rgba(255,255,255,.85); padding: 16px 0; }
.trust-inner { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .9rem; font-weight: 500; letter-spacing: .02em; }
.trust-inner .dot { color: var(--orange); }

/* ===== Story ===== */
.story { padding: 110px 0; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.story-text p { margin-top: 16px; color: var(--muted); font-size: 1.06rem; }
.story-text h2 { margin-bottom: 8px; }
.signature { font-family: var(--font-head); font-style: italic; color: var(--slate-dark) !important; margin-top: 26px !important; font-size: 1.1rem !important; }
.signature span { font-style: normal; font-size: .9rem; color: var(--muted); }
.story-img { aspect-ratio: 4/5; border-radius: var(--radius-lg); }

/* ===== Placeholders ===== */
.placeholder {
  background: repeating-linear-gradient(45deg, var(--cream-2), var(--cream-2) 14px, #f7e6cd 14px, #f7e6cd 28px);
  border: 2px dashed rgba(245,160,74,.5);
  display: flex; align-items: center; justify-content: center;
}
.placeholder-label { font-weight: 600; color: var(--orange-dark); font-size: .9rem; text-align: center; padding: 12px; }

/* ===== Benefits ===== */
.benefits { padding: 110px 0; background: var(--white); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  background: var(--cream); border-radius: var(--radius); padding: 34px 30px;
  border: 1px solid rgba(74,79,90,.06); transition: transform .2s ease, box-shadow .2s ease;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.benefit-icon { font-size: 2.2rem; margin-bottom: 14px; }
.benefit-card h3 { margin-bottom: 8px; }
.benefit-card p { color: var(--muted); font-size: .98rem; }
.disclaimer { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 44px; opacity: .8; }

/* ===== Uses ===== */
.uses { padding: 110px 0; }
.uses-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.use-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 26px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.use-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--orange); }
.use-num { font-family: var(--font-head); font-size: 2rem; color: var(--orange); opacity: .55; display: block; margin-bottom: 10px; }
.use-card h3 { margin-bottom: 8px; font-size: 1.12rem; }
.use-card p { color: var(--muted); font-size: .96rem; }

/* ===== Product ===== */
.product { padding: 110px 0; background: var(--white); }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.product-img { aspect-ratio: 1/1; border-radius: var(--radius-lg); }
.product-text .lead { margin: 18px 0 26px; }
.product-features { list-style: none; margin-bottom: 28px; }
.product-features li { padding: 8px 0 8px 32px; position: relative; color: var(--slate); font-weight: 500; }
.product-features li::before {
  content: '✓'; position: absolute; left: 0; top: 8px; width: 22px; height: 22px;
  background: rgba(245,160,74,.18); color: var(--orange-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700;
}
.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 26px; }
.price { font-family: var(--font-head); font-size: 2.4rem; color: var(--slate-dark); }
.price-note { color: var(--muted); font-size: .95rem; }
.placeholder-note { font-size: .8rem; color: var(--muted); margin-top: 16px; opacity: .8; }

/* ===== Stores ===== */
.stores { padding: 110px 0; background: var(--white); }
.stores-cta { text-align: center; margin-top: 48px; }

/* ===== CTA banner ===== */
.cta-banner { padding: 90px 0; background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate) 100%); color: #fff; }
.cta-inner { text-align: center; }
.cta-inner h2 { color: #fff; margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.82); max-width: 540px; margin: 0 auto 30px; font-size: 1.1rem; }

/* ===== Footer ===== */
.site-footer { background: var(--slate-dark); color: rgba(255,255,255,.78); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-logo { height: 40px; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 16px; }
.footer-brand p { max-width: 320px; font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col a, .footer-socials a { display: block; color: rgba(255,255,255,.72); padding: 5px 0; font-size: .95rem; transition: color .18s; }
.footer-col a:hover, .footer-socials a:hover { color: var(--orange); }
.footer-bottom { padding-top: 24px; font-size: .85rem; color: rgba(255,255,255,.55); text-align: center; }

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--cream); padding: 20px 24px; gap: 6px; box-shadow: var(--shadow); border-top: 1px solid rgba(74,79,90,.08);
  }
  .nav.open a { padding: 10px 0; }
  .menu-btn { display: flex; }
  .header-actions .btn-primary { display: none; }
  .hero-grid, .story-grid, .product-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; order: -1; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .story { padding: 70px 0; }
  .benefits, .howto, .product, .stores, .reviews { padding: 70px 0; }
  .branches-panel { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .benefit-grid, .steps { grid-template-columns: 1fr; }
  .hero-badges { gap: 20px; }
  .hero { padding: 40px 0 90px; }
  .branches-panel { grid-template-columns: 1fr; }
  .logo-row { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   v2 - "1000x cooler" enhancements
   ========================================================================== */

/* ---- Scroll-reveal ---- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.stagger .reveal:nth-child(1){transition-delay:.05s}
.stagger .reveal:nth-child(2){transition-delay:.12s}
.stagger .reveal:nth-child(3){transition-delay:.19s}
.stagger .reveal:nth-child(4){transition-delay:.26s}
.stagger .reveal:nth-child(5){transition-delay:.33s}
.stagger .reveal:nth-child(6){transition-delay:.40s}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

/* ---- Gradient animated headline ---- */
.hero-text h1 {
  background: linear-gradient(100deg, var(--slate-dark) 0%, var(--slate-dark) 40%, var(--orange-dark) 55%, var(--slate-dark) 70%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sheen 7s ease-in-out infinite;
}
@keyframes sheen { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

/* ---- Hero aurora + grain ---- */
.hero { background: var(--cream); }
.hero-aurora {
  position: absolute; inset: -20% -10% auto -10%; height: 120%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(45% 50% at 78% 18%, rgba(245,160,74,.45), transparent 60%),
    radial-gradient(40% 45% at 18% 30%, rgba(255,194,125,.40), transparent 60%),
    radial-gradient(50% 50% at 60% 80%, rgba(251,238,218,.9), transparent 65%);
  filter: blur(20px); animation: auroraMove 16s ease-in-out infinite alternate;
}
@keyframes auroraMove { 0%{transform:translate3d(0,0,0) scale(1)} 100%{transform:translate3d(-3%,2%,0) scale(1.08)} }
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-grid { position: relative; z-index: 2; }

/* ---- Hero glow behind product ---- */
.hero-glow {
  position: absolute; inset: 0; margin: auto; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,160,74,.55), transparent 60%); filter: blur(40px); z-index: 0;
}
.hero-blob { box-shadow: 0 30px 80px rgba(245,160,74,.35); }

/* ---- Floating ingredients ---- */
.float-ing { position: absolute; font-size: 2rem; z-index: 3; filter: drop-shadow(0 6px 10px rgba(0,0,0,.12)); animation: floaty 6s ease-in-out infinite; }
.ing-1 { top: 6%; left: 8%; animation-delay: 0s; }
.ing-2 { top: 14%; right: 6%; font-size: 2.4rem; animation-delay: .8s; }
.ing-3 { bottom: 16%; left: 2%; font-size: 2.2rem; animation-delay: 1.6s; }
.ing-4 { bottom: 8%; right: 12%; animation-delay: 2.4s; }
@keyframes floaty { 0%,100%{transform:translateY(0) rotate(-4deg)} 50%{transform:translateY(-16px) rotate(6deg)} }

/* ---- Product card glare + tilt ---- */
.tilt { transform-style: preserve-3d; transition: transform .3s ease; }
.product-glare {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  background-size: 220% 220%; background-position: 120% 0; transition: background-position .1s linear; mix-blend-mode: overlay;
}

/* ---- Steam ---- */
.steam { position: absolute; top: -38px; left: 50%; transform: translateX(-50%); display: flex; gap: 14px; z-index: 4; }
.steam span {
  display: block; width: 9px; height: 42px; border-radius: 50%;
  background: linear-gradient(to top, rgba(255,255,255,0), rgba(255,255,255,.75));
  filter: blur(4px); opacity: 0; animation: steam 3.4s ease-in-out infinite;
}
.steam span:nth-child(2){animation-delay:.7s} .steam span:nth-child(3){animation-delay:1.4s}
@keyframes steam { 0%{opacity:0;transform:translateY(0) scaleX(1)} 25%{opacity:.8} 100%{opacity:0;transform:translateY(-46px) scaleX(2.4)} }

/* ---- Scroll cue ---- */
.scroll-cue { position: absolute; bottom: 78px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 2px solid rgba(74,79,90,.35); border-radius: 14px; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: var(--orange-dark); border-radius: 2px; animation: cue 1.7s ease infinite; }
@keyframes cue { 0%{opacity:0;transform:translateY(0)} 40%{opacity:1} 80%{opacity:0;transform:translateY(14px)} }

/* ---- Button shine ---- */
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content:''; position:absolute; top:0; left:-120%; width:60%; height:100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.6), transparent); transform: skewX(-20deg);
  animation: shine 3.6s ease-in-out infinite;
}
@keyframes shine { 0%{left:-120%} 55%,100%{left:140%} }

/* ---- Marquee ---- */
.trust-strip { overflow: hidden; padding: 0; }
.marquee { overflow: hidden; }
.marquee-track {
  display: flex; align-items: center; gap: 26px; white-space: nowrap; padding: 16px 0; width: max-content;
  animation: marquee 26s linear infinite; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: .86rem;
}
.trust-strip .marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ---- Story stamp ---- */
.story-visual { position: relative; }
.story-stamp {
  position: absolute; bottom: -18px; right: -18px; width: 96px; height: 96px; border-radius: 50%;
  background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-style: italic; font-size: .95rem; text-align: center;
  box-shadow: var(--shadow); transform: rotate(-8deg); animation: floaty 7s ease-in-out infinite;
}

/* ---- Section heads: gradient eyebrow underline ---- */
.benefit-card { position: relative; overflow: hidden; }
.benefit-card::after {
  content:''; position:absolute; inset:0; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(135deg, rgba(245,160,74,.6), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .25s;
}
.benefit-card:hover::after { opacity: 1; }
.benefit-icon { display: inline-flex; transition: transform .3s ease; }
.benefit-card:hover .benefit-icon { transform: scale(1.18) rotate(-6deg); }

/* ---- Uses bg accent ---- */
.uses { position: relative; overflow: hidden; }
.uses-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(60% 60% at 90% 10%, rgba(245,160,74,.10), transparent 60%); }
.uses .container { position: relative; z-index: 1; }
.use-card { transition: transform .25s ease, box-shadow .25s ease; }
.use-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.use-card:hover .use-num { opacity: 1; }

/* ---- Product ring ---- */
.product-visual { position: relative; }
.product-ring {
  position: absolute; inset: -6%; border-radius: 50%; z-index: 0;
  background: conic-gradient(from 0deg, var(--orange), #ffd9a8, var(--orange), #ffd9a8, var(--orange));
  filter: blur(30px); opacity: .35; animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.product-img { position: relative; z-index: 1; }
.price { background: linear-gradient(120deg, var(--orange-dark), var(--orange)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---- Store card hover ---- */
.store-card { transition: transform .25s ease, box-shadow .25s ease; }
.store-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow); }

/* ---- CTA banner aurora ---- */
.cta-banner { position: relative; overflow: hidden; }
.cta-aurora {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 60% at 15% 20%, rgba(245,160,74,.35), transparent 60%),
    radial-gradient(40% 60% at 85% 80%, rgba(245,160,74,.25), transparent 60%);
  animation: auroraMove 14s ease-in-out infinite alternate;
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }

/* ---- WhatsApp float pulse ---- */
.wa-float::before {
  content:''; position:absolute; inset:0; border-radius:50%; background: var(--wa); z-index:-1;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.9);opacity:0} }

/* ---- Header logo hover ---- */
.logo-img { transition: transform .3s ease; }
.logo-link:hover .logo-img { transform: scale(1.05) rotate(-2deg); }

/* ---- Scroll progress bar ---- */
#progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 300; background: linear-gradient(90deg, var(--orange), var(--orange-dark)); transition: width .1s linear; }

/* ---- Selection ---- */
::selection { background: var(--orange); color: #fff; }

/* ==========================================================================
   v3 - fotos reales + secciones nuevas (Happy Soup real data)
   ========================================================================== */

/* ---- Hero photo (real image, estilo Dilue) ---- */
.hero-photo {
  position: relative; z-index: 2; width: 100%; max-width: 620px; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 36px 80px rgba(74,79,90,.30); transition: transform .3s ease;
}
.hero-photo img { width: 100%; height: auto; display: block; border-radius: inherit; }
.hero-glow { width: 560px; height: 560px; }

/* ---- Story photo (real) ---- */
.story-img { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.story-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Product photo (real) ---- */
.product-img { aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; background: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); }
.product-img img { width: 82%; height: auto; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(74,79,90,.18)); }

/* ---- Ingredients box ---- */
.ingredients-box { background: var(--cream); border: 1px solid rgba(74,79,90,.08); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 26px; }
.ingredients-box h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-dark); margin-bottom: 14px; }
.ingredient-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ingredient-tags span { background: var(--white); border: 1px solid rgba(74,79,90,.1); border-radius: 999px; padding: 7px 14px; font-size: .88rem; font-weight: 500; color: var(--slate); display: inline-flex; align-items: center; gap: 4px; transition: transform .18s, box-shadow .18s; }
.ingredient-tags span:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ---- How to use ---- */
.howto { padding: 110px 0; position: relative; overflow: hidden; }
.howto-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(60% 60% at 10% 20%, rgba(245,160,74,.10), transparent 60%); }
.howto .container { position: relative; z-index: 1; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { background: var(--white); border-radius: var(--radius); padding: 32px 26px 28px; box-shadow: var(--shadow-sm); position: relative; transition: transform .25s ease, box-shadow .25s ease; }
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 16px; box-shadow: 0 8px 18px rgba(245,160,74,.35); }
.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { color: var(--muted); font-size: .95rem; }
.howto-pills { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.pill { background: var(--white); border: 1px solid rgba(74,79,90,.1); border-radius: 999px; padding: 12px 22px; font-weight: 600; font-size: .92rem; color: var(--slate); box-shadow: var(--shadow-sm); }

/* ---- Reviews ---- */
.reviews { padding: 110px 0; background: var(--cream); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 32px 30px; box-shadow: var(--shadow-sm); margin: 0; transition: transform .25s ease, box-shadow .25s ease; }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stars { color: var(--orange); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 14px; }
.review-card blockquote { font-family: var(--font-head); font-size: 1.12rem; line-height: 1.5; color: var(--slate-dark); margin-bottom: 20px; }
.review-card figcaption { display: flex; flex-direction: column; }
.rv-name { font-weight: 700; color: var(--slate-dark); }
.rv-city { font-size: .86rem; color: var(--muted); }
.reviews-note { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 36px; opacity: .85; }

/* ---- Store logos ---- */
.store-cat { font-family: var(--font-body); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-dark); text-align: center; margin: 48px 0 22px; }
.store-cat:first-of-type { margin-top: 8px; }
.logo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.logo-row.spec, .logo-row.delivery { grid-template-columns: repeat(4, 1fr); }
.logo-card { background: var(--white); border: 1px solid rgba(74,79,90,.08); border-radius: var(--radius); aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center; padding: 22px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.logo-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow); }
.logo-card img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }

/* ---- Branches panel ---- */
.branches { text-align: center; margin-top: 40px; }
.branches-toggle { background: none; border: 2px solid rgba(74,79,90,.2); border-radius: 999px; padding: 12px 26px; font-family: var(--font-body); font-weight: 600; font-size: .95rem; color: var(--slate-dark); cursor: pointer; transition: border-color .2s, background .2s; }
.branches-toggle:hover { border-color: var(--orange); background: rgba(245,160,74,.06); }
.branches-panel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: left; margin-top: 32px; background: var(--cream); border-radius: var(--radius-lg); padding: 36px 32px; }
.branch-col h4 { font-size: 1rem; color: var(--slate-dark); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid rgba(245,160,74,.4); }
.branch-col ul { list-style: none; }
.branch-col li { font-size: .9rem; color: var(--muted); padding: 4px 0; }

/* ---- Sanitary badge ---- */
.sanitary-badge { display: inline-block; margin-top: 16px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 7px 16px; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.9); }

/* ==========================================================================
   v4 - barra POS, tiendas con dirección, ajustes
   ========================================================================== */

/* ---- POS logo bar (debajo del header) ---- */
.pos-bar {
  --pos-bar-h: 48px;             /* alto fijo de la barra blanca (logos ~38px, = logo Happy Soup del header) */
  height: var(--pos-bar-h);
  background: var(--white);
  border-bottom: 1px solid rgba(74,79,90,.07);
  overflow: hidden;
  position: sticky; top: 72px; z-index: 90;
  display: flex; align-items: center;
}
.pos-track {
  display: flex; align-items: center; width: max-content;
  animation: marqueePOS 30s linear infinite;
}
/* La barra NO se detiene al pasar el mouse (always-on) */
.pos-half {
  display: flex; align-items: center; gap: 72px;
  padding-right: 72px;   /* mismo gap entre la última img de A y la primera de B */
  flex: none;
}
.pos-track img {
  height: calc(var(--pos-bar-h) * 0.80);  /* muy grandes, sin sobrepasar la barra */
  width: auto; object-fit: contain; display: block;
}
/* Loop perfecto: dos mitades idénticas, desplaza exactamente una mitad */
@keyframes marqueePOS { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Tiendas especializadas con nombre + dirección ---- */
.store-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.store-item .logo-card { width: 100%; }
.store-name { font-weight: 700; color: var(--slate-dark); font-size: .95rem; margin-top: 14px; }
.store-addr { font-size: .82rem; color: var(--muted); margin-top: 2px; line-height: 1.35; }

/* Las tarjetas dentro de store-item ya no se animan solas (lo hace el contenedor) */
.store-item .logo-card { transition: transform .25s ease, box-shadow .25s ease; }
.store-item:hover .logo-card { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow); }

/* Ajuste del grid de especializadas para que respiren con el texto */
.logo-row.spec { grid-template-columns: repeat(4, 1fr); gap: 24px 20px; align-items: start; }

@media (max-width: 900px) {
  .pos-bar { top: 64px; --pos-bar-h: 48px; }
  .pos-half { gap: 48px; padding-right: 48px; }
  .logo-row, .logo-row.spec, .logo-row.delivery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .logo-row, .logo-row.spec, .logo-row.delivery { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   v5 - freezer tag + linea conectora de pasos
   ========================================================================== */

/* ---- Etiqueta "area de congelados" bajo el hero shot ---- */
.freezer-tag {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; padding: 9px 18px; border-radius: 999px;
  background: #eaf4fb; color: #2e7bb0; border: 1px solid #cfe6f5;
  font-weight: 600; font-size: .9rem; position: relative; z-index: 2;
  box-shadow: 0 6px 16px rgba(46,123,176,.12);
}
.hero-visual { flex-direction: column; }

/* ---- Linea conectora del paso a paso ---- */
.steps.connected { position: relative; }
.steps.connected::before {
  content: ''; position: absolute; top: 56px; left: 8%; right: 8%; height: 3px; z-index: 0;
  background: repeating-linear-gradient(90deg, var(--orange) 0 14px, transparent 14px 26px);
  opacity: .5;
}
.steps.connected .step { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .steps.connected::before { display: none; }
}
