/* Custom scrollbar to match the premium botanical theme */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
  border: 2px solid #ffffff;
}

::-webkit-scrollbar-thumb:hover {
  background: #059669; /* Botanical/Emerald theme color */
}

/* Premium micro-animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Custom shadow glow transitions */
.shadow-premium {
  box-shadow: 0 20px 40px -15px rgba(35, 44, 31, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.shadow-premium:hover {
  box-shadow: 0 30px 60px -20px rgba(35, 44, 31, 0.15);
  transform: translateY(-2px);
}
