/* ==========================================================
   NUTRICAFT STUDIO - OFFICIAL STYLESHEET
   Aesthetics: Futuristic Fitness / Neon Glassmorphism Dark Mode
   ========================================================== */

:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: rgba(18, 24, 38, 0.75);
  --bg-card-hover: rgba(28, 38, 59, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 240, 255, 0.35);

  --neon-cyan: #00f0ff;
  --neon-pink: #ff007a;
  --neon-green: #00ff88;
  --neon-gold: #ffd000;
  --neon-purple: #9d4edd;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-glow-cyan: 0 0 25px rgba(0, 240, 255, 0.4);
  --shadow-glow-pink: 0 0 25px rgba(255, 0, 122, 0.4);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* BACKGROUND GLOW ORBS */
.glow-bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00f0ff 0%, rgba(0, 240, 255, 0) 70%);
  top: -150px;
  left: -100px;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #ff007a 0%, rgba(255, 0, 122, 0) 70%);
  top: 40%;
  right: -200px;
  animation-duration: 22s;
  animation-delay: -5s;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #00ff88 0%, rgba(0, 255, 136, 0) 70%);
  bottom: 5%;
  left: 10%;
  animation-duration: 26s;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
  100% { transform: translate(-40px, 80px) scale(0.95); }
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================
   NAVBAR
   ========================================================== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
}

.logo-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px var(--neon-cyan));
}

.logo-text {
  color: #fff;
}

.logo-text .highlight {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover, .nav-link.active {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.cart-btn:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, var(--neon-pink), #ff4d94);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 10px rgba(255, 0, 122, 0.7);
}

.cta-order-btn {
  background: linear-gradient(135deg, var(--neon-cyan), #0099ff);
  color: #050b14;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.cta-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
}

/* ==========================================================
   HERO SECTION - GLOW TITLE & OUTLINE SUBTITLE
   ========================================================== */
.hero-section {
  padding: 80px 0 60px;
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neon-cyan);
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  animation: pulseAnimation 1.8s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px var(--neon-cyan); }
  100% { transform: scale(0.9); opacity: 0.7; }
}

/* --- GLOW TITLE REQUIREMENT --- */
.hero-title.glow-text {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  text-shadow: 
    0 0 10px rgba(0, 240, 255, 0.8),
    0 0 20px rgba(0, 240, 255, 0.6),
    0 0 40px rgba(0, 240, 255, 0.4),
    0 0 80px rgba(0, 160, 255, 0.3);
  animation: glowPulsate 3.5s ease-in-out infinite alternate;
}

@keyframes glowPulsate {
  0% {
    text-shadow: 
      0 0 10px rgba(0, 240, 255, 0.8),
      0 0 20px rgba(0, 240, 255, 0.5),
      0 0 35px rgba(0, 240, 255, 0.3);
  }
  100% {
    text-shadow: 
      0 0 15px rgba(0, 240, 255, 1),
      0 0 30px rgba(0, 240, 255, 0.8),
      0 0 50px rgba(0, 240, 255, 0.6),
      0 0 85px rgba(255, 0, 122, 0.4);
  }
}

/* --- GLOWING OUTLINE SUBTITLE REQUIREMENT --- */
.hero-subtitle.glowing-outline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: #f1f5f9;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.4);
  box-shadow: 
    0 0 15px rgba(0, 240, 255, 0.35),
    inset 0 0 12px rgba(0, 240, 255, 0.15);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
  transition: var(--transition-smooth);
}

.hero-subtitle.glowing-outline:hover {
  border-color: var(--neon-cyan);
  box-shadow: 
    0 0 25px rgba(0, 240, 255, 0.6),
    inset 0 0 18px rgba(0, 240, 255, 0.3);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-cyan), #0099ff);
  color: #070d17;
  font-weight: 700;
}

.btn-primary.glow-btn {
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.45);
}

.btn-primary.glow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.8);
}

.btn-secondary.glass-btn {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary.glass-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-success {
  background: linear-gradient(135deg, var(--neon-green), #059669);
  color: #041f13;
  font-weight: 700;
}

.btn-success.glow-btn-success {
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.45);
}

.btn-success.glow-btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 255, 136, 0.7);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 600;
}

.btn-whatsapp:hover {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

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

.btn-block {
  width: 100%;
}

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--neon-cyan);
  line-height: 1.2;
}

.stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-color);
}

/* HERO 3D CARD VISUAL */
.hero-card-3d {
  position: relative;
  background: rgba(18, 24, 38, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.15);
  transition: var(--transition-smooth);
}

.hero-card-3d:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 45px rgba(0, 240, 255, 0.3);
  transform: translateY(-6px);
}

.product-badge-float {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, #ff007a, #ff5e36);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(255, 0, 122, 0.5);
}

.hero-img-box {
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, rgba(10, 14, 23, 0.4) 80%);
  border-radius: var(--radius-md);
  padding: 40px 20px;
  margin-bottom: 20px;
  border: 1px dashed rgba(0, 240, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gummy-visual-preview {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.gummy-item-graphic {
  width: 90px;
  height: 110px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.gummy-item-graphic.berry {
  background: linear-gradient(145deg, rgba(255, 0, 122, 0.25), rgba(157, 78, 221, 0.35));
  border: 1px solid rgba(255, 0, 122, 0.5);
  color: #ff80bf;
}

.gummy-item-graphic.citrus {
  background: linear-gradient(145deg, rgba(255, 208, 0, 0.25), rgba(255, 94, 54, 0.35));
  border: 1px solid rgba(255, 208, 0, 0.5);
  color: #ffe066;
}

.gummy-item-graphic.apple {
  background: linear-gradient(145deg, rgba(0, 255, 136, 0.25), rgba(0, 240, 255, 0.35));
  border: 1px solid rgba(0, 255, 136, 0.5);
  color: #66ffb2;
}

.gummy-item-graphic:hover {
  transform: translateY(-8px) scale(1.05);
}

.gummy-icon {
  font-size: 1.8rem;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-footer h4 {
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.hero-card-footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-tag {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* ==========================================================
   OPTIONS BAR (Quick Selection)
   ========================================================== */
.options-bar-section {
  padding: 20px 0 40px;
}

.options-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.option-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
}

.option-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
  transform: translateY(-4px);
}

.opt-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--neon-cyan);
  flex-shrink: 0;
}

.opt-text h3 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.opt-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.opt-arrow {
  margin-left: auto;
  color: var(--text-dim);
  transition: var(--transition-fast);
}

.option-card:hover .opt-arrow {
  color: var(--neon-cyan);
  transform: translateX(4px);
}

/* ==========================================================
   LIST MENU SECTION
   ========================================================== */
.menu-section {
  padding: 60px 0 80px;
}

.section-header {
  margin-bottom: 40px;
}

.section-header.text-center {
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 0, 122, 0.1);
  border: 1px solid rgba(255, 0, 122, 0.3);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff4d94;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.menu-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--neon-cyan);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

/* PRODUCT CARD */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--card-glow-color, var(--neon-cyan)), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--card-glow-color, rgba(0, 240, 255, 0.4));
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 240, 255, 0.15);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.product-category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
}

.product-macro-badge {
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: var(--neon-green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.product-visual-box {
  height: 160px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(10, 14, 23, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-emoji-icon {
  font-size: 4rem;
  filter: drop-shadow(0 0 15px currentColor);
  transition: var(--transition-smooth);
}

.product-card:hover .product-emoji-icon {
  transform: scale(1.15) rotate(5deg);
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-nutrition-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.nutri-pill {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--text-muted);
}

.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.product-card-actions {
  display: flex;
  gap: 8px;
}

.btn-icon-detail {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-icon-detail:hover {
  background: rgba(0, 240, 255, 0.15);
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
}

.btn-add-cart {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--neon-cyan), #0088ff);
  color: #06111e;
  border: none;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.btn-add-cart:hover {
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
  transform: translateY(-2px);
}

/* ==========================================================
   KOMPOSISI & KANDUNGAN SECTION
   ========================================================== */
.nutrition-section {
  padding: 70px 0;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  padding: 28px;
}

.nutrition-card {
  transition: var(--transition-smooth);
}

.nutrition-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.nutri-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.cyan-glow {
  background: rgba(0, 240, 255, 0.12);
  color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
  border: 1px solid rgba(0, 240, 255, 0.4);
}

.pink-glow {
  background: rgba(255, 0, 122, 0.12);
  color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 0, 122, 0.25);
  border: 1px solid rgba(255, 0, 122, 0.4);
}

.gold-glow {
  background: rgba(255, 208, 0, 0.12);
  color: var(--neon-gold);
  box-shadow: 0 0 20px rgba(255, 208, 0, 0.25);
  border: 1px solid rgba(255, 208, 0, 0.4);
}

.nutrition-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.nutrition-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.nutri-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nutri-list li {
  font-size: 0.85rem;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nutri-list li i {
  color: var(--neon-green);
  font-size: 0.8rem;
}

/* NUTRITION TABLE */
.nutrition-table-box {
  padding: 30px;
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.table-header h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.table-responsive {
  overflow-x: auto;
}

.nutri-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.nutri-table th, .nutri-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-color);
}

.nutri-table th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--neon-cyan);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nutri-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.badge-protein {
  background: rgba(0, 255, 136, 0.15);
  color: var(--neon-green);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

/* ==========================================================
   ABOUT SECTION
   ========================================================== */
.about-section {
  padding: 40px 0 80px;
}

.about-box {
  padding: 40px;
  background: linear-gradient(135deg, rgba(18, 24, 38, 0.9), rgba(10, 14, 23, 0.95));
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.about-info h2 {
  font-size: 2.2rem;
  margin: 12px 0 16px;
}

.about-info p {
  color: var(--text-muted);
  max-width: 800px;
  margin-bottom: 28px;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.af-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.af-item i {
  font-size: 1.5rem;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.1);
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 240, 255, 0.25);
}

.af-item strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}

.af-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: #06090f;
  border-top: 1px solid var(--border-color);
  padding: 50px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 12px;
  max-width: 340px;
}

.copyright {
  color: var(--text-dim) !important;
  font-size: 0.8rem !important;
  margin-top: 24px;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--neon-cyan);
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a {
  color: #25D366;
}

/* ==========================================================
   CART DRAWER
   ========================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #0f1624;
  border-left: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--neon-cyan);
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 1;
}

.close-btn:hover {
  color: #fff;
}

.cart-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  color: var(--text-dim);
  gap: 12px;
}

.cart-empty-state i {
  font-size: 3rem;
  color: var(--text-dim);
}

.cart-item-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--neon-green);
}

.cart-qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  padding: 3px 6px;
  border-radius: var(--radius-sm);
}

.qty-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 2px 6px;
}

.qty-btn:hover {
  color: #fff;
}

.qty-val {
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px;
}

.cart-item-remove:hover {
  color: var(--neon-pink);
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-color);
  background: #0b101b;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cart-total-price {
  color: var(--neon-cyan);
  font-family: var(--font-heading);
}

/* ==========================================================
   MODAL DIALOGS (Checkout, Minigame, ThankYou, Nutrition)
   ========================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #0f1624;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 240, 255, 0.2);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;
}

/* CHECKOUT MODAL STYLES */
.checkout-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: var(--neon-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.checkout-header {
  margin-bottom: 24px;
}

.checkout-header h2 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.checkout-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.checkout-form-group {
  margin-bottom: 16px;
}

.checkout-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.checkout-form-group input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.checkout-form-group input:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
}

.payment-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.payment-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.payment-option-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}

.payment-option-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.payment-option-card.active {
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.pay-title {
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.payment-option-card.active .pay-title {
  color: var(--neon-cyan);
}

.pay-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.pay-badge {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 8px;
  border-radius: 4px;
  align-self: flex-start;
}

.qris-badge {
  background: rgba(0, 240, 255, 0.15);
  color: var(--neon-cyan);
}

.payment-details-view {
  display: none;
  margin-bottom: 20px;
  animation: fadeIn 0.3s ease;
}

.payment-details-view.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.cash-notice-box {
  background: rgba(255, 208, 0, 0.08);
  border: 1px solid rgba(255, 208, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cash-notice-box i {
  color: var(--neon-gold);
  font-size: 1.3rem;
  margin-top: 2px;
}

.cash-notice-box strong {
  font-size: 0.9rem;
  color: #fff;
}

.cash-notice-box p {
  font-size: 0.82rem;
  color: #cbd5e1;
  margin-top: 2px;
}

/* QRIS MOCKUP */
.qris-box {
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(0, 240, 255, 0.3);
  background: rgba(10, 14, 23, 0.6);
}

.qris-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.qris-brand-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: #e63946;
}

.qris-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.qris-code-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.qris-qr-code {
  background: #fff;
  padding: 10px;
  border-radius: var(--radius-md);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.25);
  display: inline-block;
}

.qris-merchant-info {
  text-align: left;
  max-width: 200px;
}

.merchant-name {
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.qris-inst {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.ewallet-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ewallet-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.ewallet-tag.gopay { background: #00aed6; color: #fff; }
.ewallet-tag.ovo { background: #4c2a86; color: #fff; }
.ewallet-tag.dana { background: #118eea; color: #fff; }
.ewallet-tag.shopee { background: #ee4d2d; color: #fff; }
.ewallet-tag.bca { background: #005aa9; color: #fff; }

.qris-status-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  padding: 8px;
  border-radius: var(--radius-sm);
}

.spinner-pulse {
  width: 10px;
  height: 10px;
  background-color: var(--neon-cyan);
  border-radius: 50%;
  animation: pulseAnimation 1.2s infinite;
}

.checkout-total-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.checkout-total-banner strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--neon-cyan);
}

/* ==========================================================
   MINIGAME: FLAPPY PROTEIN GUMMY
   ========================================================== */
.minigame-card {
  max-width: 480px;
  padding: 24px;
  text-align: center;
}

.game-title-group {
  margin-bottom: 16px;
}

.game-badge {
  background: linear-gradient(135deg, var(--neon-pink), #9d4edd);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 6px;
}

.game-title-group h3 {
  font-size: 1.4rem;
}

.game-title-group p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.canvas-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
  margin-bottom: 16px;
}

#flappyCanvas {
  width: 100%;
  height: 100%;
  display: block;
  background: #070b13;
  cursor: pointer;
}

.game-overlay-start {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 19, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 12px;
  transition: opacity 0.3s ease;
}

.game-overlay-start.hidden {
  opacity: 0;
  pointer-events: none;
}

.gummy-avatar-jump {
  font-size: 3.5rem;
  animation: jumpGummy 1s ease-in-out infinite alternate;
}

@keyframes jumpGummy {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px) scale(1.1); }
}

.game-overlay-start h4 {
  font-size: 1.15rem;
}

.game-overlay-start p {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 280px;
}

.game-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-score-display {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
}

.game-score-display strong {
  color: var(--neon-cyan);
}

/* ==========================================================
   THANK YOU CELEBRATION MODAL
   ========================================================== */
.thank-you-card {
  max-width: 520px;
  text-align: center;
  padding: 36px 28px;
  overflow: hidden;
  position: relative;
}

#confettiCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.celebration-content {
  position: relative;
  z-index: 2;
}

.celebration-emoji-bounce {
  font-size: 3.2rem;
  margin-bottom: 12px;
  animation: bounceEmoji 1.5s infinite;
}

@keyframes bounceEmoji {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.15); }
}

.celebration-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
  line-height: 1.25;
}

.celebration-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.order-receipt-box {
  padding: 18px 22px;
  text-align: left;
  margin-bottom: 20px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.receipt-row:last-child {
  border-bottom: none;
}

.receipt-row span {
  color: var(--text-muted);
}

.receipt-tag {
  background: rgba(0, 240, 255, 0.15);
  color: var(--neon-cyan);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.badge-success {
  background: rgba(0, 255, 136, 0.15);
  color: var(--neon-green);
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.countdown-notification {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--neon-gold);
  background: rgba(255, 208, 0, 0.1);
  border: 1px solid rgba(255, 208, 0, 0.25);
  padding: 10px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

/* ==========================================================
   SELLER CONTACT POPUP (KURO - DELAYED)
   ========================================================== */
.seller-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 500;
  max-width: 380px;
  width: calc(100% - 40px);
  transform: translateY(120px) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.seller-popup.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.seller-popup-content {
  position: relative;
  padding: 22px;
  background: #0f1624;
  border: 1px solid rgba(37, 211, 102, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(37, 211, 102, 0.25);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.popup-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.popup-close-btn:hover {
  color: #fff;
}

.seller-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #128C7E, #25D366);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.status-online {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: #00ff88;
  border: 2px solid #0f1624;
  border-radius: 50%;
}

.seller-details {
  flex-grow: 1;
}

.popup-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #25D366;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 2px;
}

.seller-name {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 2px;
}

.seller-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.seller-phone {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 12px;
}

.seller-action-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-whatsapp-popup {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-popup:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
}

/* ==========================================================
   PRODUCT DETAIL / NUTRITION MODAL
   ========================================================== */
.product-detail-card {
  max-width: 650px;
}

.product-detail-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pdm-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pdm-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border: 1px solid var(--border-color);
}

.pdm-info h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.pdm-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--neon-green);
}

.pdm-nutrition-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pdm-bar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}

.pdm-bar-card strong {
  display: block;
  font-size: 1.15rem;
  color: var(--neon-cyan);
}

.pdm-bar-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pdm-ingredients-box {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border-color);
}

.pdm-ingredients-box h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #cbd5e1;
}

.pdm-ingredients-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================
   TOAST NOTIFICATION
   ========================================================== */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0f1624;
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 240, 255, 0.3);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 600;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast-notification.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-notification i {
  color: var(--neon-cyan);
}

/* ==========================================================
   ELPRO GUMMIES SPECIFIC ASSET STYLES
   ========================================================== */
.hero-poster-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.2) 0%, rgba(10, 14, 23, 0.6) 80%);
  border: 1px solid rgba(157, 78, 221, 0.35);
  box-shadow: 0 0 25px rgba(157, 78, 221, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 380px;
}

.hero-poster-img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.hero-card-3d:hover .hero-poster-img {
  transform: scale(1.03);
}

.elpro-visual-box {
  height: 180px;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, rgba(10, 14, 23, 0.3) 100%);
  border: 1px solid rgba(157, 78, 221, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card-poster-thumb {
  max-height: 140px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(157, 78, 221, 0.5));
  transition: var(--transition-smooth);
}

.product-card:hover .product-card-poster-thumb {
  transform: scale(1.08) translateY(-4px);
}

.price-bubble-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: linear-gradient(135deg, #9d4edd, #ff007a);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 12px rgba(157, 78, 221, 0.6);
}

/* QRIS REAL IMAGE CONTAINER */
.official-qris-container {
  max-width: 200px;
  padding: 8px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.qris-real-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.merchant-nmid {
  font-size: 0.78rem;
  color: var(--neon-cyan);
  margin-bottom: 8px;
}

/* NUTRITION INGREDIENTS LIST BANNER */
.ingredients-list-banner {
  background: rgba(157, 78, 221, 0.08);
  border: 1px solid rgba(157, 78, 221, 0.25);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.ingredients-list-banner h3 {
  font-size: 1.15rem;
  color: #e0aaff;
  margin-bottom: 6px;
}

.prop-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.ingredients-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ing-item {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #f1f5f9;
}

.ing-item strong {
  color: var(--neon-cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 6px;
}

.ing-item em {
  color: #c77dff;
  font-style: normal;
  font-weight: 600;
}

.purple-glow {
  background: rgba(157, 78, 221, 0.15);
  color: #c77dff;
  box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
  border: 1px solid rgba(157, 78, 221, 0.4);
}

.badge-cal {
  background: rgba(255, 208, 0, 0.15);
  color: var(--neon-gold);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.badge-low-fat {
  background: rgba(0, 240, 255, 0.15);
  color: var(--neon-cyan);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

/* SELLER SOCIAL CHIPS */
.seller-social-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-chip.ig:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  border-color: transparent;
}

.social-chip.tt:hover {
  background: #000;
  color: #00f0ff;
  border-color: #00f0ff;
}

.social-chip.mail:hover {
  background: #ea4335;
  color: #fff;
  border-color: transparent;
}

/* ==========================================================
   RESPONSIVE DESIGN
   ========================================================== */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-desc {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .options-bar {
    grid-template-columns: 1fr;
  }

  .nutrition-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .payment-options-grid {
    grid-template-columns: 1fr;
  }

  .pdm-nutrition-bars {
    grid-template-columns: 1fr;
  }
}

