/* ════════════════════════════════════════════════════
   YOLUYOGURT — Landing Premium 2026
   styles.css — Estilos personalizados avanzados
════════════════════════════════════════════════════ */

/* === VARIABLES === */
:root {
  --green: #8aed36;
  --green-light: #b5f575;
  --green-dark:  #166534;
  --green-mid:   #4ade80;
  --green-3:     #22c55e;
  --mint:        #10b981;
  --yellow:      #fbbf24;
  --dark:        #08100a;
  --dark-2:      #0c1a0e;
  --dark-3:      #111f13;
  --glass:       rgba(255,255,255,0.05);
  --glass-b:     rgba(255,255,255,0.10);
  --g-green: 0 0 40px rgba(138,237,54,0.35);
  --g-dark:      0 0 40px rgba(22,101,52,0.35);
  --g-mid:       0 0 40px rgba(74,222,128,0.30);
  --g-mint:      0 0 40px rgba(16,185,129,0.30);
}

/* === BASE === */
*, *::before, *::after { box-sizing: border-box; }
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--green), var(--green-dark)); border-radius: 4px; }

/* Selection */
::selection { background: rgba(138,237,54,0.3); color: #fff; }

/* === KEYFRAMES === */

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(6deg); }
}
@keyframes float-r {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(16px) rotate(-6deg); }
}
@keyframes float-slow {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-12px) scale(1.05); }
}
@keyframes gradient-shift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes glow-pulse {
  0%,100% { opacity: .5; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.1); }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes spin-rev {
  to { transform: rotate(-360deg); }
}
@keyframes shimmer {
  0%   { background-position: -400% center; }
  100% { background-position:  400% center; }
}
@keyframes blob {
  0%,100% { border-radius: 60% 40% 55% 45% / 50% 55% 45% 55%; }
  33%      { border-radius: 40% 60% 45% 55% / 55% 40% 60% 45%; }
  66%      { border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%; }
}
@keyframes reveal-up {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0);    }
}
@keyframes count-in {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0);    }
}
@keyframes orbit {
  from { transform: rotate(0deg)   translateX(140px) rotate(0deg);   }
  to   { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}
@keyframes orbit-rev {
  from { transform: rotate(0deg)    translateX(180px) rotate(0deg);    }
  to   { transform: rotate(-360deg) translateX(180px) rotate(360deg);  }
}
@keyframes ping {
  75%,100% { transform: scale(2); opacity: 0; }
}

/* === NOISE OVERLAY === */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: .5;
}

/* === NAVBAR === */
#navbar {
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s;
}
#navbar.scrolled {
  background: rgba(8,8,16,.9) !important;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 8px 40px rgba(0,0,0,.5);
}
.nav-link {
  position: relative;
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }

/* Mobile menu */
#mobile-menu {
  display: none;
  background: rgba(8,8,16,.97);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,.06);
}
#mobile-menu.open { display: block; animation: reveal-up .3s ease forwards; }

/* === BUTTONS === */
.btn {
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  font-weight: 700;
  letter-spacing: .02em;
}
.btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .5s ease, height .5s ease;
}
.btn:hover::after { width: 280px; height: 280px; }

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}
.btn-primary:hover {
  box-shadow: 0 0 28px rgba(138,237,54,.5), 0 0 64px rgba(22,101,52,.3);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
}
.btn-outline:hover {
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 0 20px rgba(138,237,54,.2);
  transform: translateY(-2px);
}

/* === HERO === */
.hero-bg {
  background:
    radial-gradient(ellipse 700px 500px at 15% 50%, rgba(22,101,52,.13) 0%, transparent 70%),
    radial-gradient(ellipse 500px 600px at 85% 20%, rgba(138,237,54,.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 500px at 50% 90%, rgba(74,222,128,.08) 0%, transparent 60%),
    var(--dark);
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--green-light) 35%, var(--green-mid) 65%, var(--green-3) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease infinite;
}

/* Floating animations */
.f1 { animation: float      4s   ease-in-out infinite; }
.f2 { animation: float-r    5s   ease-in-out infinite; }
.f3 { animation: float      6s   ease-in-out infinite 1s; }
.f4 { animation: float-r    4.5s ease-in-out infinite .7s; }
.f5 { animation: float      5.5s ease-in-out infinite 1.5s; }
.f6 { animation: float-r    3.8s ease-in-out infinite .3s; }
.f7 { animation: float-slow 7s   ease-in-out infinite 2s; }

/* CSS Yogurt Cup */
.yolu-cup-wrap {
  position: relative;
  width: 240px;
  height: 280px;
  margin: 0 auto;
}
.yolu-cup {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 200px;
}
.cup-outer {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 20px 20px 40px 40px;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 0 60px rgba(138,237,54,.25),
    0 20px 60px rgba(0,0,0,.4);
}
.cup-fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 62%;
  background: linear-gradient(135deg,
    rgba(138,237,54,.65) 0%,
    rgba(22,101,52,.55) 50%,
    rgba(74,222,128,.4) 100%
  );
  border-radius: 0 0 38px 38px;
  animation: gradient-shift 4s ease infinite;
  background-size: 200% 200%;
}
.cup-shine {
  position: absolute;
  top: 10px; left: 12px;
  width: 30px; height: 70px;
  background: linear-gradient(180deg, rgba(255,255,255,.2), transparent);
  border-radius: 999px;
  transform: rotate(-15deg);
}
.cup-logo-text {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  font-size: .6rem; font-weight: 900;
  letter-spacing: .06em;
  color: rgba(255,255,255,.9);
  z-index: 2; white-space: nowrap;
}
.cup-toppings {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 3px;
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
}
.cup-lid {
  position: absolute;
  top: -8px; left: -6px; right: -6px;
  height: 16px;
  background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px 8px 0 0;
  backdrop-filter: blur(8px);
}

/* Orbit rings */
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid transparent;
  transform-origin: center;
}
.ring-1 {
  width: 280px; height: 280px;
  margin: -140px 0 0 -140px;
  border-color: rgba(138,237,54,.15);
  animation: spin-slow 18s linear infinite;
}
.ring-2 {
  width: 340px; height: 340px;
  margin: -170px 0 0 -170px;
  border-color: rgba(22,101,52,.1);
  animation: spin-rev 24s linear infinite;
}
.ring-3 {
  width: 200px; height: 200px;
  margin: -100px 0 0 -100px;
  border-color: rgba(74,222,128,.15);
  animation: spin-slow 12s linear infinite;
  border-style: dashed;
}

/* Glow orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  animation: glow-pulse 4s ease-in-out infinite;
}

/* === SECTION BADGE === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(138,237,54,.1);
  border: 1px solid rgba(138,237,54,.3);
  color: var(--green-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}

/* === GLASS EFFECT === */
.glass {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
}
.glass-hover {
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.glass-hover:hover {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(138,237,54,.3) !important;
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), var(--g-green);
}

/* === PRODUCT CARDS === */
.product-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px;
  overflow: hidden;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  position: relative;
  cursor: default;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
}
.product-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(138,237,54,.35);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 32px 80px rgba(0,0,0,.45), var(--g-green);
}
.product-card .emoji-wrap {
  font-size: 3.2rem;
  display: block;
  text-align: center;
  filter: drop-shadow(0 0 18px rgba(138,237,54,.45));
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.product-card:hover .emoji-wrap { transform: scale(1.2) rotate(-8deg); }

.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(138,237,54,.15), rgba(22,101,52,.15));
  border: 1px solid rgba(138,237,54,.25);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: .85rem;
  font-weight: 800;
  color: var(--green-light);
}

.btn-add {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  padding: 8px 20px;
  border-radius: 999px;
  transition: all .3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: .03em;
}
.btn-add:hover {
  box-shadow: 0 0 24px rgba(138,237,54,.5);
  transform: scale(1.05);
}
.btn-add:active { transform: scale(.97); }

/* === EXPERIENCE FEATURES === */
.feature-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-dark), var(--green-3));
  transform: scaleX(0);
  transition: transform .35s ease;
}
.feature-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  transform: translateY(-6px);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  margin-bottom: 14px;
  background: rgba(138,237,54,.1);
  border: 1px solid rgba(138,237,54,.2);
  color: #8aed36;
  filter: drop-shadow(0 0 10px rgba(138,237,54,.25));
  transition: all .3s ease;
}
.feature-card:hover .feature-icon {
  background: rgba(138,237,54,.18);
  box-shadow: 0 0 24px rgba(138,237,54,.25);
}

/* === CONFIGURATOR === */
.config-bg {
  background:
    radial-gradient(ellipse 500px 400px at 80% 50%, rgba(22,101,52,.1) 0%, transparent 70%),
    var(--dark-2);
}
.config-option {
  background: rgba(255,255,255,.04);
  border: 2px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 14px 10px;
  cursor: pointer;
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  transition: all .25s ease;
  user-select: none;
}
.config-option:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(138,237,54,.3);
}
.config-option.selected {
  background: linear-gradient(135deg, rgba(138,237,54,.18), rgba(22,101,52,.18));
  border-color: var(--green);
  color: var(--green-light);
  box-shadow: 0 0 24px rgba(138,237,54,.2);
}
.config-option .opt-emoji { font-size: 1.6rem; display: block; margin-bottom: 6px; }
.config-option.extra {
  background: linear-gradient(135deg, rgba(251,191,36,.12), rgba(138,237,54,.08));
  border-color: rgba(251,191,36,.5);
  box-shadow: 0 0 20px rgba(251,191,36,.15);
  color: #fde68a;
}

.step-dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700;
  border: 2px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.35);
  transition: all .3s ease;
  flex-shrink: 0;
}
.step-dot.active {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 24px rgba(138,237,54,.45);
}
.step-dot.done {
  background: rgba(16,185,129,.15);
  border-color: var(--mint);
  color: var(--mint);
}
.step-line {
  flex: 1; height: 1px;
  background: rgba(255,255,255,.08);
  transition: background .5s ease;
}
.step-line.active { background: linear-gradient(90deg, var(--mint), rgba(16,185,129,.2)); }

.config-panel {
  display: none;
  animation: reveal-up .35s ease forwards;
}
.config-panel.active { display: block; }

.summary-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.6);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.summary-item .label { color: rgba(255,255,255,.35); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
.summary-item .value { color: var(--green-light); font-weight: 600; }

/* === FLAVORS === */
.flavor-card {
  border-radius: 20px;
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.08);
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.03);
}
.flavor-card:hover {
  transform: translateY(-10px) scale(1.04);
  border-color: rgba(255,255,255,.2);
}
.flavor-card .flavor-emoji {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 10px;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}
.flavor-card:hover .flavor-emoji { transform: scale(1.2) rotate(-8deg); }
.flavor-card .flavor-name {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* === STATS === */
.stats-bg {
  background:
    radial-gradient(ellipse 600px 300px at 50% 50%, rgba(138,237,54,.07) 0%, transparent 70%),
    var(--dark-3);
}
.stat-number {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--green-light), var(--green-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  animation: count-in .6s ease forwards;
}

/* === TESTIMONIALS === */
.testi-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px;
  padding: 28px;
  transition: all .4s ease;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem; line-height: 1;
  color: rgba(138,237,54,.12);
  font-family: Georgia, serif;
  pointer-events: none;
}
.testi-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(138,237,54,.25);
  box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 40px rgba(138,237,54,.1);
  transform: translateY(-8px);
}
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(138,237,54,.3);
}
.stars { color: var(--yellow); font-size: .85rem; letter-spacing: 3px; }
.stars .fa-star { color: var(--yellow); }
.fa-brands.fa-instagram, .fa-brands.fa-whatsapp, .fa-brands.fa-tiktok { font-size: 1.15rem; }

/* === CTA === */
.cta-bg {
  background:
    radial-gradient(ellipse 900px 500px at 50% 50%, rgba(22,101,52,.18) 0%, transparent 65%),
    radial-gradient(ellipse 450px 600px at 20% 60%, rgba(138,237,54,.14) 0%, transparent 60%),
    radial-gradient(ellipse 400px 400px at 80% 30%, rgba(74,222,128,.08) 0%, transparent 60%),
    var(--dark-2);
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

/* === FOOTER === */
.footer-bg {
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-link {
  color: rgba(255,255,255,.45);
  font-size: .875rem;
  font-weight: 400;
  transition: color .3s;
  display: block;
  margin-bottom: 10px;
}
.footer-link:hover { color: var(--green-light); }
.social-btn {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
}
.social-btn:hover {
  background: rgba(138,237,54,.15);
  border-color: rgba(138,237,54,.4);
  box-shadow: 0 0 20px rgba(138,237,54,.2);
  transform: translateY(-4px);
}

/* === SCROLL REVEAL === */
.reveal, .reveal-l, .reveal-r {
  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1);
}
.reveal   { opacity:0; transform: translateY(52px); }
.reveal-l { opacity:0; transform: translateX(-52px); }
.reveal-r { opacity:0; transform: translateX(52px); }
.reveal.on, .reveal-l.on, .reveal-r.on { opacity:1; transform: translate(0); }

.stagger { opacity:0; transform: translateY(34px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.stagger.on { opacity:1; transform: translateY(0); }

/* === SHIMMER TEXT === */
.shimmer {
  background: linear-gradient(90deg, rgba(255,255,255,.5) 0%, #fff 45%, rgba(255,255,255,.5) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.5s linear infinite;
}

/* ══════════════════════════════════════════════
   IMAGE PLACEHOLDERS
══════════════════════════════════════════════ */
.img-placeholder {
  background:
    repeating-linear-gradient(45deg, rgba(138,237,54,.04) 0px, rgba(138,237,54,.04) 1px, transparent 1px, transparent 12px),
    rgba(8,16,10,.6);
  border: 2px dashed rgba(138,237,54,.3);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(138,237,54,.5);
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, background .3s;
}
.img-placeholder:hover {
  border-color: rgba(138,237,54,.6);
  background:
    repeating-linear-gradient(45deg, rgba(138,237,54,.07) 0px, rgba(138,237,54,.07) 1px, transparent 1px, transparent 12px),
    rgba(8,16,10,.8);
}
.img-placeholder .ph-icon {
  font-size: 2rem;
  opacity: .5;
}
.img-placeholder .ph-label {
  opacity: .7;
  text-align: center;
  line-height: 1.6;
}
.img-placeholder .ph-size {
  font-size: .65rem;
  opacity: .4;
  margin-top: -4px;
}
/* Banner text overlay */
.banner-text-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  gap: 10px;
  padding: 40px 48px;
  background: linear-gradient(to left, rgba(8,16,10,.82) 55%, transparent 100%);
  border-radius: 0 22px 22px 0;
}
.banner-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(138,237,54,.7);
}
.banner-title {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}
.banner-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  max-width: 340px;
}
@media (max-width: 640px) {
  .banner-text-overlay { width: 100%; border-radius: 22px; padding: 28px 24px; }
}

/* When you replace placeholder with real <img> */
.img-slot img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  display: block;
  border: 1.5px solid rgba(138,237,54,.15);
  box-shadow: 0 0 60px rgba(138,237,54,.1), 0 24px 60px rgba(0,0,0,.4);
}
@media (min-width: 640px) {
  .img-slot img { height: 380px; }
}
@media (min-width: 768px) {
  .img-slot img { height: 500px; }
}
.img-slot[style*="min-height"] img {
  height: 100%;
  min-height: 500px;
}

/* Wide/landscape img-slot variant (product banner pairs) */
.img-slot-banner img {
  height: 220px !important;
}
@media (min-width: 640px) {
  .img-slot-banner img { height: 300px !important; }
}
@media (min-width: 768px) {
  .img-slot-banner img { height: 380px !important; }
}
@media (min-width: 1024px) {
  .img-slot-banner img { height: 440px !important; }
}

/* Slogan responsive: reduce letter-spacing on mobile */
@media (max-width: 640px) {
  .slogan-hero { letter-spacing: .06em; }
}

/* CTA Banner */
.cta-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1.5px solid rgba(138,237,54,.18);
  box-shadow: 0 0 80px rgba(138,237,54,.12), 0 32px 80px rgba(0,0,0,.5);
}
.cta-banner img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cta-banner-text {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 52px 56px;
  background: linear-gradient(to right, rgba(6,12,8,.92) 50%, rgba(6,12,8,.6) 75%, transparent 100%);
}
@media (max-width: 768px) {
  .cta-banner img { height: 440px; object-position: 70% center; }
  .cta-banner-text { width: 100%; padding: 36px 28px; background: linear-gradient(to top, rgba(6,12,8,.95) 60%, rgba(6,12,8,.5) 85%, transparent 100%); justify-content: flex-end; }
}

/* Instagram hero embed */
.hero-ig-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(138,237,54,.25);
  box-shadow:
    0 0 80px rgba(138,237,54,.2),
    0 0 160px rgba(22,101,52,.1),
    0 32px 80px rgba(0,0,0,.5);
}
.hero-ig-frame {
  display: block;
  width: 100%;
  height: 560px;
  border: none;
  background: #0a0a0a;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero-ig-wrap { max-width: 100%; }
  .hero-ig-frame { min-height: 380px; height: 380px; }
}
@media (max-width: 480px) {
  .hero-ig-frame { min-height: 300px; height: 300px; }
}

/* Slogan hero */
.slogan-hero {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(138,237,54,.3) 0%, rgba(138,237,54,.85) 40%, rgba(74,222,128,.6) 70%, rgba(138,237,54,.3) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  margin: 0;
}

/* Divider gradient */
.divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138,237,54,.25), rgba(22,101,52,.2), transparent);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .yolu-cup-wrap { width: 200px; height: 240px; }
  .yolu-cup { width: 150px; height: 170px; }
}
@media (max-width: 768px) {
  .ring-1 { width: 220px; height: 220px; margin: -110px 0 0 -110px; }
  .ring-2 { width: 270px; height: 270px; margin: -135px 0 0 -135px; }
  .ring-3 { width: 160px; height: 160px; margin: -80px  0 0 -80px; }
}

/* ══════════════════════════════════════════════
   PHOTO GALLERY STRIP
══════════════════════════════════════════════ */
.gallery-strip { position: relative; }
.gallery-strip::before,
.gallery-strip::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.gallery-strip::before { left: 0;  background: linear-gradient(to right, #080810, transparent); }
.gallery-strip::after  { right: 0; background: linear-gradient(to left,  #080810, transparent); }

.gallery-track {
  display: flex;
  gap: 12px;
  animation: gallery-scroll 32s linear infinite;
  width: max-content;
}
.gallery-track:hover { animation-play-state: paused; }

.gallery-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 20px;
  border: 1.5px solid rgba(138,237,54,.15);
  flex-shrink: 0;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.gallery-img:hover {
  transform: scale(1.06);
  border-color: rgba(138,237,54,.5);
  box-shadow: 0 0 30px rgba(138,237,54,.2);
  z-index: 5;
}

@keyframes gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .gallery-img { width: 120px; height: 120px; }
}
