/* Exact match styling for Option 2 (Fresh Eco Packaging) */

html {
  scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
  background: #52B788;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #18523A;
}

/* Reel Card Interactive Lift */
.reel-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.reel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 25px -5px rgba(24, 82, 58, 0.25);
}

/* Modal Fade Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.2s ease-out forwards;
}
