﻿/* Segmented control */
.segmented {
    display: flex;
    gap: 8px;
    background: rgba(0,0,0,.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 12px;
}

.seg-btn {
    flex: 1;
    height: 40px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font-weight: 800;
    color: var(--muted);
}

    .seg-btn.active {
        background: #fff;
        border-color: var(--border);
        box-shadow: var(--shadow);
        color: var(--text);
    }

/* Radio options */
.option-title {
    font-weight: 800;
    color: var(--text);
    margin: 10px 0 8px;
}

.radio-list {
    display: grid;
    gap: 10px;
}

.radio-card {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
}

    .radio-card input {
        margin-top: 4px;
    }

.radio-name {
    font-weight: 800;
    color: var(--text);
}

.radio-meta {
    font-size: 12px;
}

.address-wrap {
    display: grid;
    gap: 10px;
    margin-bottom: 10px;
}

/* schedule clickable (opcional, para que se note) */
.schedule {
    cursor: pointer;
}

    .schedule:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(17,24,39,.08);
        border-radius: 12px;
    }
