/* ── Global theme transition ──────────────────────────────────── */
[data-theme] *,
[data-theme] *::before,
[data-theme] *::after {
    transition:
        background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color     0.4s cubic-bezier(0.22, 1, 0.36, 1),
        color            0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow       0.4s cubic-bezier(0.22, 1, 0.36, 1),
        background       0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Opt-out for animations and transforms that shouldn't slow down */
[data-theme] .inav__btn--cta,
[data-theme] .inav__mobile-btn--cta {
    transition:
        background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color     0.4s cubic-bezier(0.22, 1, 0.36, 1),
        color            0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow       0.3s cubic-bezier(0.22, 1, 0.36, 1),
        transform        0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
