/* Appu's Baby Mall - Custom Styles */

body {
  font-family: 'Poppins', sans-serif;
}

/* Brand Theme Colors */
.purple-text { color: #7A1FA2; }
.btn-primary {
  background-color: #7A1FA2;
  color: white;
  transition: background-color 0.3s;
}
.btn-primary:hover { background-color: #E91E63; }
.gradient-bg {
  background: linear-gradient(to bottom right, #FFE600, #FFF8DC);
}

/* Scroll Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional Sequential Delay (for multiple elements) */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }

@layer utilities {
  @keyframes pulse-glow {
    0% {
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
  }

  .animate-pulse-glow {
    animation: pulse-glow 2s infinite;
  }
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
