/* Product detail side layout fix */
.product-hero-2 {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.product-hero-2 .product-left {
    float: none;
    width: auto;
    flex: 1 1 0;
    min-width: 0;
}

.product-hero-2 .product-right {
    float: none;
    width: 50%;
    max-width: 620px;
    flex: 0 0 50%;
    margin-left: 0;
}

/* Sadece detay sayfasındaki square slider daralmasını düzelt */
.product-hero-2 .slider-product.square .slick-list {
    width: calc(100% - 72px);
}

/* Thumbnail kolonu sağda düzgün dursun */
.product-hero-2 .slider-product.square ul.slick-dots {
    width: 60px;
    right: 0;
}

/* Görsel alanı taşmasın */
.product-hero-2 .slider-product.square {
    width: 100%;
}

@media only screen and (max-width:1023px) {
    .product-hero-2 {
        display: block !important;
        gap: 0 !important;
    }

    .product-hero-2 .product-left,
    .product-hero-2 .product-right {
        float: left !important;
        width: 100% !important;
        max-width: none !important;
        flex: none !important;
        margin-left: 0 !important;
    }

    .product-hero-2 .slider-product.square {
        width: 100% !important;
        margin-bottom: 20px !important;
    }
}

@media only screen and (max-width:767px) {
    .product-hero-2 .slider-product.square .slick-list {
        width: 100% !important;
    }

    .product-hero-2 .slider-product.square ul.slick-dots {
        position: relative !important;
        width: 100% !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-top: 12px !important;
        display: flex !important;
        flex-flow: row wrap !important;
        gap: 8px !important;
    }

    .product-hero-2 .slider-product.square ul.slick-dots li {
        width: 40px !important;
        margin-bottom: 0 !important;
    }
}