/* Custom styles for Gift Suggester app */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Instagram-inspired gradient */
.bg-instagram-gradient {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Custom animations */
@keyframes pulse-gentle {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-pulse-gentle {
  animation: pulse-gentle 2s infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #d6bcfa;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9f7aea;
}

/* Card hover effects */
.gift-card {
  transition: all 0.3s ease;
}

.gift-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Interest bubbles animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.interest-bubble {
  animation: float 6s ease-in-out infinite;
}

.interest-bubble:nth-child(2) {
  animation-delay: 1s;
}

.interest-bubble:nth-child(3) {
  animation-delay: 2s;
}

.interest-bubble:nth-child(4) {
  animation-delay: 3s;
}

.interest-bubble:nth-child(5) {
  animation-delay: 4s;
}

/* Emergency mode button pulse effect */
.emergency-btn {
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}