/* ===== InfinitRoot — sticky-bar.css (v5) ===== */

/* STICKY BAR — Desktop */
    .ir-sticky-bar {
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        height: 70px;
        background: #ffffff;
        border-bottom: 1px solid var(--border, #E2E5EC);
        z-index: 9999;
        transition: height 0.25s ease, box-shadow 0.25s ease;
    }
    .ir-sticky-bar--scrolled {
        height: 58px;
        box-shadow: 0 2px 20px rgba(0,0,0,0.10);
    }
    .ir-sticky-bar__inner {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* STICKY BAR — Mobile */
    @media (max-width: 768px) {
        .ir-sticky-bar { height: 60px; }
        .ir-sticky-bar--scrolled { height: 52px; }
        .ir-sticky-bar .ir-logo-text { font-size: 17px; }
        .ir-sticky-bar .ir-btn--sm { font-size: 13px; padding: 9px 16px; }
        .ir-sticky-bar .ir-btn--sm svg { display: none; }
    }
    @media (max-width: 400px) {
        .ir-sticky-bar .ir-logo-text { font-size: 15px; }
    }