/* loader------------------- */
/* Loader styling */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffffd9;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner animation */
.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #a9b87e;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

/* Animation for spinner */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Page content styling */
#content {
  text-align: center;
  margin-top: 50px;
}

/* loader------------------- */
/* nav start */

/* Base styles */
.header_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  /* padding-bottom: 0; */
  position: relative;
}
.btn-primary:hover{
  background: #9aaa4c;border: 1px solid #9aaa4c;
}
.menus ul li {
  list-style: none;
}
.dropdown-menu{
  padding: 0;
}
.menus ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
li.product-link {
  color: #000;
  font-weight: 300;
  padding: 20px;
}
.menus ul li a {
  color: #000;
  font-weight: 300;
  text-decoration: none;
  padding: 20px;
}
li.menu-item a {
  padding: 0 !important;
}
.ctas a,
.cta-button {
  color: #929395;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #929395;
    padding: 7px 20px;
    display: inline-block;
    border-radius: 4px;
    text-align: center;
    background: transparent;
}

/* Hide mobile elements by default */
.menu-toggle,
.close-menu,
.mobile-cta,
.menu-overlay {
  display: none;
}

/* Button reset styles */
.menu-toggle,
.close-menu {
  background: none;
  border: none;
  /* padding: 10px; */
  cursor: pointer;
}


@media(min-width:992px) and (max-width: 1380px) {
  .ctas a, .cta-button{
    font-size: 12px;
    padding: 5px;
  }
  .menus ul li{
    font-size: 14px;
    /* width: max-content; */
  }
  li.product-link, .menus ul li a{
    padding: 10px;
  }
}
@media(min-width:992px) {
  span.menu_main {
    padding-bottom: 5px;
    position: relative;
    font-weight: 400;
  }
  span.menu_main:hover {
  color: #9aaa4c;
}
span.menu_main:hover:before {width: 100%;transition: 0.5s;}

span.menu_main:before {
    position: absolute;
    content: '';
    left: 0;
    width: 0;
    transition: 0.5s;
    height: 2px;
    bottom: 0;
    background: #9aaa4c;
} 
  /* dropdown */

  .product-link {
    position: relative;
    cursor: pointer;
  }

  .product-link:hover .product-menu {
    display: block;
  }

  .product-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
  }

  .product-menu,
  .submenu {
    border-radius: 6px;
    display: none;
    padding:  0px;
    min-width: max-content;
  }

  .dropdown-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }

  .submenu {
    position: absolute;
    width: 100%;
    top: 10px;
    right: -100%;
    background: #fff;
  }

  .dropdown-menu li,
  .submenu li {
    padding: 10px 15px;
    width: 100%;
    cursor: pointer;
    background: #825a81;
    color: #fff;
    border-bottom: 1px solid #644a63;
  }
  .menu-item a{
    color: #fff !important;
  }
  .menu-item {
    padding-bottom: 5px;
    font-size: 15px;
  }
  li.menu-item:hover {
    background: #644a63;
}
  .menu-item svg {
    margin-left: 5px;
    vertical-align: middle;
    stroke: #fff;
  }

  .menu-item:hover .submenu {
    display: block;
  }

  /* dropdown end */
}



/* Mobile styles */
@media screen and (max-width: 991px) {

  /* Logo adjustments */
  .logo img {
    width: 80px;
    height: auto;
  }

  /* Show menu toggle and hide desktop CTA */
  .menu-toggle {
    display: block;
    z-index: 1000;
  }

  .desktop-only {
    display: none;
  }

  /* Overlay styles */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Menu styles */
  .menus {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    padding: 15px;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: auto;
    background-color: #fff;
  }

  .menus.active {
    right: 0;
  }

  /* Close button styles */
  .close-menu {
    display: block;
    position: absolute;
    top: 10px;
    right: 5px;
    z-index: 1001;
    user-select: none;
  }

  .menus ul {
    /* flex-direction: column; */
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .menus.active ul {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
    padding-left: 0;
    border: 0;
    padding: 0;
  }

  .menus ul li {
    width: 100%;
    text-align: left;
  }

  .menus ul li a {
    display: block;
    padding: 15px;
  }

  /* Show mobile CTA */
  .mobile-cta {
    display: block;
    margin-top: 20px;
  }

  /* Mobile CTA styling */
  .mobile-cta .cta-button {
    display: inline-block;
    width: auto;
    margin-top: 20px;
  }



  /* dropdown */
  .product-link {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;

  }

  .product-menu {
    display: none;
    position: relative;
    left: 0;
    padding-top: 5px;
  }


  .submenu {
    display: none;
    padding: 5px 0px;
    /* min-width: max-content; */
  }

  .dropdown-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 0px !important;
  }

  .dropdown-menu li,
  .submenu li {
    padding: 5px 15px;
    width: 100%;
    cursor: pointer;
  }
  li, li a{
    font-size: 14px;
  }
}

/* navbar end */
