body { font-family: 'Segoe UI', Arial, sans-serif; }
.carousel-inner img { height: 200px; object-fit: cover; }
@media (max-width: 576px) {
    .carousel-inner img { height: 120px; }
}

/* Ürün Kartları Stilleri */
.card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
    height: 100%;
}

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

/* Genel kart görseli stili */
.card-img-top {
    width: 100%;
    height: 500px;
    object-fit: cover;
    max-height: 500px;
}

/* Öne çıkan ürünler için özel yükseklik */
#featured .card-img-top {
    height: 400px;
    max-height: 400px;
}

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 1rem;
    margin-bottom: 8px;
}

.card-text {
    color: #333;
    font-weight: bold;
}

/* Slider Stilleri */
.product-slider {
    padding: 20px 0;
}

@media (min-width: 769px) {
    .product-slider {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .swiper-slide {
        width: 100% !important;
    }
}

/* Mobil Slider Stilleri */
@media (max-width: 768px) {
    .product-slider {
        padding: 20px;
        overflow: hidden;
    }
    
    .card-img-top {
        width: 100%;
        height: 500px;
        max-height: 500px;
    }

    #featured .card-img-top {
        height: 400px;
        max-height: 400px;
    }
    
    .card {
        margin: 0;
    }
    
    .swiper-pagination {
        position: relative;
        margin-top: 20px;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #000;
        opacity: 0.2;
    }
    
    .swiper-pagination-bullet-active {
        opacity: 1;
    }
}
