.language-switcher {
    display: inline-flex;
    align-items: center;
    margin-left: 10px; /* Adjust spacing as needed */
}
.product-wish {
  position: absolute;
  top: 0px;
  left: 0px;
  right: unset;
  font-size: 25px;
  color: var(--gray-chalk);
}
.dropdown-link::before {
  position: absolute;
  top: 50%;
  right: unset;
  left: 18px;
  content: "\f054";
  font-size: 10px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}
.dropdown-position-list {
  position: absolute;
  top: 100px;
  left: unset;
  right: 0px;
  z-index: 2;
  width: 200px;
  height: auto;
  visibility: hidden;
  opacity: 0;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}