/* Language and currency selectors */
.cach-selector-group,
.cach-selector-group-desktop {
  display: flex;
  gap: 15px;
}


.cach-selector {
  position: relative;
  margin-left: 15px;
}

.cach-selector-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
  transition: all 0.3s ease;
  padding: 5px;
  font-family: 'Montserrat', sans-serif;
}

.cach-selector-btn:hover {
  color: #F47321;
}

.cach-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 5px 0;
  min-width: 120px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin-top: 5px;
}

.cach-selector:hover .cach-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cach-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cach-dropdown-item:hover {
  background-color: #f5f5f5;
  color: #F47321;
}

.cach-header-bottom {
  background-color: #f5f5f5;

}

/*.cach-header-bottom-all {
  background-color: #f5f5f5;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}*/

.nav>li>a:hover {
    background-color: #f5f5f5!important;
}

.cach-main-nav {
  display: flex;
  justify-content: center;
}

.cach-main-nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
}

.cach-main-nav-list a {
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
}

.cach-main-nav-list a:hover {
  color: #F47321;
}

/* Toggle button for mobile & tablet */
.cach-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 200;
}

.cach-toggle-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333333;
  transition: all 0.3s ease;
}