/*
 * Studio Innate — Core  |  si-nav.css
 * Sidebar navigation styles.
 * All selectors are prefixed .si-nav to avoid conflicts with theme / Elementor.
 *
 * Key measurements (keep in sync with si-nav.js):
 *   Expanded width : 220px
 *   Collapsed width: 64px
 *   Icon centre    : padding(18) + iconWidth(18)/2 = 27px from sidebar left
 *   Text start     : 18 + 18 + gap(10) = 46px  ← sub-item branch line target
 */

/* ═══════════════════════════════════════════════════════════════════════
   THEME / ELEMENTOR HARD RESET
   Scoped tightly to .si-nav. Forces a clean base on every interactive
   element so theme, WooCommerce, and Elementor defaults cannot bleed in.
   Properties the theme definitely overrides use !important.
═══════════════════════════════════════════════════════════════════════ */
.si-nav,
.si-nav * {
    box-sizing: border-box;
}

/* Links */
.si-nav a,
.si-nav a:link,
.si-nav a:visited,
.si-nav a:hover,
.si-nav a:focus,
.si-nav a:active {
    background-color: transparent !important;
    background-image: none        !important;
    border:           none        !important;
    border-radius:    0           !important;
    box-shadow:       none        !important;
    text-decoration:  none        !important;
    outline:          none        !important;
    -webkit-appearance: none      !important;
    appearance:       none        !important;
}

/* Buttons — base reset. width is intentionally NOT set here because
   collapse/mobile-close buttons must stay at their fixed pixel sizes.
   Full-width is applied explicitly on .si-nav__item only. */
.si-nav button,
.si-nav button:hover,
.si-nav button:focus,
.si-nav button:active {
    -webkit-appearance: none      !important;
    appearance:         none      !important;
    background-color:   transparent !important;
    background-image:   none      !important;
    border:             none      !important;
    border-radius:      0         !important;
    box-shadow:         none      !important;
    cursor:             pointer   !important;
    font-family:        inherit   !important;
    font-size:          inherit   !important;
    font-weight:        inherit   !important;
    outline:            none      !important;
    text-align:         left      !important;
    text-decoration:    none      !important;
    text-transform:     none      !important;
    /* NO width here — each button component sets its own */
}

/* Inputs */
.si-nav input {
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}


/* ═══════════════════════════════════════════════════════════════════════
   BODY LAYOUT PUSH
   Replaces the manual padding-left snippet. Responds dynamically to
   collapse state. Remove any existing padding-left CSS from your theme
   or Customiser once this plugin is active.
═══════════════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
    body.si-nav-active {
        padding-left: 220px !important;
        transition: padding-left 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body.si-nav-active.si-nav-collapsed {
        padding-left: 64px !important;
    }
}
@media (max-width: 767px) {
    body.si-nav-active {
        padding-left: 0 !important;
    }
}


/* ═══════════════════════════════════════════════════════════════════════
   SHELL
═══════════════════════════════════════════════════════════════════════ */
.si-nav {
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    background: #202127 !important;
    border-radius: 0 !important;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    border: none;
    border-right: 1px solid #2a2a2e;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13.5px;
    color: #ccc;
    transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                min-width 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                max-width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9990;
}


/* ═══════════════════════════════════════════════════════════════════════
   LOGO
═══════════════════════════════════════════════════════════════════════ */
.si-nav__logo {
    padding: 0 18px 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px; /* 18px pad + 22px btn + 6px gap = 46px — aligns logo with nav item text */
    flex-shrink: 0;
}
.si-nav__logo-img {
    height: 26px;
    width: auto;
    display: block !important;
    flex-shrink: 1;
    opacity: 1 !important;
    visibility: visible !important;
}
/* Text fallback shown if SVG fails to load */
.si-nav__logo-text {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.2px;
    white-space: nowrap;
    flex-shrink: 0;
    display: none; /* shown via onerror in PHP */
}
.si-nav__logo-text sup {
    font-size: 7px;
    color: #888;
    vertical-align: super;
}
/* Logo link wrapper */
.si-nav__logo-link {
    display: flex !important;
    align-items: center !important;
    flex: 1;
    min-width: 0;
    overflow: hidden; /* prevents img from breaking out of sidebar */
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    text-decoration: none !important;
}
.si-nav__logo-link img,
.si-nav__logo-link .si-nav__logo-img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-width: 100%; /* constrain to available flex space, never overflow */
    flex-shrink: 1;
}

/* Collapsed: hide full logo, show short text */
.si-nav__logo-short {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.si-nav__logo-short sup {
    font-size: 8px;
    color: #888;
    vertical-align: super;
}


/* ═══════════════════════════════════════════════════════════════════════
   COLLAPSE TOGGLE BUTTON
═══════════════════════════════════════════════════════════════════════ */
.si-nav__collapse-btn {
    background: transparent !important;
    border: none !important;
    border-radius: 3px !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    flex-shrink: 0;
    transition: color 0.15s, background 0.15s;
    color: #555 !important;
    padding: 0 !important;
    text-align: center !important;
    order: -1; /* always renders before the logo link */
}
.si-nav__collapse-btn:hover {
    background: rgba(255,255,255,0.06) !important;
    color: #999 !important;
}
.si-nav__collapse-btn svg {
    transition: transform 0.25s;
    display: block;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

/* Mobile close (×) button — same visual style as collapse btn */
.si-nav__mobile-close {
    display: none; /* shown via media query */
    background: transparent !important;
    border: none !important;
    border-radius: 3px !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    flex-shrink: 0;
    color: #555 !important;
    padding: 0 !important;
    transition: color 0.15s, background 0.15s;
    order: -1;
}
.si-nav__mobile-close:hover {
    background: rgba(255,255,255,0.06) !important;
    color: #999 !important;
}


/* ═══════════════════════════════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════════════════════════════ */
.si-nav__section-header {
    padding: 0 18px 6px;
    font-size: 10px;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    white-space: nowrap;
    overflow: hidden;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.si-nav__dash {
    color: #2a2a2a;
    font-size: 14px;
    font-weight: 300;
}


/* ═══════════════════════════════════════════════════════════════════════
   NAV ITEMS — shared base
   Applies to both <a> and <button> .si-nav__item elements.
═══════════════════════════════════════════════════════════════════════ */
.si-nav__item {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    padding: 8px 18px !important;
    width: 100% !important; /* full-width for nav items only, not utility buttons */
    color: #ccc !important;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    position: relative;
    user-select: none;
    white-space: nowrap;
    font-size: 13.5px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    line-height: 1.4;
}
.si-nav__item:hover {
    background: #1a1a1a !important;
    color: #fff !important;
}


/* ═══════════════════════════════════════════════════════════════════════
   ICON
═══════════════════════════════════════════════════════════════════════ */
.si-nav__icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.65;
    transition: opacity 0.15s;
}
.si-nav__item:hover .si-nav__icon {
    opacity: 1;
}
.si-nav__icon svg {
    display: block;
}


/* ═══════════════════════════════════════════════════════════════════════
   TEXT LABEL
═══════════════════════════════════════════════════════════════════════ */
.si-nav__text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: opacity 0.2s;
}


/* ═══════════════════════════════════════════════════════════════════════
   CHEVRON
═══════════════════════════════════════════════════════════════════════ */
.si-nav__chevron {
    flex-shrink: 0;
    width: 13px;
    height: 13px;
    color: #383838;
    transition: transform 0.2s, color 0.2s;
    display: block;
}
.si-nav__item:hover .si-nav__chevron {
    color: #555;
}
.si-nav__item--toggle.si-nav__item--open .si-nav__chevron {
    transform: rotate(90deg);
    color: #555;
}


/* ═══════════════════════════════════════════════════════════════════════
   DIRECT-LINK ARROW  (member state)
═══════════════════════════════════════════════════════════════════════ */
.si-nav__arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    line-height: 0;
    color: #444;
    transition: color 0.15s;
}
.si-nav__item:hover .si-nav__arrow {
    color: #888;
}


/* ═══════════════════════════════════════════════════════════════════════
   FEATURED ITEM  (Bundle)
═══════════════════════════════════════════════════════════════════════ */
.si-nav__item--featured::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: #0f2bed;
    border-radius: 0 2px 2px 0;
}


/* ═══════════════════════════════════════════════════════════════════════
   LOGIN ITEM
═══════════════════════════════════════════════════════════════════════ */
.si-nav__item--login {
    border-top: 1px solid #1a1a1a;
    padding-top: 12px !important;
    margin-top: 4px;
    color: #666 !important;
}
.si-nav__item--login:hover {
    color: #bbb !important;
    background: transparent !important;
}


/* ═══════════════════════════════════════════════════════════════════════
   BADGES
═══════════════════════════════════════════════════════════════════════ */
.si-nav__badge {
    flex-shrink: 0;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    letter-spacing: 0.4px;
    line-height: 1.4;
    display: inline-block;
}
.si-nav__badge--new {
    background: #0f2bed !important;
    color: #fff !important;
}
.si-nav__badge--featured {
    background: rgba(15,43,237,0.15) !important;
    border: 1px solid rgba(15,43,237,0.3) !important;
    color: #edeefb !important;
}
.si-nav__badge--count {
    background: rgba(15,43,237,0.15) !important;
    border: 1px solid rgba(15,43,237,0.3) !important;
    color: #edeefb !important;
}
.si-nav__badge--try {
    background: transparent !important;
    border: 1px solid #333 !important;
    color: #666 !important;
    font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════════════════
   DIVIDER  /  SPACER
═══════════════════════════════════════════════════════════════════════ */
.si-nav__divider {
    height: 1px;
    background: #1a1a1a;
    margin: 10px 0;
    flex-shrink: 0;
}
.si-nav__spacer {
    flex: 1;
}


/* ═══════════════════════════════════════════════════════════════════════
   SUB-ITEMS  — branch line design
   Vertical trunk at x=27px (icon centre). Horizontal branch 27→46px.
   Text aligns to 46px (same as parent label start).
═══════════════════════════════════════════════════════════════════════ */
.si-nav__sub {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.28s ease;
}
.si-nav__sub--open {
    max-height: 300px;
}

.si-nav__sub-item {
    position: relative;
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 6px 18px 6px 46px !important;
    font-size: 12.5px !important;
    color: #777 !important;
    transition: color 0.15s;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}
.si-nav__sub-item:hover {
    color: #bbb !important;
    background: transparent !important;
}

/* Vertical trunk */
.si-nav__sub-item::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #333;
    transition: background 0.15s;
}
.si-nav__sub-item:last-child::before {
    bottom: 50%;
}

/* Horizontal branch */
.si-nav__sub-item::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 50%;
    width: 12px;
    height: 1px;
    background: #333;
    transform: translateY(-50%);
    transition: background 0.15s;
}
.si-nav__sub-item:hover::before,
.si-nav__sub-item:hover::after {
    background: #444;
}

/* Toggle items: position:relative needed for sub-item branch positioning */
.si-nav__item--toggle {
    position: relative;
}
/* No persistent trunk line — lines only appear inside open sub-menus */

/* Entry-point sub-item (Template Library / Full Catalogue)
   Uses same colour family as regular text — no blue tint */
.si-nav__sub-item--entry {
    color: #bbb !important;
}
.si-nav__sub-item--entry::before {
    background: #333;
}
.si-nav__sub-item--entry::after {
    background: #333;
}
.si-nav__sub-item--entry:hover {
    color: #fff !important;
}
.si-nav__sub-item--entry:hover::before {
    background: #444;
}
.si-nav__sub-item--entry:hover::after {
    background: #444;
}


/* ═══════════════════════════════════════════════════════════════════════
   SEARCH
═══════════════════════════════════════════════════════════════════════ */
.si-nav__search {
    position: relative;
    padding: 6px 10px 8px;
    flex-shrink: 0;
    z-index: 1;
}
.si-nav__search-input {
    width: 100%;
    background: #161618 !important;
    border: 1px solid #2a2a2e !important;
    border-radius: 6px !important;
    padding: 7px 38px 7px 10px !important;
    font-size: 12.5px !important;
    color: #ccc !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.15s;
    font-family: inherit;
    position: relative;
    z-index: 2;
    pointer-events: auto !important;
    cursor: text !important;
    display: block !important;
}
.si-nav__search-input::placeholder {
    color: #555;
}
.si-nav__search-input:focus {
    border-color: #333 !important;
}
.si-nav__search-btn {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    width: 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #666 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    transition: color 0.15s;
    z-index: 3;
    pointer-events: none; /* let clicks pass through to input below */
}
.si-nav__search-btn:hover {
    color: #999 !important;
}
.si-nav__search-icon-only {
    display: none;
    width: 36px;
    height: 36px;
    margin: 4px auto 8px;
    background: #161618 !important;
    border: 1px solid #2a2a2e !important;
    border-radius: 6px !important;
    align-items: center;
    justify-content: center;
    color: #555 !important;
    cursor: pointer;
    padding: 0 !important;
    transition: background 0.15s, color 0.15s;
}
.si-nav__search-icon-only:hover {
    background: #1e1e1e !important;
    color: #999 !important;
}


/* ═══════════════════════════════════════════════════════════════════════
   PRICING CTA
═══════════════════════════════════════════════════════════════════════ */
/* Higher specificity than the .si-nav a reset to ensure bg + radius apply */
.si-nav .si-nav__pricing-cta,
.si-nav .si-nav__pricing-cta:link,
.si-nav .si-nav__pricing-cta:visited,
.si-nav .si-nav__pricing-cta:hover,
.si-nav .si-nav__pricing-cta:focus,
.si-nav .si-nav__pricing-cta:active {
    background-color: #0f2bed !important;
    background:       #0f2bed !important;
    color:            #fff    !important;
    border-radius:    6px     !important;
}

.si-nav__pricing-cta {
    margin: 2px 10px 8px;
    background: #0f2bed !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 600;
    padding: 10px 14px !important;
    border-radius: 6px !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s, transform 0.15s;
    letter-spacing: -0.1px;
    flex-shrink: 0;
    white-space: nowrap;
    border: none !important;
    box-shadow: none !important;
}
.si-nav__pricing-cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}
.si-nav__cta-label {
    flex: 1;
}
.si-nav__cta-arrow {
    opacity: 0.65;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════════
   COLLAPSED STATE  (100px icon-only bar)
═══════════════════════════════════════════════════════════════════════ */
.si-nav--collapsed {
    width: 64px  !important;
    min-width: 64px !important;
    max-width: 64px !important;
}

/* Collapsed: hide the main logo, show condensed if present */
.si-nav--collapsed .si-nav__logo-link--main {
    display: none !important;
}
.si-nav--collapsed .si-nav__logo-link--condensed {
    display: flex !important;
}
/* If no condensed logo, centre the chevron */
.si-nav--collapsed .si-nav__logo {
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
/* Expanded: always hide the condensed logo.
   Needs !important to beat .si-nav__logo-link { display: flex !important } */
.si-nav__logo-link--condensed {
    display: none !important;
}

/* Flip collapse button arrow */
.si-nav--collapsed .si-nav__collapse-btn svg {
    transform: rotate(180deg);
}

/* Collapsed: remove all non-icon elements from flex flow entirely */
.si-nav--collapsed .si-nav__section-header {
    opacity: 0;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.si-nav--collapsed .si-nav__text,
.si-nav--collapsed .si-nav__chevron,
.si-nav--collapsed .si-nav__arrow,
.si-nav--collapsed .si-nav__badge {
    display: none !important; /* fully removes from flex flow — no ghost space */
}

/* Icons: identical padding to expanded state (18px left), so they land in
   exactly the same horizontal position. The 64px width is narrow but the
   icon at 18px + 18px = 36px still leaves the bar feeling balanced. */
.si-nav--collapsed .si-nav__item {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 8px 18px !important;
    width: 64px !important;
    box-sizing: border-box !important;
}
.si-nav--collapsed .si-nav__icon {
    flex-shrink: 0 !important;
    margin: 0 !important;
    position: static !important;
    opacity: 1 !important;
}
.si-nav--collapsed .si-nav__item--featured::before {
    display: none;
}
.si-nav--collapsed .si-nav__divider {
    margin: 6px 0;
}

/* Force sub-menus closed */
.si-nav--collapsed .si-nav__sub {
    max-height: 0 !important;
}

/* Search: icon-only button */
.si-nav--collapsed .si-nav__search {
    display: none;
}
.si-nav--collapsed .si-nav__search-icon-only {
    display: flex;
}

/* Pricing: icon only */
.si-nav--collapsed .si-nav__pricing-cta {
    justify-content: center;
    padding: 10px 0 !important;
    margin: 2px 8px 8px;
}
.si-nav--collapsed .si-nav__cta-label,
.si-nav--collapsed .si-nav__cta-arrow {
    display: none;
}

/* Tooltips in collapsed state */
.si-nav--collapsed .si-nav__item[data-label],
.si-nav--collapsed .si-nav__pricing-cta[data-label] {
    position: relative;
}
.si-nav--collapsed .si-nav__item[data-label]::after,
.si-nav--collapsed .si-nav__pricing-cta[data-label]::after {
    content: attr(data-label);
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    color: #ccc;
    font-size: 12px;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.si-nav--collapsed .si-nav__item[data-label]:hover::after,
.si-nav--collapsed .si-nav__pricing-cta[data-label]:hover::after {
    opacity: 1;
}
/* Don't show tooltip pseudo-element over branch lines inside sub-items */
.si-nav--collapsed .si-nav__sub-item::after {
    display: none;
}


/* ═══════════════════════════════════════════════════════════════════════
   MOBILE NAV  (≤ 767px)
   The sidebar becomes an off-screen overlay, sliding in from the left.
   Triggered by adding .si-nav--mobile-open to .si-nav via JS.
   A semi-transparent overlay sits behind the open nav.
═══════════════════════════════════════════════════════════════════════ */

/* Overlay */
.si-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9989;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.si-nav-overlay.si-nav-overlay--active {
    display: block;
    opacity: 1;
}

/* Mobile hamburger toggle button — output via [si_nav_toggle] shortcode */
.si-nav-toggle {
    display: none; /* hidden on desktop */
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 0 !important;
    color: #ccc;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}
.si-nav-toggle:hover {
    background: rgba(255,255,255,0.08) !important;
    color: #fff;
}
.si-nav-toggle svg {
    display: block;
}

@media (max-width: 767px) {

    /* Remove desktop body push */
    body.si-nav-active {
        padding-left: 0 !important;
    }

    /* Nav: hidden fully off-screen left by default (must match expanded width) */
    .si-nav {
        transform: translateX(-220px);
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                    width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: none;
    }

    /* Nav: slide in when open */
    .si-nav.si-nav--mobile-open {
        transform: translateX(0);
        box-shadow: 4px 0 24px rgba(0,0,0,0.5);
    }

    /* Never show the collapsed icon-only state on mobile — always full width */
    .si-nav.si-nav--collapsed {
        width: 220px !important;
        min-width: 220px !important;
        max-width: 220px !important;
        transform: translateX(-220px);
    }
    .si-nav.si-nav--collapsed.si-nav--mobile-open {
        transform: translateX(0);
    }

    /* Show hamburger toggle on mobile */
    .si-nav-toggle {
        display: flex;
    }

    /* Hide the desktop collapse button on mobile */
    .si-nav__collapse-btn {
        display: none !important;
    }

    /* Show a close (×) button inside nav header on mobile */
    .si-nav__mobile-close {
        display: flex !important;
    }
}

@media (min-width: 768px) {
    /* Ensure overlay never shows on desktop */
    .si-nav-overlay {
        display: none !important;
    }
    /* Hide mobile close button on desktop */
    .si-nav__mobile-close {
        display: none !important;
    }
}
