.options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-logo {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 10px;
    background: var(--logo-bg);
    padding: 6px;
    border: 1px solid var(--border-subtle);
}

.option-body {
    flex: 1;
    min-width: 0;
}

.option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--navy-light);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.option::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background 0.2s;
}

.option--active:hover {
    border-color: var(--orange);
    background: var(--navy-muted);
    transform: translateX(-4px);
}

[data-theme="light"] .option--active {
    box-shadow: 0 4px 16px rgba(6, 41, 76, 0.08);
}

[data-theme="light"] .option--active:hover {
    box-shadow: 0 6px 20px rgba(242, 88, 34, 0.12);
}

.option--active:hover::before {
    background: var(--orange);
}

.option--active:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.option--disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    border-color: var(--border-subtle);
}

.option-label {
    font-size: 1.05rem;
    font-weight: 700;
}

.option-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.option-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: border-color 0.2s, background 0.2s;
}

.option--active:hover .option-arrow {
    border-color: var(--orange);
    background: color-mix(in srgb, var(--orange) 15%, transparent);
    color: var(--orange);
}

.badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--orange);
    border: 1px solid var(--orange);
    padding: 0.15rem 0.55rem;
    border-radius: 4px;
    margin-top: 0.35rem;
}
