/* 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; 
}

/* Carousel Kontrol Okları */
.carousel-control-prev, 
.carousel-control-next { 
    width: 5%; 
    opacity: 1; 
}

.carousel-control-prev-icon, 
.carousel-control-next-icon { 
    background-color: #000; 
    padding: 15px; 
    border-radius: 50%; 
}