/* ================================================
   NATURAL JEEVAN AYURVEDA — SVG Icon System
   Premium glowing animated SVG icons
   ================================================ */

/* ---- SVG Icon Base ---- */
.icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-svg svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  transition: all var(--transition-med);
  filter: drop-shadow(0 0 3px currentColor);
}

/* Glow animation on icons */
.icon-glow svg {
  animation: iconGlow 2.5s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(107, 191, 62, 0.3)); }
  50% { filter: drop-shadow(0 0 12px rgba(107, 191, 62, 0.7)); }
}

/* Icon Sizes */
.icon-xs { font-size: 0.875rem; }
.icon-sm { font-size: 1rem; }
.icon-md { font-size: 1.25rem; }
.icon-lg { font-size: 1.5rem; }
.icon-xl { font-size: 2rem; }
.icon-2xl { font-size: 2.5rem; }
.icon-3xl { font-size: 3.5rem; }

/* Icon Colors */
.icon-green svg { color: var(--green); fill: var(--green); }
.icon-cream svg { color: var(--cream); fill: var(--cream); }
.icon-navy svg { color: var(--navy); fill: var(--navy); }
.icon-muted svg { color: rgba(245, 245, 232, 0.5); fill: rgba(245, 245, 232, 0.5); }
.icon-white svg { color: white; fill: white; }
.icon-red svg { color: #f87171; fill: #f87171; }
.icon-blue svg { color: #60a5fa; fill: #60a5fa; }
.icon-yellow svg { color: #fbbf24; fill: #fbbf24; }
.icon-purple svg { color: #a78bfa; fill: #a78bfa; }

/* Hover glow effect on parent */
.icon-hover-glow:hover svg {
  filter: drop-shadow(0 0 14px rgba(107, 191, 62, 0.8));
  transform: scale(1.1);
}

/* Category Icon Circle */
.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  transition: all var(--transition-med);
  position: relative;
}

.icon-circle::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--green), transparent, var(--green));
  opacity: 0;
  transition: opacity var(--transition-med);
  z-index: -1;
  animation: iconCircleRotate 4s linear infinite;
}

.category-card:hover .icon-circle::before,
.glass-card:hover .icon-circle::before {
  opacity: 0.5;
}

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

.icon-circle.green-bg {
  background: rgba(107, 191, 62, 0.12);
  border: 1px solid rgba(107, 191, 62, 0.2);
}

.icon-circle.blue-bg {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.icon-circle.purple-bg {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.icon-circle.yellow-bg {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Stat Card Icons */
.stat-icon-svg {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.4rem;
}

.stat-icon-svg svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 8px currentColor);
  animation: iconGlow 3s ease-in-out infinite;
}

.stat-icon-svg.green { background: rgba(107, 191, 62, 0.15); color: var(--green); }
.stat-icon-svg.green svg { fill: var(--green); }
.stat-icon-svg.blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.stat-icon-svg.blue svg { fill: #60a5fa; }
.stat-icon-svg.purple { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.stat-icon-svg.purple svg { fill: #a78bfa; }
.stat-icon-svg.yellow { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.stat-icon-svg.yellow svg { fill: #fbbf24; }

/* Contact Icon Box */
.contact-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(107, 191, 62, 0.12);
  border: 1px solid rgba(107, 191, 62, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-box svg {
  width: 24px;
  height: 24px;
  fill: var(--green);
  filter: drop-shadow(0 0 6px rgba(107, 191, 62, 0.5));
  animation: iconGlow 2.5s ease-in-out infinite;
}

/* Social Icon Links */
.social-icon-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-med);
}

.social-icon-link svg {
  width: 18px;
  height: 18px;
  fill: var(--cream);
  transition: all var(--transition-med);
}

.social-icon-link:hover {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 20px var(--green-glow);
  transform: translateY(-3px);
}

.social-icon-link:hover svg {
  fill: white;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.5));
}

/* Nav Sidebar Icons */
.sidebar-nav a .nav-icon-svg {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-nav a .nav-icon-svg svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: all var(--transition-fast);
  filter: drop-shadow(0 0 2px transparent);
}

.sidebar-nav a:hover .nav-icon-svg svg,
.sidebar-nav a.active .nav-icon-svg svg {
  filter: drop-shadow(0 0 8px rgba(107, 191, 62, 0.6));
}

/* Trust Badge Icons */
.trust-badge-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--green);
  filter: drop-shadow(0 0 6px rgba(107, 191, 62, 0.4));
  animation: iconGlow 3s ease-in-out infinite;
}

/* Value Card Icons */
.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(107, 191, 62, 0.1);
  border: 2px solid rgba(107, 191, 62, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  position: relative;
}

.value-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(107, 191, 62, 0.1);
  animation: iconPulseRing 3s ease-in-out infinite;
}

@keyframes iconPulseRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0; }
}

.value-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--green);
  filter: drop-shadow(0 0 10px rgba(107, 191, 62, 0.5));
  animation: iconGlow 2.5s ease-in-out infinite;
}

/* Hero Image */
.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 550px;
  z-index: 1;
  animation: floatUp 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 0 40px rgba(107, 191, 62, 0.3));
}

@media (max-width: 900px) {
  .hero-visual {
    display: none;
  }
}

/* Footer Social Row */
.footer-social-row {
  display: flex;
  gap: var(--space-sm);
}

/* Floating Chat SVG */
.chat-float-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.3));
}

/* Cart Nav Icon */
.cart-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* About Stats Counter */
.stat-counter {
  text-align: center;
}

.stat-counter-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: rgba(107, 191, 62, 0.1);
  border: 1px solid rgba(107, 191, 62, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-counter-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--green);
  filter: drop-shadow(0 0 8px rgba(107, 191, 62, 0.5));
  animation: iconGlow 3s ease-in-out infinite;
}

/* Timeline Icon */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  background: var(--green);
  box-shadow: 0 0 14px rgba(107, 191, 62, 0.6);
  animation: iconGlow 2.5s ease-in-out infinite;
}
