@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --font-family: 'Inter', sans-serif;
  --font-display: 'Inter', sans-serif;
  
  /* Premium Fresh Light Theme (Juice Vibe) */
  --bg-dark: #fcfcfc;
  --bg-surface: #ffffff;
  --bg-surface-glass: rgba(255, 255, 255, 0.6);
  --border-glass: rgba(255, 96, 0, 0.15);
  --border-glass-glow: rgba(255, 96, 0, 0.3);
  
  /* Rainbow Accent (used for titles and headers) */
  --rainbow-gradient: linear-gradient(90deg, #ff6000, #ff9f00, #ff007f, #8a2be2, #00b4d8, #ff6000);
  --rainbow-glow: rgba(255, 96, 0, 0.2);
  
  /* Dynamic Accent */
  --accent-current: #ff6000;
  --accent-current-rgb: 255, 96, 0;
  --accent-gradient: linear-gradient(135deg, #ff6000, #ff2a00);
  --accent-glow: rgba(255, 96, 0, 0.3);
  
  /* Flavor highlight tokens */
  --color-orange: #ff6000;
  --color-coconut: #00b4d8;
  --color-lemon: #70e000;
  --color-combo: #ff007f;
  --color-combo2: #8a2be2;
  --color-combo5: #00c853;
  --color-combo6: #2979ff;
  
  /* Text */
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 24px;
  --shadow: 0 20px 40px rgba(255, 96, 0, 0.08);
}

/* Base Styles */
html, body {
  overflow-x: hidden;
}

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

body { 
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 159, 0, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 180, 216, 0.1) 0%, transparent 45%),
    linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Selection and scrollbar */
::selection {
  background: var(--accent-current);
  color: #ffffff;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-current);
}

/* Glassmorphism Card styling */
.glass-card {
  background: var(--bg-surface-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

/* Premium V2 Utilities */
.premium-glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 15px 35px rgba(255, 96, 0, 0.08), inset 0 1px 0 rgba(255,255,255,1);
  border-radius: 32px;
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.glow-text {
  text-shadow: 0 0 20px var(--accent-glow);
}

/* Layout Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
}

.logo-img {
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(var(--accent-current-rgb), 0.3));
  transition: var(--transition);
}

.logo-text {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.logo-text span {
  background: var(--rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-current);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav-buy {
  background: var(--accent-gradient);
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px var(--accent-glow);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-nav-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--accent-glow);
  opacity: 0.95;
}

/* Hero Section */
.hero {
  padding: 140px 0 60px 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-text h1 span {
  background: var(--rainbow-gradient);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
}

.hero-tagline {
  font-size: 16px;
  max-width: 90%;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.badge {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-glass);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.badge:hover {
  border-color: var(--accent-current);
  background: rgba(var(--accent-current-rgb), 0.05);
}

.badge i {
  color: var(--accent-current);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-gradient);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 10px 30px var(--accent-glow);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px var(--accent-glow);
}

/* Smartphone Mockup Frame for Hero Portrait Video */
.hero-visual-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  perspective: 1200px;
}

.bottle-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(20px);
}

/* Hero Slider Card (Now just a container for the 3D track) */
.hero-slider-card {
  width: 240px;
  height: 426px;
  position: relative;
  z-index: 2;
  /* Removed overflow hidden and background to let slides pop out */
}

.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-track .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  border: 8px solid #ffffff;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(var(--accent-current-rgb), 0.25), 0 0 0 1px var(--border-glass);
  background: #0f172a;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(0) scale(0.6) translateZ(-200px);
  pointer-events: none;
}

/* Active Center Slide */
.slider-track .slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1) translateZ(0) rotateY(0deg);
  z-index: 3;
  pointer-events: auto;
}

/* Left Slide */
.slider-track .slide.prev-1 {
  opacity: 0.7;
  visibility: visible;
  transform: translateX(-65%) scale(0.85) translateZ(-100px) rotateY(15deg);
  z-index: 2;
}

/* Right Slide */
.slider-track .slide.next-1 {
  opacity: 0.7;
  visibility: visible;
  transform: translateX(65%) scale(0.85) translateZ(-100px) rotateY(-15deg);
  z-index: 2;
}

.slider-track .slide video,
.slider-track .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
  font-size: 14px;
}

.slider-btn:hover {
  background: var(--accent-gradient);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px var(--accent-glow);
}

.slider-btn.prev {
  left: 8px;
}

.slider-btn.next {
  right: 8px;
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: #ffffff;
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}



/* Benefits Section */
.features-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.4);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-box {
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.5);
}

.feature-box:hover {
  transform: translateY(-8px);
  border-color: var(--accent-current);
  box-shadow: var(--shadow), 0 0 25px rgba(var(--accent-current-rgb), 0.08);
}

.feature-box-icon {
  width: 64px;
  height: 64px;
  background: rgba(var(--accent-current-rgb), 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-size: 24px;
  color: var(--accent-current);
  transition: var(--transition);
}

.feature-box:hover .feature-box-icon {
  background: var(--accent-gradient);
  color: #fff;
  transform: rotate(360deg);
}

.feature-box h4 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-box p {
  font-size: 14px;
  color: var(--text-secondary);
}



/* Flavors / Catalog Grid */
.flavors {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.catalog-tier {
  margin-bottom: 40px;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-family: var(--font-display);
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.flavor-card {
  padding: 22px 18px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.6);
  min-height: 470px;
  height: auto;
  box-sizing: border-box;
}


.flavor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 25%, var(--theme-glow, rgba(255, 96, 0, 0.12)) 0%, transparent 60%);
  opacity: 0.15;
  transition: var(--transition);
}

.flavor-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-border-hover, var(--accent-current));
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 0 25px var(--theme-glow, rgba(255,96,0,0.1));
}

.flavor-card:hover::before {
  opacity: 0.35;
}

.flavor-card-img {
  width: 100% !important;
  height: 200px !important;
  object-fit: contain !important;
  object-position: center !important;
  margin-bottom: 16px !important;
  border-radius: 12px;
  transition: var(--transition);
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

.flavor-card:hover .flavor-card-img {
  transform: scale(1.08) rotate(3deg) translateY(-5px);
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.2));
}

.flavor-card h3 {
  font-size: 15px !important;
  line-height: 1.35 !important;
  min-height: 48px !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  margin: 0 0 8px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  width: 100%;
}

.product-title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 8px;
  min-height: 70px;
  z-index: 2;
}

.combo-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 96, 0, 0.12);
  border: 1px solid rgba(255, 96, 0, 0.3);
  color: #ff6000;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.combo-badge-pill.energetic {
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: #00b4d8;
}

.single-flavor-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(112, 224, 0, 0.1);
  border: 1px solid rgba(112, 224, 0, 0.25);
  color: #4c9900;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.product-title-text {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: var(--text-primary) !important;
  font-family: var(--font-display) !important;
  text-align: center !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  word-break: break-word !important;
}


.catalog-pricing-block {
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 12px !important;
  width: 100%;
}

.flavor-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  z-index: 2;
  letter-spacing: 1px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.flavor-card p {
  font-size: 14px;
  color: var(--text-secondary);
  z-index: 2;
  margin-bottom: 20px;
}

.btn-catalog-buy {
  background: rgba(15, 23, 42, 0.02);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  padding: 10px 20px;
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: auto !important;
  font-size: 14px;
  width: 100% !important;
  box-sizing: border-box;
  z-index: 2;
}

.flavor-card:hover .btn-catalog-buy {
  background: var(--card-border-hover, var(--accent-current));
  color: #fff;
  border-color: var(--card-border-hover, var(--accent-current));
  box-shadow: 0 4px 15px var(--theme-glow, rgba(255,96,0,0.15));
}

/* Slider specific styles */
.catalog-slider-container {
  position: relative;
  display: flex;
  align-items: center;
}

.flavor-grid.catalog-slider-track {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 15px 5px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  gap: 20px;
}

.flavor-grid.catalog-slider-track::-webkit-scrollbar {
  display: none;
}

.catalog-slider-track .flavor-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 240px;
  box-sizing: border-box;
}

.catalog-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-surface-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.catalog-slider-btn:hover {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 15px var(--accent-glow);
  transform: translateY(-50%) scale(1.1);
}

.catalog-slider-btn.prev {
  left: 0px;
}

.catalog-slider-btn.next {
  right: 0px;
}

/* Lifestyle/Active Photo Gallery Section */
.gallery-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 240px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:nth-child(2n) {
  grid-row: span 2;
}

.gallery-item:nth-child(3n) {
  grid-column: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  display: block;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
  z-index: 2;
}

.gallery-overlay h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 13px;
  color: var(--accent-current);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--accent-current);
  box-shadow: var(--shadow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Customer Reviews */
.reviews-section {
  padding: 100px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.review-card {
  padding: 40px 30px;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.5);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-current);
}

.stars {
  color: #f59e0b;
  margin-bottom: 20px;
  font-size: 16px;
}

.review-card p {
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

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

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--accent-current);
  border: 1px solid var(--border-glass);
}

.reviewer-info h5 {
  font-size: 16px;
  font-family: var(--font-display);
  font-weight: 700;
}

.reviewer-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Footer Section */
footer {
  padding: 80px 0 40px 0;
  border-top: 1px solid var(--border-glass);
  background: #0f172a;
}

footer .logo-text {
  color: #ffffff;
}

footer .logo-text span {
  background: var(--rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer p, footer a {
  color: #94a3b8 !important;
}

footer a:hover {
  color: var(--accent-current) !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 60px;
}

.footer-brand p {
  color: #94a3b8;
  margin-top: 20px;
  max-width: 360px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 35px;
  align-items: start;
  width: 100%;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.contact-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 14px !important;
  color: #cbd5e1 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.contact-list li i {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.contact-list li i.fa-phone {
  color: var(--accent-current, #ff6000);
}

.contact-list li i.fa-envelope {
  color: #00e5ff;
}

.contact-list li i.fa-location-dot {
  color: #70e000;
}

.contact-list li a {
  color: #cbd5e1 !important;
  word-break: break-all;
  font-weight: 500;
}

.contact-list li a:hover {
  color: #ffffff !important;
}

.contact-list li span {
  color: #cbd5e1;
  font-weight: 400;
}


.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
  color: #64748b;
}

/* Interactive Full-Page Product Detail Showcase */
.showcase-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

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

.showcase-window {
  width: 95%;
  max-width: 1100px;
  height: 90vh;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--border-radius);
  box-shadow: 0 30px 70px rgba(15,23,42,0.15), 0 0 50px rgba(var(--accent-current-rgb), 0.08);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  transform: translateY(40px) scale(0.97);
  transition: var(--transition);
  position: relative;
}

.showcase-overlay.active .showcase-window {
  transform: translateY(0) scale(1);
}

.showcase-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid var(--border-glass);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 100;
}

.showcase-close:hover {
  background: var(--accent-gradient);
  color: #fff;
  border-color: var(--accent-current);
  transform: rotate(90deg);
}

/* Left Column: Media Gallery Showcase */
.showcase-gallery {
  background: #f8fafc;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
}

.showcase-gallery::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.gallery-main-view {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  position: relative;
}

.gallery-main-view img {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-main-view:hover img {
  transform: scale(1.05) translateY(-5px);
}

.showcase-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-glass);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.showcase-carousel-arrow:hover {
  background: var(--accent-gradient);
  color: #fff;
  border-color: var(--accent-current);
}

.showcase-arrow-left {
  left: 10px;
}

.showcase-arrow-right {
  right: 10px;
}

.gallery-thumbnails-wrapper {
  margin-top: 20px;
}

.gallery-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 4px;
}

.gallery-thumbnails::-webkit-scrollbar {
  height: 6px;
}
.gallery-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.1);
  border-radius: 3px;
}

.thumb-item {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 2px solid rgba(15, 23, 42, 0.05);
  background: #ffffff;
  padding: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.thumb-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.thumb-item:hover {
  border-color: rgba(var(--accent-current-rgb), 0.5);
  transform: translateY(-2px);
}

.thumb-item.active {
  border-color: var(--accent-current);
  background: rgba(var(--accent-current-rgb), 0.02);
  box-shadow: 0 0 10px rgba(var(--accent-current-rgb), 0.2);
}

/* Right Column: Flavor Specs, Detail Info & Checkout Form */
.showcase-content {
  padding: 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.showcase-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.showcase-category-tag {
  align-self: flex-start;
  background: rgba(var(--accent-current-rgb), 0.05);
  border: 1px solid rgba(var(--accent-current-rgb), 0.15);
  color: var(--accent-current);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.showcase-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.showcase-title-row h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.showcase-title-row .price-badge {
  font-size: 26px;
  font-weight: 900;
  color: var(--accent-current);
}

.showcase-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Interactive Flavor profile progress bars */
.showcase-flavor-profile {
  background: rgba(15, 23, 42, 0.01);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.showcase-flavor-profile h4 {
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.profile-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.metric-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(15, 23, 42, 0.04);
  border-radius: 10px;
  overflow: hidden;
}

.metric-bar-fill {
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 10px;
  width: 0;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* Ingredients & Benefits Tabs */
.showcase-nutrition-tabs {
  background: rgba(15, 23, 42, 0.01);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 20px;
}

.showcase-nutrition-tabs h4 {
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tabs-benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tabs-benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.tabs-benefit-item i {
  color: var(--accent-current);
}

/* Form Styling within Showcase */
.showcase-checkout-form {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-checkout-form h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.qty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 23, 42, 0.01);
  border: 1px solid var(--border-glass);
  padding: 14px 20px;
  border-radius: 16px;
}

.qty-row label {
  font-size: 14px;
  font-weight: 700;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15,23,42,0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--accent-gradient);
  border-color: var(--accent-current);
  color: #fff;
}

.qty-value {
  font-size: 18px;
  font-weight: 800;
  width: 30px;
  text-align: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 14px;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-current);
  background: #ffffff;
  box-shadow: 0 0 15px rgba(var(--accent-current-rgb), 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-checkout-submit {
  width: 100%;
  margin-top: 10px;
  padding: 18px;
  font-size: 16px;
}

/* Admin Dashboard CSS Refinements */
.admin-body {
  background-color: #f1f5f9;
  padding-top: 110px;
}

.admin-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-logout {
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  font-size: 14px;
}

.btn-logout:hover {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 96, 0, 0.08);
  color: var(--color-orange);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card:nth-child(2) .stat-icon {
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
}
.stat-card:nth-child(3) .stat-icon {
  background: rgba(245, 158, 11, 0.08);
  color: var(--warning);
}
.stat-card:nth-child(4) .stat-icon {
  background: rgba(0, 180, 216, 0.08);
  color: var(--color-coconut);
}

.stat-info h3 {
  font-size: 26px;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 2px;
}

.stat-info p {
  font-size: 13px;
  color: var(--text-muted);
}

.admin-orders-container {
  padding: 30px;
  margin-bottom: 60px;
  background: #ffffff;
}

.table-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.order-filter-tabs {
  display: flex;
  gap: 10px;
}

.filter-tab {
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.filter-tab.active {
  background: var(--accent-gradient);
  color: #fff;
  border-color: var(--accent-current);
}

.orders-table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th {
  padding: 16px;
  border-bottom: 2px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

td {
  padding: 20px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
  font-size: 14px;
}

.status-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-paid {
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.15);
}
.status-pending {
  background: rgba(245, 158, 11, 0.08);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.15);
}
.status-failed {
  background: rgba(239, 68, 68, 0.08);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.15);
}
.status-shipped {
  background: rgba(0, 180, 216, 0.08);
  color: var(--color-coconut);
  border: 1px solid rgba(0, 180, 216, 0.15);
}
.status-delivered {
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.action-select {
  padding: 8px 12px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 13px;
  font-family: var(--font-family);
  cursor: pointer;
  transition: var(--transition);
}

.action-select:focus {
  outline: none;
  border-color: var(--accent-current);
}

/* Admin Login Screen Overlay */
.admin-login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  width: 95%;
  max-width: 400px;
  padding: 40px 30px;
  background: #ffffff;
}

.login-card h2 {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.login-card p {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 15px;
}

.login-err {
  color: var(--danger);
  font-size: 14px;
  margin-bottom: 15px;
  text-align: center;
  display: none;
  background: rgba(239, 68, 68, 0.05);
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.15);
}

/* Keyframe Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}

@keyframes shine {
  to {
    background-position: 300% center;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero {
    padding: 120px 0 40px 0;
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-text h1 {
    font-size: clamp(2rem, 7vw, 3.2rem);
  }
  .hero-tagline {
    margin: 0 auto 30px auto;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-visual-container {
    margin-top: 30px;
    max-width: 100%;
  }
  .hero-slider-card {
    width: 220px;
    height: 390px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .step-card::after {
    content: '\f0d7';
    top: auto;
    bottom: -25px;
    right: 50%;
    transform: translateX(50%);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Showcase details page on tablets */
  .showcase-window {
    display: flex !important;
    flex-direction: column !important;
    height: 95vh;
    overflow-y: auto;
  }
  .showcase-gallery {
    border-right: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding: 30px 20px;
    flex-shrink: 0;
  }
  .showcase-content {
    padding: 30px 20px;
  }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 1001;
}

/* Navigation & Global responsive rules */
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero { padding: 100px 0 40px 0; }
  .hero-visual-container { max-width: 100%; margin-top: 20px; }
  .hero-badges { justify-content: center; }
  .hero-tagline { margin: 0 auto 30px auto; }
  .features-section, .flavors, .gallery-section, .reviews-section { padding: 60px 0; }
  footer { padding: 60px 0 40px 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .footer-links { justify-content: center; }
  .section-title h2 { font-size: clamp(24px, 5vw, 32px); }
  .flavor-grid.catalog-slider-track { gap: 20px; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-glass);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links li { margin-bottom: 20px; }
  .nav-links li:last-child { margin-bottom: 0; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); grid-auto-rows: 180px; }
  .hero-text h1 { font-size: clamp(2rem, 6vw, 2.8rem); line-height: 1.1; }
  .btn-primary { padding: 14px 28px; font-size: 15px; }
}

@media (max-width: 576px) {
  .container { padding: 0 16px; }
  .hero-slider-card { width: 140px; height: 260px; }
  .slider-track .slide.prev-1 { transform: translateX(-62%) scale(0.85) translateZ(-100px) rotateY(15deg); }
  .slider-track .slide.next-1 { transform: translateX(62%) scale(0.85) translateZ(-100px) rotateY(-15deg); }
  .features-grid, .flavor-grid, .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
  .admin-stats-grid { grid-template-columns: 1fr; }
  .showcase-window { width: 100%; height: 100vh; border-radius: 0; border: none; }
  .showcase-close { top: 15px; right: 15px; }
  .form-row { grid-template-columns: 1fr; gap: 15px; }
  .tabs-benefits-list { grid-template-columns: 1fr; }
  .stat-card { padding: 16px; }
}
.flavor-card { position: relative; overflow: hidden; }


.flavor-card { position: relative; }

header { top: 40px !important; } 

@media (min-width: 992px) {
  .hero { padding-top: 180px !important; margin-top: 0px !important; }
}

@media (max-width: 991px) {
  .hero { padding-top: 140px !important; min-height: auto; margin-top: 0px !important; }
}

@media (max-width: 768px) {
  .hero { padding-top: 120px !important; }
}

/* =========================================================================
   CREATIVE & STANDARD UPGRADES (SEO/A11Y/ANIMATIONS)
   ========================================================================= */

/* --- 1. Infinite Marquee Banner --- */
.marquee-container { position: fixed !important; top: 0; left: 0; right: 0; height: 40px; z-index: 1010; display: flex; align-items: center; overflow: hidden; white-space: nowrap; background: linear-gradient(90deg, #ff0055, #ff3366, #ff0055); background-size: 200% auto; color: white; font-size: 14px; font-weight: 800; letter-spacing: 1px; }

.marquee-content {
  display: inline-block;
  animation: marquee 15s linear infinite;
}

.marquee-content span {
  display: inline-block;
  padding: 0 40px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Shift half width if items are duplicated enough */
}

/* --- 2. Scroll Reveal Animations --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- 3. 3D Tilt Card Glow Enhancements & Hover States --- */
/* The vanilla-tilt.js will handle the inline transform, we'll boost the hover box-shadow */
.flavor-card.premium-glass {
  transition: box-shadow 0.3s ease;
  transform-style: preserve-3d;
}
.flavor-card.premium-glass:hover {
  box-shadow: 0 15px 35px var(--theme-glow, rgba(0,0,0,0.1));
}
/* Pop out the image a bit on tilt */
.flavor-card.premium-glass:hover .flavor-card-img {
  transform: translateZ(30px) scale(1.05);
  transition: transform 0.3s ease;
}
.flavor-card.premium-glass .flavor-card-img {
  transition: transform 0.3s ease;
}

/* --- 4. Dynamic Blob Parallax Background --- */
.bg-blob-1, .bg-blob-2 {
  transition: transform 0.1s ease-out; /* Smooth follow on scroll */
}

/* --- 5. Creative Hero Elements (Elegant Version) --- */
@keyframes text-shimmer {
  to {
    background-position: 200% center;
  }
}

.btn-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 30px rgba(var(--accent-current-rgb), 0.35);
}

/* --- 6. PREMIUM VISIONARY CREATIVE ELEMENTS --- */
/* Ambient Parallax Orbs */
.ambient-orbs-container {
  display: none !important;
}


/* Cinematic Gallery (Ken Burns) */
.gallery-item {
  overflow: hidden; /* Critical for zoom effect clipping */
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1); /* Slow cinematic sweep */
  will-change: transform;
}
.gallery-item:hover img {
  transform: scale(1.2); /* Big slow zoom */
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.gallery-item:hover::after {
  opacity: 1; /* Darkens image slightly on hover to pop content */
}

/* Interactive Spotlight Cards */
.spotlight-card {
  position: relative;
  overflow: hidden;
}
.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.4), transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}
.spotlight-card:hover::before {
  opacity: 1;
}

/* Clean UI tweaks */
header nav.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Accessibility focus rings */
button:focus-visible, a:focus-visible {
  outline: 2px solid #ff3366;
  outline-offset: 3px;
}


/* =========================================================================
   MOBILE RESPONSIVENESS OVERRIDES
   ========================================================================= */
.mobile-menu-btn { display: none; }

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  
  /* Header & Navigation Fixes */
  .mobile-menu-btn {
    display: flex;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 1001;
    align-items: center;
    justify-content: center;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px 0;
    gap: 15px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-glass);
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links li a { display: inline-block; padding: 10px 0; width: 100%; }
  
  /* Hero Section */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero { padding: 80px 0 30px 0; }
  .hero-text h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-badges { justify-content: center; }
  .hero-visual-container { max-width: 100%; }
  
  /* Feature Grid */
  .features-grid { grid-template-columns: 1fr; }
  
  /* Action Gallery Grid */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 160px;
  }
  .gallery-item:nth-child(2n) { grid-row: span 1; }
  
  /* Footer Mobile Responsive */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 40px;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  
  /* Catalogs/Sliders */
  .catalog-tier { margin-bottom: 30px; }
  .catalog-slider-btn { display: flex !important; transform: translateY(-50%) scale(0.85); width: 36px; height: 36px; box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important; background: rgba(255,255,255,0.9) !important; }
  .catalog-slider-btn.prev { left: 0px; }
  .catalog-slider-btn.next { right: 0px; }
  .flavor-grid.catalog-slider-track {
    gap: 15px;
    padding: 15px 30px;
  }
  .catalog-slider-track .flavor-card { flex: 0 0 250px; }
  
  /* === Product Detail Showcase Responsive Overrides === */
  .showcase-window {
    display: flex !important;
    flex-direction: column !important;
    height: 90vh;
    overflow-y: auto;
    margin-top: 15px;
  }
  .showcase-gallery {
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    min-height: auto;
    flex-shrink: 0;
  }
  .gallery-main-view { min-height: 230px; }
  .showcase-content {
    padding: 20px;
    overflow: visible;
  }
  .showcase-title-row {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
  .showcase-title-row .price-badge { font-size: 22px; }
  .tabs-benefits-list { grid-template-columns: 1fr; }
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
\n.catalog-tier { margin-bottom: 80px; position: relative; }

/* Mobile Optimization for V2: Reduce scrolling */
@media (max-width: 768px) {
  .hero { padding: 80px 0 20px 0 !important; min-height: auto !important; }
  .hero-grid { gap: 10px !important; }
  .hero-slider-card { width: 120px !important; height: 200px !important; margin-bottom: 0px !important; }
  .about-us-section { padding: 1.5rem 0 1rem 0 !important; }
  .about-us-section .premium-glass { padding: 1.5rem 1rem !important; }
  .about-us-section h2 { font-size: 1.6rem !important; margin-bottom: 0.8rem !important; }
  .about-us-section p { font-size: 0.95rem !important; margin-bottom: 0.8rem !important; }
  .catalog-tier { margin-bottom: 30px !important; }
  .section-title { margin-bottom: 20px !important; padding: 0 !important; }
  .section-title h2 { font-size: 1.8rem !important; }
}

/* =========================================
   CREATIVE OVERHAUL INJECTIONS
   ========================================= */

#mouse-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,159,0,0.08) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
  mix-blend-mode: multiply;
}

.blob-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float-blob 20s infinite ease-in-out alternate;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 96, 0, 0.15);
  top: -10%;
  left: -10%;
}
.blob-2 {
  width: 600px;
  height: 600px;
  background: rgba(0, 180, 216, 0.1);
  bottom: -20%;
  right: -10%;
  animation-delay: -10s;
}

@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(100px, 100px) scale(1.2); }
}

.tilt-card {
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
  transform-style: preserve-3d;
}

.hero-text h1 {
  background: linear-gradient(270deg, #ff6000, #ff007f, #00c853, #ff6000);
  background-size: 300% 300%;
  animation: gradient-flow 8s ease infinite;
  -webkit-background-clip: text;
  color: transparent !important;
}

@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =========================================
   PHASE 2 CREATIVE ENHANCEMENTS
   ========================================= */

/* 1. Sweeping Button Hover Effect */
.btn-primary, #cartSubmitOrderBtn {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, #cartSubmitOrderBtn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: all 0.7s ease;
  pointer-events: none;
}
.btn-primary:hover::after, #cartSubmitOrderBtn:hover::after {
  left: 200%;
}

/* 2. Gallery Slow-Zoom Parallax */
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}
.gallery-item img {
  transition: transform 0.6s ease-out !important;
  will-change: transform;
}
.gallery-item:hover img {
  transform: scale(1.1) !important;
}

/* 3. Scroll Reveal Base CSS */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 4. Cart Button Pulse */
#floatingCartBtn {
  animation: cart-pulse 2s infinite;
}
@keyframes cart-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 96, 0, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(255, 96, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 96, 0, 0); }
}
