.bens-bus-booking {
    max-width: 320px;
    background: linear-gradient(180deg, #00b1e8 0%, #0084c5 100%);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
    color: #fff;
    overflow: hidden;
    font-family: inherit;
}

.bens-bus-booking__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px;
    background: rgba(0, 0, 0, 0.08);
    font-size: 13px;
}

.bens-bus-booking__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bens-bus-booking__label {
    font-weight: 600;
    font-size: 13px;
}

.bens-bus-booking__radio {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 13px;
}

.bens-bus-booking__radio input[type="radio"] {
    accent-color: #ffd400;
}

.bens-bus-booking__field--hidden {
    display: none;
}

.bens-bus-booking__field select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 13px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    appearance: none;
}

.bens-bus-booking__field select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.bens-bus-booking__actions {
    margin-top: 2px;
}

.bens-bus-booking__submit {
    width: 100%;
    padding: 10px 16px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffd400 0%, #ffae00 100%);
    color: #1c4b68;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(26, 70, 94, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bens-bus-booking__submit:hover,
.bens-bus-booking__submit:focus {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(26, 70, 94, 0.3);
}

.bens-bus-booking__submit:active {
    transform: translateY(0);
}

.bens-bus-booking__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.bens-bus-booking__submit--loading {
    position: relative;
    color: transparent !important;
}

.bens-bus-booking__loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(28, 75, 104, 0.2);
    border-top-color: #1c4b68;
    border-radius: 50%;
    animation: bens-bus-spin 0.8s linear infinite;
}

.bens-bus-booking__submit--loading .bens-bus-booking__loader {
    margin: 0 auto;
}

@keyframes bens-bus-spin {
    to {
        transform: rotate(360deg);
    }
}

.bens-bus-booking__notice {
    display: none;
    background: rgba(0, 0, 0, 0.18);
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 12px;
    color: #fff;
}

.bens-bus-booking__notice--visible {
    display: block;
}
