:root{
    --br-blue:#2a418d;
    --br-dark:#1b1b1b;
    --br-white:#fff;
    --br-grey:#e2e2e2;
    --br-accent:#ff5a2a;
    --br-speed:.25s ease;
}

#br-mobile-menu *{ box-sizing:border-box; }

#br-mobile-menu.br-mobile{
    position:fixed; inset:0;
    background:var(--br-white);
    z-index:99999;
    transform:translateY(-100%);
    opacity:0;
    pointer-events:none;
    transition:transform var(--br-speed), opacity var(--br-speed);
    overflow:auto;
}

#br-mobile-menu.br-mobile.open{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
}

#br-mobile-menu .br-mobile__inner{
    padding:20px;
    min-height:100%;
    display:flex;
    flex-direction:column;
}

#br-mobile-menu .br-mobile__top{
    display:flex;
    justify-content: flex-end;
    align-items:center;
    padding-bottom:12px;
}

#br-mobile-menu .br-mobile__phone{
    color:var(--br-blue);
    font-weight:600;
    text-decoration:none;
    font-size:18px;
}

#br-mobile-menu .br-mobile__close{
    width:32px; height:32px;
    border:0; background:none;
    position:relative;
    cursor:pointer;
}

#br-mobile-menu .br-mobile__close span{
    position:absolute;
    top:15px; left:6px;
    width:20px; height:2px;
    background:var(--br-blue);
}
#br-mobile-menu .br-mobile__close span:first-child{ transform:rotate(45deg); }
#br-mobile-menu .br-mobile__close span:last-child{ transform:rotate(-45deg); }

#br-mobile-menu .br-mobile__search{
    padding:10px 0 18px;
    border-bottom:1px solid #ddd;
    margin-bottom:6px;
}

#br-mobile-menu .br-mobile__panels{ flex:1; }

#br-mobile-menu .br-mobile__panel[hidden]{ display:none !important; }

#br-mobile-menu .br-mobile__panel-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 0;
    border-bottom:1px solid #ddd;
    margin-bottom:6px;
}

#br-mobile-menu .br-mobile__back{
    border:0; background:none;
    padding:8px 0;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    color:var(--br-dark);
}

#br-mobile-menu .br-mobile__back::before{
    content:"‹";
    font-size:26px;
    line-height:1;
    margin-right:8px;
    position:relative;
    top:1px;
    color:var(--br-blue);
}

#br-mobile-menu .br-mobile__panel-title{
    font-size:16px;
    font-weight:600;
    color:var(--br-dark);
}
#br-mobile-menu .br-mobile__panel-spacer{ width:48px; }

#br-mobile-menu .br-mobile__list{
    list-style:none;
    padding:0;
    margin:0;
}

#br-mobile-menu .br-mobile__list > li{
    border-bottom:1px solid #ddd;
}

#br-mobile-menu .br-mobile__row{
    width:100%;
    border:0;
    background:none;
    padding:18px 4px;
    text-align:left;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:18px;
    font-weight:400;
    color: #000;
}

#br-mobile-menu .br-mobile__row a{
    text-decoration:none;
    font-size:18px;
    font-weight:400;
    color: #000;
}

#br-mobile-menu .br-mobile__chev{
    font-size:26px;
    line-height:1;
    color:var(--br-blue);
}

#br-mobile-menu .br-mobile__link{
    display:block;
    padding:18px 4px;
    color: #000;
    text-decoration:none;
    font-size:18px;
}

#br-mobile-menu .br-mobile__link--overview{
    font-weight:600;
}

#br-mobile-menu .br-mobile__section{
    padding:12px 4px 8px;
    font-weight:600;
    color:#666;
    border-bottom:0;
}

.br-mobile.open .br-mobile__top a.br-mobile__phone, .br-mobile.open .br-mobile__search {
    display: none !important;
}

/* Mobile menu search (matches your screenshot layout) */
.br-mobile-search {
    position: relative;
    padding: 18px 18px 14px;
    border-bottom: 1px solid #e6e6e6;
}

.br-mobile-search__form {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
}

.br-mobile-search__input {
    flex: 1 1 auto;
    width: 100%;
    height: 45px;
    padding: 0 62px 0 18px;
    border: 1px solid #d8d8d8;
    border-right: 0;
    border-radius: 0;
    font-size: 16px;
    line-height: 1;
    color: #333;
    background: var(--br-white);
    outline: none;
}

.br-mobile-search__input::placeholder {
    color: #333;
    font-size: 16px;
}

.br-mobile-search__input:focus {
    border-color: #d8d8d8;
}

.br-mobile-search__button {
    flex: 0 0 52px;
    width: 52px;
    height: 45px;
    border: 1px solid var(--br-orange);
    background: var(--br-orange);
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.br-mobile-search__button:hover {
    border: 1px solid var(--br-green);
    background: var(--br-green);
    cursor: pointer;
}

.br-mobile-search__icon {
    position: relative;
    width: 15px;
    height: 15px;
    border: 2px solid var(--br-white);
    border-radius: 50%;
    display: inline-block;
    margin-top: -4px;
    opacity: 0.5;
}

.br-mobile-search__icon::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background: var(--br-white);
    right: -7px;
    bottom: -3px;
    transform: rotate(45deg);
    border-radius: 2px;
}