/* ===== Заголовок блока ===== */

.title-random { 
    font-size: 52px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}


/* ===== Контейнер транспорта ===== */

.pack-two,
.random-pack > .pack {
    background: #00000009;
    border-radius: 2vh;
    margin: 2vh;
    position: relative;
}

.pack-two {
    width: 100%;
    max-width: 800px;   /* регулируй ширину здесь */
    margin: 2vh auto;    /* центрирует карточку */
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    padding: 3vh;
    overflow: hidden;
}

/* ===== Картинка машины ===== */

.veh-container {
    position: relative;
}

.veh-container img {
    width: 45vh;
    max-width: 100%;
    user-select: none;
    pointer-events: none;
}


/* ===== Информация справа ===== */

.desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.name-car {
    color: #131313;
    font-size: 2.4vh;
    font-weight: 600;
    margin-top: 1.25vh;
    text-align: center;
    margin-bottom: 20px;
}

.price-car {
    font-size: 2vh;
    font-weight: 700;
    color: #fc9b08;
    margin-top: 1vh;
    text-align: center;
}


/* ===== Кнопка купить ===== */

.desc > .buy > a > button {
    align-items: center;
    background: linear-gradient(257.5deg,#f96918 -7.46%,#ffb800 74.36%);
    border: none;
    border-radius: 1vh;
    color: #fff;
    display: flex;
    flex-direction: row;
    font-weight: 700;
    justify-content: center;
    outline: 0;
    padding: 1vh 2vh;
    margin-top: 2vh;
    cursor: pointer;
    transition: box-shadow .45s ease, transform .25s ease;
}

.desc > .buy > a > button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 105, 24, 0.35);
}


/* ===== Адаптив ===== */

@media (max-width: 768px) {

    .pack-two {
        flex-direction: column;
        text-align: center;
        max-width: 350px;
    }

    .veh-container img {
        width: 100%;
    }

    .title-random {
        font-size: 34px;
    }

}

.buy-btn {
    width: 100%;
    align-items: center;
    justify-content: center;

    background: linear-gradient(257.5deg,#f96918 -7.46%,#ffb800 74.36%);
    border: none;
    border-radius: 12px;

    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;

    font-family: 'Montserrat', sans-serif;

    padding: 14px 20px;
    cursor: pointer;

    display: flex;

    transition: transform .2s ease, box-shadow .3s ease;
}

.buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249,105,24,0.35);
}

.shop-car_title {
    font-size: clamp(3.5rem, 9vw, 2rem);
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
    margin: 70px 0;
}

.shop-car_title span {
    font-weight: 300; /* или любое нужное значение */
}

@media (max-width: 768px) {
    .shop-car_title {
        font-size: clamp(1.5rem, 9vw, 2rem);
    }
}