.recommendedWrap {
    height: 0;
    overflow: hidden;
}

.recommendedWrap.active {
    height: auto;
    overflow: visible;
}

.additional-price {
    display: inline-block;
    margin-left: 8px;
}


.product-gallery video {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 560px;
}


.video-thumb {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-thumb video {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
    pointer-events: none;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-play-icon svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@media (max-width: 415px) {
    .video-thumb video {
        max-height: 133px;
    }
}



/* блок "Нет в наличии" */

.warehouse-info{
    display: flex;
    gap: 20px;
}

.warehouse-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px !important;
}

.warehouse-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.warehouse-address{
    font-weight: 500
}

.btn_disabled {
    border: 1px solid #ccc !important;
    background-color: #ccc !important;
    color: white !important;
    cursor: not-allowed;
    pointer-events: none;
    padding: 14px 20px !important;
}

.btn_selected{
    border-radius: 10px;
    padding: 14px 44px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    color: black;
    transition: all 300ms ease;
    cursor: pointer;
}
@media (max-width: 768px) {

    .warehouse-item {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .warehouse-info {
        gap: 8px;
    }

    .warehouse-address {
        line-height: 1.4;
    }

    .warehouse-description {
        font-size: 14px;
        color: #666;
    }

    .warehouse-status {
        font-size: 16px;
    }

    .btn-select-warehouse {
        width: 100%;
        text-align: center;
        padding: 14px;
        border-radius: 10px;
    }

    .section-info__text-block {
        padding: 16px;
    }
}