/* Custom CSS for Limton Watches */

/* Gold glow background effect */
.gold-glow {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

/* Category Button Styling */
.category-btn.active {
  background-color: #d4af37 !important;
  color: #09090b !important;
  font-weight: 700 !important;
  border-color: #d4af37 !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

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

::-webkit-scrollbar-track {
  background: #09090b;
}

::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d4af37;
}

/* Hide scrollbar utility */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}
.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Smooth Image Transitions */
img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Card hover animation */
.watch-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.watch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -10px rgba(212, 175, 55, 0.2);
}
