.luxury-products-section .carousel-cell img {
    filter: grayscale(20%);
    transition: 0.5s;
}
.luxury-products-section .carousel-cell:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}
/* Slider oklarını altın rengi yapalım */
.luxury-carousel .flickity-prev-next-button {
    background: rgba(255, 206, 0, 0.8);
}

.carousel-cell {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.carousel-cell:hover {
    transform: translateY(-10px); /* Ürün hafif yukarı yükselsin */
    border: 1px solid #ffce00;
}