/* Sticky header - match home page behavior exactly */
@supports(position:sticky){
    header.sticky{
        position:sticky!important;
        top:0!important;
        z-index:1070!important;
        border-bottom:1px solid #d4dde8!important;
    }
    .brochure-header{
        position:sticky!important;
        top:0!important;
        z-index:1070!important;
    }
    .sub-nav{
        position:sticky!important;
        top:0!important;
    }
    @media(min-width:992px){
        .sub-nav{
            top:84px!important;
        }
    }
}

/* Search icon - ensure Font Awesome font is applied */
.brochure-header__search:before{
    font-family:"Font Awesome 6 Free"!important;
    font-weight:900!important;
    align-items:center!important;
    bottom:0!important;
    color:gray!important;
    content:"\f002"!important;
    display:flex!important;
    left:0!important;
    padding:0 15px!important;
    position:absolute!important;
    top:0!important;
}

/* Dropdown icon - use border triangle approach */
@supports(position:sticky){
    @media(min-width:992px){
        .brochure-header .dropdown-toggle::after{
            display:inline-block!important;
            margin-left:10px!important;
            vertical-align:middle!important;
            border-top:0.3em solid #4d4d4d!important;
            border-right:0.3em solid transparent!important;
            border-left:0.3em solid transparent!important;
            border-bottom:0!important;
            content:""!important;
        }
    }
}

/* Down icon rotation when dropdown is open */
@supports(position:sticky){
    @media(min-width:992px){
        .brochure-header .dropdown.show .dropdown-toggle::after{
            transform:rotate(180deg)!important;
            transition:transform .2s ease-in-out!important;
        }
    }
}

/* Dropdown menu must appear above sticky sub-nav */
.dropdown-menu{
    z-index:1070!important;
}