/* yeni_gelenler.css */

/* Kart ve Görsel Ayarları */
.product-card { 
    border: none; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    transition: transform 0.3s ease; 
}

.product-card:hover { 
    transform: translateY(-5px); 
}

.product-card img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background-color: #ffffff;
    padding: 10px;
}

@media (max-width: 576px) {
    .product-card img {
        height: 220px;
    }
}

/* Carousel Kontrol Okları */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 1;
}

@media (max-width: 576px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 44px;
        min-width: 44px;
    }
}

.carousel-control-prev-icon, 
.carousel-control-next-icon { 
    background-color: #000; 
    padding: 15px; 
    border-radius: 50%; 
}