/*Mobile menu */

.bzb-offcanvas {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transition: left 0.3s ease;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

/* ✅ Show offcanvas */
.bzb-offcanvas.active {
  left: 0;
}


/* ❌ Close button  */
.bzb-close {
  display: none;
  position: fixed;
  top: 16px;
  left: 310px;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ddd;
  font-size: 18px;
  font-weight: bold;
  color: #721717;
  cursor: pointer;
  z-index: 10001;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  align-items: center;
  justify-content: center;
  line-height: 1;      
  padding: 0;          
}

.bzb-close.active {
  display: flex;
}

.bzb-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
}

.bzb-overlay.active {
  display: block;
}


/* =========================================
   OFF CANVAS MENU - COMPLETE REPLACEMENT
========================================= */

/* Main menu wrapper */
.bzb-main-menu{
    padding:0;
}

/* Remove default list styles */
#offcanvas-menu ul{
    list-style:none;
    margin:0;
    padding:0;
}

/* Menu items */
#offcanvas-menu li{
    position:relative;
    margin:0;
    border-bottom:1px solid #ececec;
}

/* Main links */
#offcanvas-menu a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    padding:18px 22px;
    text-decoration:none;
    color:#2d2d2d;
    font-size:13px;
    font-weight:500;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:all .2s ease;
    box-sizing:border-box;
}

/* Hover */
#offcanvas-menu a:hover{
    background:#f8f8f8;
    color:#721717;
}

#offcanvas-menu .bzb-account-box a.bzb-account-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:auto;
    padding:6px 2px;
    gap:5px;
    color:#222;
    font-size:9px;
    line-height:1.1;
    font-weight:500;
    letter-spacing:.4px;
    text-transform:uppercase;
    box-sizing:border-box;
}

#offcanvas-menu .bzb-account-box a.bzb-account-item:hover{
    background:transparent;
    color:#721717;
    padding-left:2px;
}

#offcanvas-menu .bzb-account-box .bzb-account-icon{
    width:20px;
    height:20px;
    line-height:20px;
    font-size:16px;
    color:#721717;
}

/* Hide Astra default icons */
#offcanvas-menu .ast-icon.icon-arrow{
    display:none;
}

/* Parent items */
#offcanvas-menu .menu-item-has-children > a{
    padding-right:50px;
}

/* Right arrow */
#offcanvas-menu .menu-item-has-children{
    position:relative;
}

#offcanvas-menu .menu-item-has-children > a{
    position:relative;
}

#offcanvas-menu .menu-item-has-children > a::after{
    content:'+';
    position:absolute;
    right:22px;
    top:18px;
    font-size:18px;
    font-weight:300;
    line-height:1;
    color:#777;
    transition:all .2s ease;
}

/* Expanded state */
#offcanvas-menu .menu-item-has-children.active > a::after{
    content:'−';
}

/* Submenus */
#offcanvas-menu .sub-menu{
    display:none;
    background:#fafafa;
    border-top:1px solid #efefef;
}

/* Expanded submenu */
#offcanvas-menu .menu-item-has-children.active > .sub-menu{
    display:block;
}

/* Submenu items */
#offcanvas-menu .sub-menu li{
    border-bottom:1px solid #f2f2f2;
}

/* Submenu links */
#offcanvas-menu .sub-menu a{
    padding:15px 22px 15px 38px;
    font-size:12px;
    font-weight:400;
    letter-spacing:.8px;
    color:#555;
}

/* =========================================
   SEARCH BAR
========================================= */

.bzb-offcanvas-search{
    padding: 12px 15px;
    border-bottom: 1px solid #c1c1c1;
    background: #f9f9f9;
}


.bzb-offcanvas-search form{
    position:relative;
    margin:0;
}

.bzb-offcanvas-search input.search-field{
    width:100%;
    height:42px;
    border:1px solid #ddd;
    background:#fff;
    padding:0 46px 0 14px;
    font-size:12px;
    box-sizing:border-box;
    color:#333;
}

.bzb-offcanvas-search input.search-field:focus{
    outline:none;
    border-color:#721717;
}

.bzb-offcanvas-search .search-submit{
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:1px;
    right:1px;
    width:40px;
    height:40px;
    border:0;
    border-left:1px solid #eee;
    background:#fff;
    cursor:pointer;
}

.bzb-offcanvas-search .search-submit::before{
    content:"\2192";
    font-size:18px;
    color:#721717;
}

/* =========================================
   ACCOUNT ICON MENU
========================================= */

.bzb-account-box{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    padding:12px 6px;
    border-bottom:1px solid #c1c1c1;
    background:#fff;
}

.bzb-account-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    padding:4px 2px;
    text-align:center;
    text-decoration:none;
    color:#222;
    min-width:0;
}

.bzb-account-icon{
    width:20px;
    height:20px;
    line-height:18px;
    font-size:16px;
    font-weight:400;
    color:#721717;
    text-align:center;
}

.bzb-account-item span:last-child{
    font-size:9px;
    line-height:1.1;
    font-weight:500;
    letter-spacing:.4px;
    text-transform:uppercase;
    white-space:nowrap;
}

.bzb-account-item:hover{
    color:#721717;
}

/* =========================================
   OFFCANVAS PANEL
========================================= */

#offcanvas-menu{
    background:#fff;
}

/* Close button 
.bzb-close{
    position:absolute;
    top:14px;
    right:14px;
    width:36px;
    height:36px;
    border:none;
    background:#fff;
    font-size:28px;
    color:#333;
    z-index:999;
    cursor:pointer;
} */

/* Language switcher */
#offcanvas-menu .wpml-ls-item a{
    font-size:12px;
}

/* Remove extra spacing */
#offcanvas-menu .menu{
    margin:0;
    padding:0;
}