html,
body {
    overflow-x: hidden;
}

/* ===== TECH SPECS ===== */
.product-specs {
    padding: 28px 0;
}

.specWrap {
    position: relative;
}

/* Kutu: scroll bar kesinlikle çıkmasın */
.product-specs__box {
    background: #071f33;
    border-radius: 18px;
    padding: 38px 42px;
    min-height: 260px;

    overflow: hidden !important;
    /* ✅ scroll biter */
    position: relative;
}

/* Sol alan: sağdaki kamyon için boşluk bırak */
.product-specs__left {
    width: 100%;
    padding-right: 300px;
}

/* Başlık + oklar */
.product-specs__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.product-specs__title {
    margin: 0;
    color: #fff;
    font-weight: 800;
    font-size: 34px;
    line-height: 1.15;
}

.specNav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.specBtn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    color: #fff;
    opacity: .95;
    padding: 0;
    cursor: pointer;
}

.specBtn:hover {
    opacity: 1;
}

.specBtn:focus {
    outline: none;
}

/* Swiper */
.specSwiper {
    width: 100%;
    overflow: hidden;
    padding: 6px 0 2px;
}

/* Tema slide width:100% kuralını ez */
.specSwiper .swiper-slide {
    width: auto !important;
    flex: 0 0 auto !important;
    display: flex;
}

/* Kartlar: aynı genişlik + aynı yükseklik */
.specCard {
    width: 190px;
    height: 115px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    padding: 14px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.specCard__label {
    color: rgba(255, 255, 255, .75);
    font-size: 11px;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.specCard__value {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ✅ Kamyon kutunun DIŞINDA, bu yüzden taşar ama scroll üretmez */
.specCover {
    position: absolute;
    right: 10px;
    top: -105px;
    /* üstten taşma */
    width: 300px;
    height: auto;
    pointer-events: none;
    z-index: 2;
}

.specCover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, .35));
}

/* Responsive */
@media (max-width: 991px) {

    .product-specs__box {
        padding: 24px 18px 26px;
        min-height: auto;
        overflow: hidden;
    }

    .product-specs__left {
        width: 100%;
        padding-right: 0 !important;
    }

    /* ✅ Kamyon mavi kutunun İÇİNDE ve ÜSTTE */
    .specCover {
        position: absolute;
        /* tekrar absolute */
        left: 50%;
        transform: translateX(-50%);
        top: -75px;
        /* mavi alanın üstünde taşma */
        width: 240px;
        height: 260px;
        z-index: 1;
    }

    .specCover img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Başlık kamyonun altında dursun */
    .product-specs__head {
        margin-top: 170px;
        /* kamyon yüksekliği kadar boşluk */
        position: relative;
        z-index: 2;
    }

    .product-specs__title {
        font-size: 28px;
    }

    .specCard {
        width: 180px;
    }
}

.product-gallery {
    padding: 10px 0 20px;
}

.product-gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.product-gallery__item {
    grid-column: span 4;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #f6f6f6;
}

.product-gallery__item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}


@media (max-width: 576px) {
    .product-gallery__item {
        grid-column: span 12;
    }

    .product-gallery__item img {
        height: 200px;
    }
}
