/* Anasayfa carousel için - .product-image class'ı */
.product-card .product-image,
.products-carousel .product-image {
    position: relative !important;
    width: 100% !important;
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}

.product-card .product-image img,
.products-carousel .product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
}

/* Kategori sayfası için - .product-image-custom - ÇOK GÜÇLÜ SELECTOR */
.archive .product-card-custom .product-image-custom,
.product-card-custom .product-image-custom {
    position: relative !important;
    width: 100% !important;
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    padding-top: 0 !important;
}

.archive .product-card-custom .product-image-custom img,
.product-card-custom .product-image-custom img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
}

/* Mobil responsive - görsel yüksekliğini ayarla ki bilgiler ve buton görünsün */
@media (max-width: 768px) {

    .product-card .product-image,
    .products-carousel .product-image {
        height: 260px !important;
        min-height: 260px !important;
        max-height: 260px !important;
    }

    .archive .product-card-custom .product-image-custom,
    .product-card-custom .product-image-custom {
        height: 260px !important;
        min-height: 260px !important;
        max-height: 260px !important;
    }

    /* Kategori header banner'ı küçült */
    .category-header-banner {
        height: 150px !important;
        min-height: 150px !important;
    }

    .category-title {
        font-size: 24px !important;
    }

    /* Ürün bilgileri görünsün */
    .product-card .product-info,
    .products-carousel .product-info,
    .product-info {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        transform: none !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .product-card .product-price,
    .product-price {
        display: block !important;
        visibility: visible !important;
    }

    .product-card .product-title,
    .product-title {
        display: block !important;
        visibility: visible !important;
    }

    .product-card .mobile-add-to-cart,
    .mobile-add-to-cart {
        display: flex !important;
        visibility: visible !important;
    }
}