﻿
/* Mobil cihazlar için genel ayarlar */
@media only screen and (max-width: 600px) {
    .container-fluid {
        padding: 0 15px;
    }

    .product-thumb img {
        width: 100%;
        height: auto;
    }

    .product-details h5 {
        font-size: 18px;
    }

    .icon-box {
        margin-bottom: 20px;
        padding: 10px;
    }

        .icon-box .icon {
            margin-bottom: 10px;
        }

        .icon-box .icon-box-title {
            font-size: 20px;
        }

    .owl-carousel .item {
        margin: 0 5px;
    }

    .rev_slider_wrapper {
        height: auto;
    }

    .rev_slider ul {
        padding: 0;
        margin: 0;
    }

    .gallery-item {
        width: 100%;
    }

    .gallery-isotope {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Tabletler için ayarlar */
@media only screen and (max-width: 768px) {
    .product-details h5 {
        font-size: 20px;
    }

    .gallery-isotope {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

.bg-img-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 768px) {
    .bg-img-cover {
        background-position: top center; /* Daha iyi uyum sağlamak için konumu değiştirdik */
        min-height: 300px; /* Minimum yüksekliği belirledik */
    }
}
