.booking-channel {
    grid-column: 1 / -1;
    min-inline-size: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.booking-channel-legend {
    width: 100%;
    margin: 0 0 8px;
    padding: 0;
    color: #26384c;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.35;
}

.booking-channel-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.booking-channel-option {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 12px;
    overflow: hidden;
    border: 1px solid #cad6de;
    border-radius: var(--radius, 12px);
    background: #fff;
    color: #425166;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.booking-channel-option:hover {
    border-color: #7caecb;
    background: #f7fbfd;
}

.booking-channel-input {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    min-height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0;
    pointer-events: none;
}

.booking-channel-dot {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    border: 2px solid #aebbc5;
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 0 0 0 3px #fff;
    transition: border-color 160ms ease, background 160ms ease;
}

.booking-channel-option:has(.booking-channel-input:checked) {
    border-color: #168bd2;
    background: #f2f9fd;
    color: #075c8f;
    box-shadow: 0 0 0 3px rgba(22, 139, 210, 0.11);
}

.booking-channel-input:checked + .booking-channel-dot {
    border-color: #168bd2;
    background: #168bd2;
}

.booking-channel-option:has(.booking-channel-input:focus-visible) {
    outline: 3px solid rgba(22, 139, 210, 0.28);
    outline-offset: 2px;
}

button.booking-channel-whatsapp-submit {
    border-color: #1db957 !important;
    background: #25d366 !important;
    color: #073f25 !important;
}

button.booking-channel-whatsapp-submit:hover {
    background: #1db957 !important;
}

@media (max-width: 430px) {
    .booking-channel-options {
        grid-template-columns: 1fr;
    }
}
