/* Hide alternate logo variants by default */
.okthemes-site-logo .okt-logo-mobile,
.okthemes-site-logo .okt-logo-sticky {
    display: none;
}

/* Mobile logo: swap at mobile breakpoint */
@media (max-width: 767px) {
    .okthemes-site-logo.has-mobile-logo .okt-logo-default {
        display: none;
    }
    .okthemes-site-logo.has-mobile-logo .okt-logo-mobile {
        display: inline-block;
    }
}

/* Sticky logo: swap when Elementor marks the section as sticky-active */
.elementor-sticky--active .okthemes-site-logo.has-sticky-logo .okt-logo-default,
.elementor-sticky--active .okthemes-site-logo.has-sticky-logo .okt-logo-mobile {
    display: none;
}
.elementor-sticky--active .okthemes-site-logo.has-sticky-logo .okt-logo-sticky {
    display: inline-block;
}
