/* STICKY PREMIUM HEADER + OFFCANVAS */
html,
body{
  overflow-x:hidden;
}
.blf-topbar .container,
.blf-header .container{
  width:94%;
  max-width:1400px;
  margin:0 auto;
}

.blf-topbar{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:42px;
  z-index:9999;
  background:transparent;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.blf-topbar .container{
  height:50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}


.topbar-left,
.topbar-right{
  display:flex;
  align-items:center;
  gap:22px;
}

.topbar-left a,
.topbar-right a{
  color:#fff;
  font-size:13px;
  text-decoration:none;
}

.topbar-left i{
  color:#a9cd2e;
  margin-right:7px;
}

.blf-header{
  position:absolute;
  top:42px;
  left:0;
  width:100%;
  z-index:9998;
  background:transparent;
  transition:all .35s ease;
}

.blf-header.is-sticky{
  position:fixed;
  top:0;
background: rgba(255,255,255,.90);
box-shadow:0 12px 35px rgba(0,0,0,.12);
}

.header-inner{
  height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 28px;
}

/* =====================================================
   LOGO SYSTEM
===================================================== */

.logo{
  position:relative;
  display:block;
  width:auto;
}


.logo-default,
.logo-sticky{
  height:74px;
  width:auto;
  display:block;
  transition:opacity .35s ease;
}

.logo-sticky{
  position:absolute;
  top:0;
  left:0;
  opacity:0;
  pointer-events:none;
}

/* Sticky Logo Switch */
.blf-header.is-sticky .logo-default{
  opacity:0;
}

.blf-header.is-sticky .logo-sticky{
  opacity:1;
}
.blf-header.is-sticky .logo{
  transform:scale(.6);
  transition:.35s ease;
}
.main-menu ul{
  display:flex;
  align-items:center;
  gap:34px;
  margin:0;
  padding:0;
}

.main-menu li{
  list-style:none;
}

.main-menu a{
  color:#fff;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.5px;
  text-transform:uppercase;
  text-decoration:none;
  position:relative;
}

.main-menu a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-9px;
  width:0;
  height:2px;
  background:#a9cd2e;
  transition:.3s;
}

.main-menu a:hover:after,
.main-menu a.active:after{
  width:100%;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:13px;
}

.icon-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  position:relative;
}

.icon-btn:hover{
  background:#a9cd2e;
  border-color:#a9cd2e;
  color:#fff;
}

.cart-btn span{
  position:absolute;
  top:-6px;
  right:-6px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#a9cd2e;
  color:#fff;
  font-size:10px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
}

.quote-btn{
  padding:12px 26px;
  border-radius:50px;
  background:#a9cd2e;
  color:#fff;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  text-decoration:none;
}

.blf-header.is-sticky .main-menu a,
.blf-header.is-sticky .icon-btn{
  color:#222;
}

.blf-header.is-sticky .icon-btn{
  background:#fff;
  border-color:#ddd;
}

.blf-header.is-sticky .quote-btn{
  color:#fff;
}

.blf-header.is-sticky .logo img{
  filter:none;
}

/* OFFCANVAS */
.blf-offcanvas-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  opacity:0;
  visibility:hidden;
  z-index:10000;
  transition:.35s ease;
}

.blf-offcanvas-overlay.active{
  opacity:1;
  visibility:visible;
}

.blf-offcanvas{
  position:fixed;
  top:0;
  right:0;
  width:400px;
  max-width:92%;
  height:100vh;
  background:#fff;
  z-index:99999;
  padding:40px 30px;

  box-shadow:none;
  transform:translateX(calc(100% + 80px));
  transition:transform .35s ease, box-shadow .35s ease;
  will-change:transform;
}
.blf-offcanvas-overlay:not(.active){
  pointer-events:none;
}

.blf-offcanvas:not(.active){
  box-shadow:none !important;
}

.blf-offcanvas.active{
  transform:translateX(0);
    box-shadow:-20px 0 60px rgba(0,0,0,.2);

}

.offcanvas-close{
  position:absolute;
  top:22px;
  right:22px;
  width:42px;
  height:42px;
  border-radius:50%;
  border:none;
  background:#f3f3f3;
  cursor:pointer;
}

.offcanvas-kicker{
  display:inline-block;
  margin-top:35px;
  margin-bottom:12px;
  color:#a9cd2e;
  font-size:12px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
}

.blf-offcanvas h3{
  font-family:'Playfair Display',serif;
  font-size:34px;
  margin-bottom:25px;
  color:#222;
}

.search-form{
  display:flex;
  border:1px solid #ddd;
  border-radius:50px;
  overflow:hidden;
}

.search-form input{
  flex:1;
  border:none;
  padding:15px 20px;
  outline:none;
}

.search-form button{
  width:58px;
  border:none;
  background:#a9cd2e;
  color:#fff;
  cursor:pointer;
}

.offcanvas-note{
  margin-top:18px;
  color:#777;
  line-height:1.7;
}

.cart-empty{
  padding:45px 20px;
  text-align:center;
  background:#f8f8f8;
  border-radius:20px;
  margin-bottom:25px;
}

.cart-empty i{
  font-size:42px;
  color:#a9cd2e;
  margin-bottom:15px;
}

.offcanvas-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:48px;
  border-radius:50px;
  background:#a9cd2e;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  text-transform:uppercase;
}

/* MOBILE */
@media(max-width:991px){
  .blf-topbar{
    display:none;
  }

  .blf-header{
    top:0;
    background:rgba(0,0,0,.22);
  }

  .header-inner{
    height:78px;
    padding:0 14px;
  }

 .logo-default,
.logo-sticky{
  height:54px;
}


.blf-header.is-sticky .logo-default,
.blf-header.is-sticky .logo-sticky{
  height:74px;
}

  .main-menu{
    display:none;
  }

  .quote-btn{
    display:none;
  }

  .blf-header.is-sticky{
    background:#fff;
  }
}



/* MOBILE TOGGLER */
.mobile-toggle-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.08);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  position:relative;
}

.mobile-toggle-btn:hover{
  background:#a9cd2e;
  border-color:#a9cd2e;
  color:#fff;
}

.blf-header.is-sticky .mobile-toggle-btn{
  color:#222;
  background:#fff;
  border-color:#ddd;
}

.blf-header.is-sticky .mobile-toggle-btn:hover{
  background:#a9cd2e;
  color:#fff;
  border-color:#a9cd2e;
}

@media(max-width:991px){

  .mobile-toggle-btn{
    display:flex;
  }

  .header-actions{
    gap:9px;
  }

  .icon-btn,
  .mobile-toggle-btn{
    width:40px;
    height:40px;
  }
}
/* ==========================================
   SEARCH SUGGESTIONS
   ========================================== */

.search-suggestions{
    margin-top:35px;
    padding-top:25px;
    border-top:1px solid rgba(120,145,49,.15);
}

.suggestion-label{
    display:block;
    margin-bottom:14px;

    color:#789131;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.search-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.search-tag{
    border:none;
    cursor:pointer;

    padding:10px 18px;

    border-radius:50px;

    background:#ffffff;
    color:#789131;

    border:1px solid rgba(120,145,49,.22);

    font-size:12px;
    font-weight:700;

    transition:all .3s ease;
}

.search-tag:hover{
    background:#789131;
    color:#ffffff;

    border-color:#789131;

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(120,145,49,.20);
}

.search-tag:active{
    transform:translateY(0);
}

/* Optional Active State */

.search-tag.active{
    background:#789131;
    color:#ffffff;
    border-color:#789131;
}

/* Mobile */

@media(max-width:767px){

    .search-tags{
        gap:8px;
    }

    .search-tag{
        padding:8px 14px;
        font-size:11px;
    }

}

/* =========================
   06. Mobile Drawer Navigation
   ========================= */

.mobile-nav{
    position:fixed;
    inset:0;
    z-index:9999;
    pointer-events:none;
}

.mobile-nav__backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
}

.mobile-nav__panel{
    position:absolute;
    top:0;
    right:0;
    width:380px;
    max-width:92%;
    height:100vh;
    background:#261C14;
    transform:translateX(calc(100% + 80px));
    transition:.35s ease;
    padding:28px;
    box-shadow:none;
    overflow-y:auto;
}

.mobile-nav.is-open{
    pointer-events:auto;
}

.mobile-nav.is-open .mobile-nav__backdrop{
    opacity:1;
    visibility:visible;
}

.mobile-nav.is-open .mobile-nav__panel{
    transform:translateX(0);
}

.mobile-nav__header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-bottom:18px;
    margin-bottom:18px;
    border-bottom:1px solid rgba(255,255,255,.10);
}

.mobile-nav__logo img{
    height:110px;
    width:auto;
    display:block;
}

.mobile-nav__close{
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    cursor:pointer;
    transition:.3s ease;
}

.mobile-nav__close:hover{
    background:var(--blf-green);
    color:#041a30;
}

.mobile-nav__company{
    color:rgba(255,255,255,.62);
    font-size:13px;
    letter-spacing:.8px;
    text-transform:uppercase;
    margin-bottom:22px;
    font-weight:600;
}

.mobile-nav__menu{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap:10px;
}

.mobile-nav__menu a{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 16px;
    border-radius:10px;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.09);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
}

.mobile-nav__menu a:hover{
    background:rgba(169,205,46,.13);
    border-color:rgba(169,205,46,.35);
    transform:translateX(-4px);
}

.mobile-nav__menu i{
    width:20px;
    text-align:center;
    color:var(--blf-green);
    font-size:15px;
}

.mobile-nav__socials{
    display:flex;
    gap:12px;
    margin-top:30px;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.10);
}

.mobile-nav__socials a{
    width:44px;
    height:44px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    color:var(--blf-green);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s ease;
}

.mobile-nav__socials a:hover{
    background:var(--blf-green);
    color:#041a30;
    transform:translateY(-3px);
}

/* Mobile Fine Tuning */
@media(max-width:480px){
    .mobile-nav__panel{
        width:86%;
        padding:24px 20px;
    }

    .mobile-nav__logo img{
        height:82px;
    }

    .mobile-nav__menu a{
        padding:13px 14px;
        font-size:15px;
    }

    .mobile-nav__socials a{
        width:40px;
        height:40px;
    }
}
