/* ===========================
   LOOPA — style.css
   =========================== */

:root {
  --green-dark: #1a4a1a;
  --green-mid: #2d7a2d;
  --green-bright: #4caf50;
  --green-light: #a8e6a3;
  --green-pale: #e8f5e1;
  --lime: #8bc34a;
  --mint: #b2dfdb;
  --white: #ffffff;
  --off-white: #f7fdf3;
  --text-dark: #1b2e1b;
  --text-mid: #3a5c3a;
  --text-light: #6a8c6a;
  --accent: #f9a825;
  --radius: 20px;
  --shadow: 0 8px 40px rgba(44, 122, 44, 0.15);
  --shadow-lg: 0 20px 60px rgba(44, 122, 44, 0.2);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-pale); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 10px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(44,122,44,0.1);
}
.nav-logo {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.8rem;
  color: var(--green-dark);
  letter-spacing: 2px;
}
.nav-logo span { color: var(--green-bright); }
.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green-bright);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--green-mid); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--green-mid);
  color: white;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px; cursor: pointer;
}
.hamburger span {
  width: 25px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--green-mid);
  color: white;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(45,122,45,0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(45,122,45,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--green-mid);
  border: 2px solid var(--green-mid);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-ghost:hover {
  background: var(--green-mid);
  color: white;
  transform: translateY(-3px);
}
.full-width { width: 100%; }

/* ===== SECTION LABELS ===== */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Paytone One', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 5% 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0faea 0%, #e3f5da 60%, #d1edca 100%);
}

/* animated bg circles */
.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; }
.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatCircle 8s ease-in-out infinite;
}
.c1 { width: 600px; height: 600px; background: var(--green-bright); top: -200px; right: -150px; animation-delay: 0s; }
.c2 { width: 300px; height: 300px; background: var(--lime); bottom: -100px; left: 10%; animation-delay: 2s; }
.c3 { width: 200px; height: 200px; background: var(--green-mid); top: 40%; left: 35%; animation-delay: 4s; }

@keyframes floatCircle {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content { z-index: 2; }
.hero-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Paytone One', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.05;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}
.hero-title span { color: var(--green-bright); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 420px;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

/* hero bottle */
.hero-bottle {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.bottle-glow {
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(76,175,80,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}
.bottle-img {
  height: 680px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(44,122,44,0.3));
  animation: float-bottle 4s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes float-bottle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* badges */
.badge {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  color: var(--green-dark);
  box-shadow: 0 8px 25px rgba(44,122,44,0.15);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: float-bottle 4s ease-in-out infinite;
  z-index: 3;
}
.badge-1 { top: 20%; left: 2%; animation-delay: 0.5s; }
.badge-2 { top: 55%; right: 2%; animation-delay: 1s; }
.badge-3 { bottom: 18%; left: 8%; animation-delay: 1.5s; }
.badge::before {
  content: '✓';
  display: block;
  font-size: 1rem;
  color: var(--green-bright);
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.4rem;
  z-index: 5;
}
.scroll-hint span {
  font-size: 0.7rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-light);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--green-mid), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===========================
   ABOUT
   =========================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 8rem 5%;
  background: white;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 500px;
}
.about-blob {
  position: absolute;
  width: 380px; height: 380px;
  background: var(--green-pale);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: morph 8s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33% { border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%; }
  66% { border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%; }
}
.about-bottle {
  height: 480px; object-fit: contain;
  position: relative; z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(44,122,44,0.2));
  animation: float-bottle 4s ease-in-out infinite;
}
.about-leaf {
  position: absolute;
  font-size: 2.5rem;
  z-index: 3;
  animation: float-bottle 5s ease-in-out infinite;
}
.leaf-1 { top: 10%; left: 10%; animation-delay: 1s; }
.leaf-2 { bottom: 15%; right: 10%; animation-delay: 2s; }

.about-desc {
  font-size: 1.05rem; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 2.5rem;
}
.about-stats {
  display: flex; gap: 2.5rem;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: 'Paytone One', sans-serif;
  font-size: 2.5rem;
  color: var(--green-mid);
}
.stat span { font-size: 1.5rem; color: var(--green-mid); font-weight: 700; }
.stat p { font-size: 0.8rem; color: var(--text-light); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ===========================
   FLAVORS
   =========================== */
.flavors {
  padding: 8rem 5%;
  background: linear-gradient(180deg, var(--green-pale) 0%, var(--off-white) 100%);
}
.flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 440px));
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.flavor-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.flavor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.flavor-card-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(76,175,80,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.flavor-emoji { font-size: 2rem; margin-bottom: 0.5rem; }
.flavor-bottle {
  height: 280px; object-fit: contain;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
  filter: drop-shadow(0 10px 20px rgba(44,122,44,0.2));
}
.flavor-card:hover .flavor-bottle { transform: scale(1.05); }
.flavor-info { text-align: center; }
.flavor-info h3 {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.flavor-info p {
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.6;
  margin-bottom: 1rem;
}
.flavor-tags {
  display: flex; gap: 0.5rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 1.2rem;
}
.flavor-tags span {
  background: var(--green-pale);
  color: var(--green-mid);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.coming-soon-card {
  background: white;
  border-radius: 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2rem;
  text-align: center;
  border: 2px dashed var(--green-light);
  gap: 1rem;
  transition: transform 0.3s;
}
.coming-soon-card:hover { transform: translateY(-8px); }
.cs-icon { font-size: 3rem; }
.coming-soon-card h3 {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.4rem;
  color: var(--green-dark);
}
.coming-soon-card p {
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.6;
}
.cs-badge {
  background: var(--green-pale);
  color: var(--green-mid);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ===========================
   INGREDIENTS
   =========================== */
.ingredients {
  padding: 8rem 5%;
  background: var(--green-dark);
}
.ingredients-inner { max-width: 1100px; margin: 0 auto; }
.ingredients .section-label { color: var(--green-light); }
.ingredients .section-title { color: white; }
.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.ing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: background 0.3s, transform 0.3s;
  backdrop-filter: blur(5px);
}
.ing-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}
.ing-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.ing-card h4 {
  font-weight: 700; font-size: 1rem;
  color: white; margin-bottom: 0.5rem;
}
.ing-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ===========================
   BULK ORDER
   =========================== */
.bulk {
  padding: 8rem 5%;
  background: white;
}
.bulk-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.bulk-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center; gap: 0.7rem;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}
.whatsapp-btn svg { width: 20px; height: 20px; }

/* form */
.bulk-form-wrap { position: relative; }
.bulk-form {
  background: var(--green-pale);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.bulk-form h3 {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: white;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.15);
}
.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  background: var(--green-pale);
  border: 1px solid rgba(76,175,80,0.18);
  border-radius: 24px;
  flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 0.9rem;
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
  min-height: 320px;
}
.form-success.show { display: flex; }
.success-icon {
  font-size: 4rem;
  animation: successPop 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
.form-success h3 {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.6rem;
  color: var(--green-dark);
  margin: 0;
}
.form-success p {
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 32ch;
  margin: 0;
}
.form-success .btn-ghost {
  margin-top: 0.6rem;
}
@keyframes successPop {
  0%   { transform: scale(0.4); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--green-dark);
  color: white;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding: 5rem 5% 3rem;
}
.footer-logo {
  font-family: 'Paytone One', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}
.footer-logo span { color: var(--green-bright); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.footer-socials a:hover { background: var(--green-bright); }
.footer-socials svg { width: 16px; height: 16px; fill: white; }

.footer-links h4, .footer-contact h4 {
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 1.2rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  text-decoration: none; color: rgba(255,255,255,0.65);
  font-size: 0.9rem; transition: color 0.3s;
}
.footer-links a:hover { color: white; }
.footer-contact p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 0.7rem; line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 5%;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: white;
    align-items: center; justify-content: center;
    gap: 2rem; z-index: 999;
  }
  .nav-links.open a { font-size: 1.3rem; }
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 8rem; }
  .hero-bottle { order: -1; }
  .bottle-img { height: 420px; }
  .badge { display: none; }
  .hero-btns { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .about { grid-template-columns: 1fr; }
  .about-visual { min-height: 300px; }
  .about-bottle { height: 340px; }
  .about-blob { width: 260px; height: 260px; }
  .flavors-grid { grid-template-columns: 1fr; max-width: 450px; }
  .ing-grid { grid-template-columns: 1fr 1fr; }
  .bulk-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .about-stats { gap: 1.5rem; }
}

@media (max-width: 550px) {
  .ing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ===========================
   MOMENTS WITH LOOPA
   =========================== */
.moments {
  padding: 8rem 5%;
  background: linear-gradient(180deg, #f7fdf3 0%, #e8f5e1 100%);
  overflow: hidden;
}
.moments-inner { max-width: 1100px; margin: 0 auto; }
.moments-title { color: var(--green-dark); }
.moments-title-accent { color: var(--green-bright); }
.moments-sub {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 4rem;
}

/* QR + Steps */
.moments-how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.moments-qr-wrap { display: flex; justify-content: center; }
.qr-card {
  background: white;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(44,122,44,0.15);
  position: relative;
  max-width: 280px;
  width: 100%;
}
.qr-pulse {
  position: absolute; inset: -8px;
  border-radius: 34px;
  border: 2px solid var(--green-bright);
  opacity: 0;
  animation: qr-ring 2.5s ease-out infinite;
}
.qr-pulse::after {
  content: '';
  position: absolute; inset: -10px;
  border-radius: 40px;
  border: 2px solid var(--green-light);
  opacity: 0;
  animation: qr-ring 2.5s ease-out infinite 0.6s;
}
@keyframes qr-ring {
  0% { opacity: 0.8; transform: scale(0.97); }
  100% { opacity: 0; transform: scale(1.06); }
}
.qr-code {
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 20px rgba(44,122,44,0.1);
}
.qr-label {
  font-size: 0.82rem; color: var(--text-light);
  font-weight: 600; margin-bottom: 0.8rem; letter-spacing: 0.5px;
}
.qr-link-btn {
  display: inline-block;
  background: var(--green-pale); color: var(--green-mid);
  text-decoration: none; padding: 0.55rem 1.3rem;
  border-radius: 50px; font-size: 0.82rem; font-weight: 700;
  transition: background 0.3s, color 0.3s;
  border: 1.5px solid var(--green-light);
}
.qr-link-btn:hover { background: var(--green-mid); color: white; }

/* Steps */
.moments-steps h3 {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.5rem; color: var(--green-dark); margin-bottom: 1.8rem;
}
.step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(76,175,80,0.12);
}
.step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step-num {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.5rem; color: var(--green-bright);
  opacity: 0.5; min-width: 40px; line-height: 1; padding-top: 2px;
}
.step-text strong {
  display: block; font-size: 1rem; font-weight: 700;
  color: var(--green-dark); margin-bottom: 0.2rem;
}
.step-text p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* Gallery header */
.moments-gallery-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 1.5rem;
}
.moments-gallery-header h3 {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.4rem; color: var(--green-dark);
}
.gallery-live-badge {
  background: #e8f5e1; color: var(--green-mid);
  padding: 0.3rem 0.9rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px;
  animation: blink-badge 2s ease-in-out infinite;
}
@keyframes blink-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Photo grid */
.moments-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-bottom: 3rem;
}
.moment-photo-card {
  border-radius: 18px; overflow: hidden;
  position: relative; aspect-ratio: 1 / 1;
  box-shadow: 0 6px 25px rgba(44,122,44,0.12);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.moment-photo-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 40px rgba(44,122,44,0.2);
}
.moment-photo-card img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.4s;
}
.moment-photo-card:hover img { transform: scale(1.08); }
.moment-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,74,26,0.78) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1rem;
}
.moment-photo-card:hover .moment-overlay { opacity: 1; }
.moment-overlay .mo-name { font-weight: 700; font-size: 0.9rem; color: white; margin-bottom: 0.2rem; }
.moment-overlay .mo-caption { font-size: 0.78rem; color: rgba(255,255,255,0.8); line-height: 1.4; }
.moment-overlay .mo-time { font-size: 0.7rem; color: rgba(255,255,255,0.55); margin-top: 0.3rem; }

/* CTA */
.moments-cta { text-align: center; }
.moments-upload-btn {
  font-size: 1.05rem; padding: 1rem 2.5rem;
  display: inline-block; text-decoration: none;
}

@media (max-width: 900px) {
  .moments-how { grid-template-columns: 1fr; gap: 3rem; }
  .moments-gallery { grid-template-columns: repeat(2, 1fr); }
  .qr-card { max-width: 240px; }
}
@media (max-width: 550px) {
  .moments-gallery { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
}

/* ===== FLAVORS DYNAMIC STATES ===== */
.flavors-loading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.flavor-skeleton {
  border-radius: 24px;
  height: 480px;
  background: linear-gradient(90deg, #e8f5e1 25%, #d4edcf 50%, #e8f5e1 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
}
.flavors-error {
  text-align: center; padding: 2rem;
  color: #c0392b; background: #fff0f0;
  border-radius: 16px; margin-top: 2rem;
  max-width: 900px; margin-left: auto; margin-right: auto;
  font-weight: 600;
}
@media (max-width: 900px) {
  .flavors-loading { grid-template-columns: 1fr; max-width: 450px; }
  .flavor-skeleton { height: 360px; }
}