
.place-select-bl .bus-bl {
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0 0 28px;
    padding: 9px 9px 4px 87px;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    border: 2px solid rgb(0 0 0 / 18%);
    background-color: transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}


.place-select-bl .bus-bl:before {
    content: "";
    position: absolute;
    bottom: 37px;
    left: 27px;
    display: block;
    width: 42px;
    height: 42px;
    background: url(/assets/img/ico_bus_rule.svg) no-repeat 0 0;
}

.place-select-bl .bus-bl .line .box
{
    margin: 0 0 5px 5px;
}



.place-select-bl .bus-bl .line .box.empty {
    visibility: hidden;
    height: 30px;
}

.place-select-bl .bus-bl .line .box.sel {
    background: linear-gradient(133deg, #e2c24588 15%, #ffd900 85%);
    border: 1.3px solid #ffd900aa;
    border-radius: 6px;
    color: #121212;
}

.place-select-bl .bus-bl .line .box.no {
    background:#8d9295;
    color:#fff;
    border-radius:4px;
    cursor:default
}

* Линии сидений */
.bus-bl .line {
    display: grid;
    grid-template-columns: repeat(11, 44px);
    gap: 12px;
    margin-bottom: 14px;
    justify-content: center;
}

/* Базовая кнопка (место) */
.bus-bl .box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* Hover свободного места */
.bus-bl .box:not(.no):not(.empty):hover {
    background: #ffe27a;
    border-color: #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255,193,7,0.35);
}

/* Активное (выбранное) место */
.bus-bl .box.active {
    background: #ffc107;
    border-color: #ffb300;
    color: #000;
    box-shadow: 0 4px 12px rgba(255,193,7,0.4);
}

/* Занятое место */
.bus-bl .box.no {
    background: #f3f3f3;
    color: #b5b5b5;
    border-color: #e0e0e0;
    cursor: not-allowed;
}

/* Убираем hover у занятых */
.bus-bl .box.no:hover {
    transform: none;
    box-shadow: none;
    background: #f3f3f3;
}
