/* Custom Luxury Styling for New Saeed Watch */

@keyframes pulse-subtle {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

.animate-pulse-subtle {
    animation: pulse-subtle 4s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0B0F19;
}
::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

/* Smooth Image Glow on Hover */
.watch-card-img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.watch-card:hover .watch-card-img {
    transform: scale(1.06) translateY(-4px);
    filter: drop-shadow(0 15px 20px rgba(212, 175, 55, 0.25));
}

/* Metallic Text Shimmer */
.shimmer-text {
    background: linear-gradient(90deg, #D4AF37 0%, #FFF8DC 50%, #B8860B 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
