/* styles.css */
.hero-slider {
    scroll-snap-type: x mandatory;
}

.hero-slide {
    scroll-snap-align: start;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

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

.merchant-card:hover {
    transform: scale(1.02);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.search-bar:focus-within {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.search-input {
    border-radius: 2px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-right: none;
    height: 48px;
}

/* Cacher la scrollbar horizontale pour tous les navigateurs */
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE et Edge */
    scrollbar-width: none;     /* Firefox */
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;             /* Chrome, Safari et Opera */
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d3d3d3;
    border: none;
    margin: 0 4px;
    transition: background 0.2s;
    cursor: pointer;
    outline: none;
}
.slider-dot.active {
    background: #888;
} 