body {
  margin: 0;
  font-family: sans-serif;
  background-color: #f2f2f2;
}

.mega_menu_title {
    margin-bottom: 10px;
    display: block;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-top: 20px;
}

.navbar_menu .navbar {
  display: flex;
  align-items: center;
  /* background: #0f2d1a url('https://www.transparenttextures.com/patterns/arabesque.png'); */
  /* padding: 10px 20px; */
  color: #fff;
  position: relative;
}

.navbar_menu .nav-button {
  background: #4CAF50;
  padding: 8px 15px;
  border-radius: 6px;
  color: white;
  margin: 0 10px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

/* Hamburger Menu Styles */
.navbar_menu .hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 10px;
  margin-left: auto;
}

.navbar_menu .hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.navbar_menu .hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.navbar_menu .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar_menu .hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.navbar_menu .nav-menu {
  display: flex;
  list-style: none;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}
li.nav-item.extra-tab a {
    text-decoration: none;
    color: white !important;
    font-size: 17px;
}
.navbar_menu .nav-item {
  margin: 0 15px;
  cursor: pointer;
  position: static;
  font-weight: bold;
  padding: 10px 0;
}

.navbar_menu .has-dropdown {
  position: static;
}

/* .has-dropdown:hover .dropdown {
  display: flex;
} */

.navbar_menu .dropdown {
  position: absolute;
  flex-wrap: wrap;
  top: 100%;
  left: 0;
  width: 100vw;
  max-width: 100%;
  background: white;
  color: #000;
  display: none;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 100;
  box-sizing: border-box;
}

.navbar_menu .dropdown-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0f2d1a;
  color: white;
  padding: 15px 20px;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-sizing: border-box;
}

.navbar_menu .dropdown-title {
  font-size: 18px;
  font-weight: bold;
}

.navbar_menu .dropdown-close {
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
  padding: 0 15px;
}

.navbar_menu .menu-left {
  /* flex: 1; */
  flex: 0 0 25%;
  background: #e6f2e6;
  padding: 10px;
  max-height: 400px;
  overflow-y: auto;
}

.navbar_menu .menu-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar_menu .menu-left li {
  padding: 5px;
  cursor: pointer;
}
.navbar_menu .menu-left li:hover {
  background: #cce5cc;
}

.navbar_menu .menu-right {
  /* flex: 3; */
  flex: 0 0 20%;
  padding: 10px 20px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.navbar_menu .candle-block h4 {
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}
.navbar_menu .candle-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar_menu .candle-block li {
  font-size: 14px;
  padding: 4px 0;
  cursor: pointer;
}
.navbar_menu .candle-block li:hover {
  text-decoration: underline;
}
.mob-btns
{
    display: none !important;
}
/* Mobile Styles */
@media (max-width: 1140px) {

.nav-button.login {
    display: none;
}
.nav-button.home {
    display: none;
}
.navbar_menu .hamburger span {
    background: #000000;
}

button.hamburger.active {
    position: fixed;
    top: 9px;
    right: 9px;
    z-index: 1;
}
  .navbar_menu .hamburger {
    display: block;
  }

     .navbar_menu .nav-menu {
        position: fixed;
        /* top: 100%; */
        left: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background: #0f2d1a;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        display: none;
    }

  .navbar_menu .nav-menu.active {
    display: flex;
  }

  .navbar_menu .nav-item {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    margin: 0;
  }

     .navbar_menu .dropdown {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 999;
        flex-direction: column;
        overflow-y: auto;
        padding: 0;
        padding-top: 60px;
    }

  .navbar_menu .dropdown.active {
    display: flex;
    padding-bottom: 32px;
  }

  .navbar_menu .dropdown-header {
    display: flex;
  }

  .navbar_menu .menu-left, .navbar_menu .menu-right {
    width: 100%;
    flex: none;
    padding: 15px;
  }

  .navbar_menu .nav-button {
    margin: 5px;
  }

  .navbar_menu .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .navbar_menu .home, .navbar_menu .login {
    order: -1;
  }
}

.desktop-none {
    display: none;
}
.mobile-none {
    display: block;
}
.tabs.sticky {
    z-index: 1 !important;
}
.tabs {
    z-index: 1;
}
@media (min-width: 1141px) {
.menu_right_container {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
}

  .navbar_menu .has-dropdown:hover .dropdown {
    display: flex;
  }
}
.hide_on_desktop {
    display: none;
}
@media (max-width: 1140px) {
    li.nav-item.extra-tab a {
    font-size: 24px !important;
}
.hide_on_desktop {
    display: block;
}
    .menu_right_container {
        display: flex;
        flex-wrap: wrap;
    }
  .navbar_menu .has-dropdown:hover .dropdown {
    display: none;
  }

  .navbar_menu .dropdown.active {
    display: flex !important;
    flex-wrap: nowrap;
  }

  .header {
    background: white !important;
}
    .navbar_menu .hamburger
    {
        padding: 0px;
    }
    a.navbar-brand img {
        width: 200px;
    }
    .col-md-12.navbar_menu
    {
        display: flex;
        align-items: center;
        justify-content: center;
        justify-content: space-between;
    }
    .desktop-none {
        display: block;
    }
    .mobile-none {
        display: none;
    }
    .header {
        height: 70px !important;
    }
    button.hamburger.active span {
        background: white;
    }

    .navbar_menu .menu-right {
        flex: 0 0 50%;
        padding: 10px 20px;
        display: block;
        gap: 30px;
        flex-wrap: wrap;
    }
    .lang_select_container {
        width: 100% !important;
    }
    .language-selector {
        width: 100%;
        gap: 10px;
        cursor: pointer;
        margin-left: 0;
        align-items: center;
        justify-content: center;
    }
    .welcome-text {
        display: none;
    }
    .social-links {
        display: none !important;
    }
    .navbar_menu .menu-right {
        flex: 0 !important;
        padding: 0px 20px;
    }
    .mega_menu_title {
        margin-bottom: 0;
        margin-top: 13px;
    }
    .navbar_menu .has-dropdown:hover .dropdown {
        margin-top: 17px;
    }
.menu-right a {
    font-size: 23px;
}
.menu-left a {
    font-size: 26px;
}
span.mega_menu_title, span.mega_menu_title a {
    font-size: 24px;
    padding-bottom: 6px;
    border-bottom: 1px solid;
}
li.nav-item {
    font-size: 22px;
}
span.mega_menu_title, span.mega_menu_title a {
    color: green !important;
}
.product-grid {
    padding: 0 !important;
}
.nav-button-mob.search button {
    border: none;
    margin: 0px;
    padding: 0px;
    background: none;
    font-size: 25px;
}
.nav-button-mob.accounts {
    font-size: 28px;
}
.mob-btns
{
    display: block !important;
}
    .navbar {
        height: auto !important;
        width: auto !important;
    }
    .nav-button-mob.accounts a {
        color: green;
        margin-right: 26px;
        margin-left: 23px;
    }

}


/* Add these to your navbar.css */
/* .navbar_menu .dropdown {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
} */

.navbar_menu .dropdown.active {
    opacity: 1;
    visibility: visible;
    display: flex; /* Keep your existing display property */
}

.navbar_menu .dropdown {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* For mobile dropdowns */
@media (max-width: 1140px) {
    .navbar_menu .nav-menu {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .navbar_menu .nav-menu.active {
        opacity: 1;
        visibility: visible;
        display: flex; /* Keep your existing display property */
    }
    .cart-count, .wishlist-count
    {
        top: 7px !important;
        right: 45px !important;
    }

}
