/* Swaddhara Official Brand Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --brand-red: #B91C1C;
  --brand-crimson: #991B1B;
  --brand-dark: #7F1D1D;
  --brand-gold: #D97706;
  --brand-amber: #F59E0B;
  --brand-green: #15803D;
  --brand-brown: #78350F;
  --brand-cream: #FFFDF9;
  --brand-warm: #FDFBF7;
  --brand-surface: #F8F4EC;
}

/* Smooth Scrolling & Typography */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Hind Siliguri', sans-serif;
  background-color: var(--brand-warm);
  color: #292524;
}

.font-bengali {
  font-family: 'Hind Siliguri', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #FDFBF7;
}
::-webkit-scrollbar-thumb {
  background: #D97706;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #B91C1C;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.4);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 15px 5px rgba(217, 119, 6, 0.25);
  }
}

@keyframes floatSpice {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(1deg);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-float {
  animation: floatSpice 4s ease-in-out infinite;
}

.badge-pulse {
  animation: pulseGlow 2.5s infinite;
}

/* Product Card & Hover Effects */
.product-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -10px rgba(185, 28, 28, 0.15), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.hover-glow:hover {
  box-shadow: 0 10px 25px -5px rgba(185, 28, 28, 0.25);
}

/* Modal Lock */
body.modal-open {
  overflow: hidden;
}
