/* ── Search Mode Button Bar ─────────────────────────────────── */
.cfesa-sm-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    padding: 6px;
    background: #f1f3f5;
    border-radius: 14px;
    width: fit-content;
}

.cfesa-sm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

.cfesa-sm-btn:hover {
    background: #e2e6ea;
    color: #222;
}

.cfesa-sm-btn--active {
    background: #ffffff;
    color: #1a1a2e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    font-weight: 600;
}

.cfesa-sm-btn__icon {
    font-size: 16px;
    line-height: 1;
}

.cfesa-sm-btn__label {
    letter-spacing: 0.01em;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 480px) {
    .cfesa-sm-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cfesa-sm-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 13px;
    }
}