/* =========================================================
   TenderCoco - Master Stylesheet
   Luxury Tropical Modern Design System with Rich Interactive Animations
========================================================= */

/* --- CSS Variables & Design Tokens --- */
:root {
  --primary-dark: #052e16;
  --primary: #065f46;
  --primary-light: #10b981;
  --primary-glow: rgba(16, 185, 129, 0.45);
  --mint-bg: #072718;
  --mint-card: rgba(6, 46, 22, 0.75);
  
  --accent-gold: #f59e0b;
  --accent-sand: #fef3c7;
  --accent-lime: #a3e635;
  
  --text-main: #e2fce9;
  --text-dark: #022c22;
  --text-muted: #88a898;
  --text-light: #ffffff;
  
  --glass-bg: rgba(4, 34, 16, 0.75);
  --glass-border: rgba(255, 255, 255, 0.16);
  --glass-light-bg: rgba(255, 255, 255, 0.95);
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.35);
  
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: all 0.2s ease;
}

/* --- Global Reset & Base Setup --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background-color: #02130a;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--primary-light);
  color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #020e07;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #34d399;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, textarea, select {
  font: inherit;
  outline: none;
  border: none;
}

/* --- Container & Utilities --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.16);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  line-height: 1.7;
}

.center-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   GLOBAL PRELOADER
========================================================= */
#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #064e3b 0%, #021a0d 100%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-emblem {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid rgba(16, 185, 129, 0.4);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
  margin-bottom: 24px;
}

.loader-ripple {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--primary-light);
  opacity: 0.8;
  animation: pulseRipple 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes pulseRipple {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}

.loader-emblem svg {
  width: 44px;
  height: 44px;
  fill: #34d399;
}

.loader-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.loader-tag {
  font-size: 0.85rem;
  color: #6ee7b7;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.loader-bar-wrap {
  width: 220px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #10b981, #a3e635);
  border-radius: 10px;
  transition: width 0.2s ease-out;
  box-shadow: 0 0 10px #10b981;
}

.loader-percent {
  margin-top: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  letter-spacing: 1px;
}

/* =========================================================
   FLOATING NAVBAR
========================================================= */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: padding 0.35s ease;
}

header.site-header.scrolled {
  padding: 12px 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: rgba(3, 26, 13, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
}

header.site-header.scrolled .nav-bar {
  background: rgba(2, 20, 10, 0.92);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #047857);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.logo-badge svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 4px 0;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

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

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

.btn-nav {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
  background: linear-gradient(135deg, #34d399, #059669);
}

.btn-mobile-toggle {
  display: none;
  background: transparent;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.btn-mobile-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 80px;
  left: 20px;
  right: 20px;
  background: rgba(2, 20, 10, 0.98);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  z-index: 999;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.mobile-drawer a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  display: block;
}

/* =========================================================
   PURE VISUAL BANNER STORY SECTION (#home)
   "home bannerill contentsum venda" -> Pure Cinematic Scroll!
========================================================= */
.banner-story-section {
  position: relative;
  /* 420vh gives a silky smooth, luxurious scrub through all 228 frames */
  height: 420vh;
  background: #010a05;
}

.banner-sticky-viewport {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scroll-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.banner-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at center, transparent 40%, rgba(1, 12, 6, 0.35) 100%),
    linear-gradient(to bottom, rgba(1, 15, 8, 0.4) 0%, transparent 20%, transparent 80%, rgba(1, 12, 6, 0.8) 100%);
  pointer-events: none;
}

/* Minimalist Scroll Prompt */
.banner-scroll-prompt {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity 0.5s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.scroll-wheel-icon {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 15px;
  position: relative;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.scroll-wheel-icon::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #34d399;
  border-radius: 2px;
  box-shadow: 0 0 8px #34d399;
  animation: wheelBounce 1.8s infinite;
}

@keyframes wheelBounce {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

.banner-story-section.scrolled .banner-scroll-prompt {
  opacity: 0;
}

/* =========================================================
   BUTTON STYLES
========================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  transform: translateY(-2px);
}

/* =========================================================
   MARQUEE RIBBON
========================================================= */
.marquee-ribbon {
  background: #011107;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  animation: scrollMarquee 25s linear infinite;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 36px;
}

.marquee-spark {
  color: var(--primary-light);
  font-size: 0.9rem;
}

/* =========================================================
   2. ABOUT SECTION (#about) - RICH INTERACTIVE ANIMATIONS
   "about sectionill intresting animation set akkanm"
========================================================= */
.about-section {
  padding: 130px 0;
  position: relative;
  background: linear-gradient(180deg, #02130a 0%, #052a19 50%, #031c10 100%);
  z-index: 10;
  overflow: hidden;
}

/* Floating Ambient Aura */
.about-section::before {
  content: '';
  position: absolute;
  top: 15%;
  right: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: auraPulse 8s ease-in-out infinite alternate;
}

@keyframes auraPulse {
  0% { transform: scale(0.9) translate(0, 0); }
  100% { transform: scale(1.2) translate(-30px, 30px); }
}

.about-intro-box {
  background: rgba(4, 34, 16, 0.72);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 54px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.story-text {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 24px;
}

.story-quote {
  border-left: 3px solid var(--primary-light);
  padding-left: 20px;
  font-style: italic;
  color: #a7f3d0;
  font-size: 1.05rem;
  margin: 24px 0;
  position: relative;
}

/* 4 Feature Pillars with Hover Glow and Spring Animation */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  transition: var(--transition-spring);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: linear-gradient(180deg, #10b981, #a3e635);
  transition: height 0.4s ease;
}

.pillar-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  background: #ffffff;
}

.pillar-card:hover::before {
  height: 100%;
}

.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #10b981, #059669);
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(16, 185, 129, 0.3);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.15) rotate(6deg);
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.pillar-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 0.92rem;
  color: #4b6358;
  line-height: 1.6;
}

/* Interactive Hydration Meter Widget in About */
.hydration-widget {
  margin-top: 50px;
  background: rgba(2, 22, 11, 0.88);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.widget-modes {
  display: flex;
  gap: 10px;
}

.widget-mode-btn {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.widget-mode-btn:hover,
.widget-mode-btn.active {
  background: var(--primary-light);
  color: #fff;
  border-color: var(--primary-light);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.bars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.meter-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meter-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
}

.meter-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #10b981, #a3e635);
  border-radius: 10px;
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

/* Animated Stats Row */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: rgba(2, 18, 9, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 36px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 800;
  color: #34d399;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================================
   3. PRODUCTS SECTION (#products) - RICH INTERACTIVE ANIMATIONS
   "product sectionilum intresting animation set akkanm"
========================================================= */
.products-section {
  padding: 130px 0;
  position: relative;
  background: linear-gradient(180deg, #031c10 0%, #05331e 50%, #021a0d 100%);
  z-index: 10;
}

.products-header-box {
  background: rgba(4, 34, 16, 0.72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 42px;
  margin-bottom: 40px;
  text-align: center;
}

/* Interactive Flavor Filter Pills */
.flavor-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(4, 34, 16, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border-color: #10b981;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  transform: translateY(-2px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* 3D Interactive Tilt Card with Dynamic Glare */
.product-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--text-dark);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

/* Mouse Glare Reflection */
.card-glare {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.45) 0%, transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.product-card:hover {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45);
}

.product-badge-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.product-card-image-box {
  width: 100%;
  height: 230px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at center, #dcfce7 0%, #bbf7d0 100%);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}

/* Floating Bottle Bobbing Animation */
.product-thumb-bottle {
  width: 135px;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(6, 78, 59, 0.3));
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: floatBottle 4s ease-in-out infinite alternate;
}

@keyframes floatBottle {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(-1.5deg); }
}

.product-card:hover .product-thumb-bottle {
  transform: scale(1.1) rotate(-4deg);
  animation-play-state: paused;
}

.product-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 0.95rem;
  color: #4b6358;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.spec-pill {
  background: rgba(16, 185, 129, 0.14);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(6, 78, 59, 0.1);
}

.product-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.product-price small {
  font-size: 0.82rem;
  font-weight: 500;
  color: #4b6358;
}

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

.btn-card-order {
  background: var(--primary-dark);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-card-order:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4);
}

.btn-card-info {
  background: rgba(6, 78, 59, 0.08);
  color: var(--primary-dark);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-card-info:hover {
  background: rgba(6, 78, 59, 0.2);
  transform: rotate(15deg);
}

/* Process & Cold Chain */
.process-section {
  padding: 110px 0;
  position: relative;
  background: #02160b;
  z-index: 10;
}

.process-box {
  background: rgba(4, 34, 16, 0.72);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  box-shadow: var(--shadow-lg);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.process-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  position: relative;
  transition: var(--transition-spring);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.5);
}

.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #34d399;
  opacity: 0.9;
  margin-bottom: 12px;
}

.process-step h4 {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

/* =========================================================
   4. CONTACT SECTION (#contact) - RICH INTERACTIVE ANIMATIONS
   "contact sectionilum intresting animation set akkanm"
========================================================= */
.contact-section {
  padding: 130px 0;
  position: relative;
  background: linear-gradient(180deg, #02160b 0%, #042414 50%, #010a05 100%);
  z-index: 10;
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

/* Contact Info Card */
.contact-info-card {
  background: rgba(4, 34, 16, 0.75);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.contact-detail-row:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(6px);
}

.detail-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.22);
  display: grid;
  place-items: center;
  color: #34d399;
  flex-shrink: 0;
  transition: var(--transition-spring);
}

.contact-detail-row:hover .detail-icon-wrap {
  transform: scale(1.15) rotate(-6deg);
  background: var(--primary-light);
  color: #fff;
}

.detail-icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.detail-text-wrap span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.detail-text-wrap strong {
  font-size: 1.05rem;
  color: #ffffff;
}

.social-pills-row {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.social-pill {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: #fff;
  transition: var(--transition-spring);
}

.social-pill:hover {
  background: var(--primary-light);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.social-pill svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Contact Form Card with Animated Border Glow */
.contact-form-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--text-dark);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Traveling Animated Border Beam */
.contact-form-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0 340deg, #10b981 360deg);
  animation: rotateBeam 7s linear infinite;
  z-index: 0;
  opacity: 0.25;
  pointer-events: none;
}

@keyframes rotateBeam {
  to { transform: rotate(360deg); }
}

.contact-form-inner {
  position: relative;
  z-index: 1;
}

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

.input-field-wrap {
  margin-bottom: 22px;
  position: relative;
}

.input-field-wrap label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.input-field-wrap input,
.input-field-wrap select,
.input-field-wrap textarea {
  width: 100%;
  background: rgba(240, 253, 244, 0.85);
  border: 1.5px solid rgba(6, 78, 59, 0.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.input-field-wrap textarea {
  resize: vertical;
  min-height: 120px;
}

.input-field-wrap input:focus,
.input-field-wrap select:focus,
.input-field-wrap textarea:focus {
  border-color: var(--primary-light);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.22);
}

.input-field-wrap:focus-within label {
  color: var(--primary-light);
}

/* FAQ Accordion Box */
.faq-box {
  margin-top: 60px;
  background: rgba(4, 34, 16, 0.72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(16, 185, 129, 0.4);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: transparent;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question svg {
  width: 22px;
  height: 22px;
  fill: #34d399;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding-bottom: 22px;
}

/* =========================================================
   FOOTER
========================================================= */
footer.site-footer {
  background: #010804;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 80px 0 40px;
  color: #fff;
  position: relative;
  z-index: 10;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-links-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #34d399;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-links-col a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 12px 20px;
  color: #fff;
  font-size: 0.9rem;
  flex-grow: 1;
}

.newsletter-form button {
  background: var(--primary-light);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background: #34d399;
  transform: scale(1.04);
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   INTERACTIVE PRODUCT MODAL
========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 28, 14, 0.82);
  backdrop-filter: blur(16px);
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  position: relative;
  color: var(--text-dark);
  transform: translateY(30px) scale(0.95);
  transition: var(--transition-spring);
}

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

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(6, 78, 59, 0.08);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--primary-dark);
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(6, 78, 59, 0.2);
  transform: rotate(90deg);
}

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.nutrition-table th,
.nutrition-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(6, 78, 59, 0.1);
  text-align: left;
  font-size: 0.92rem;
}

.nutrition-table th {
  color: var(--primary-dark);
  font-weight: 700;
}

.nutrition-table td {
  color: #4b6358;
}

/* =========================================================
   TOAST NOTIFICATION
========================================================= */
#toast-notification {
  position: fixed;
  bottom: 30px;
  right: 24px;
  background: rgba(4, 34, 16, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10001;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-spring);
}

#toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.toast-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* =========================================================
   SCROLL REVEAL UTILITIES
========================================================= */
.reveal-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE DESIGN BREAKPOINTS
========================================================= */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .bars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav {
    display: none;
  }
  
  .btn-mobile-toggle, .mobile-drawer {
    display: flex;
  }

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

  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  
  .about-intro-box, .contact-info-card, .contact-form-card, .hydration-widget {
    padding: 30px 20px;
  }
}
