  /* ================================
    Custom WPML Language Dropdown - Responsive
    ================================ */
  /* ================================
   Custom WPML Language Dropdown
   ================================ */
.lang-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

/* Toggle button */
.lang-toggle {
  font-family: 'Roboto', sans-serif;
  font-size: 14.4px;
  line-height: 20px;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Hover + Active */
.lang-toggle:hover,
.lang-toggle.active {
  background: linear-gradient(90deg, #FFD9B8 0%, #B8F0F8 100%);
  border-color: transparent;
  border-radius: 6px 6px 0 0;
  color: #000;
}

/* Dropdown arrow */
.lang-dropdown .arrow {
  font-size: 12px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.lang-toggle.active .arrow {
  transform: rotate(180deg);
}

/* Dropdown menu */
.lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 100%;
  overflow: hidden;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Show state */
.lang-menu.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown links */
.lang-menu a {
  font-family: 'Roboto', sans-serif;
  font-size: 14.4px;
  line-height: 20px;
  padding: 10px 14px;
  color: #000;
  text-decoration: none;
  transition: all 0.2s ease;
  background: #fff;
}

/* Hover links */
.lang-menu a:hover {
  background: linear-gradient(90deg, #FFD9B8 0%, #B8F0F8 100%);
  color: #fff;
}

/* Footer-specific styling for WPML dropdown */
.elementor-location-footer .lang-toggle {
  color: #000;
  border-color: #000;
}

.elementor-location-footer .lang-toggle:hover,
.elementor-location-footer .lang-toggle.active {
  background: linear-gradient(90deg, #FFD9B8 0%, #B8F0F8 100%);
  color: #000;
  border-color: transparent;
  border: solid 1px rgb(252, 252, 252);
}

.elementor-location-footer .lang-menu a {
  color: #000;
}

.elementor-location-footer .lang-menu a:hover {
  color: #fff;
}

/* -------------------------
   Responsive: Tablet (<= 1440px)
   ------------------------- */
@media (max-width: 1440px) {
  .lang-toggle,
  .lang-menu a {
    font-size: 9px;
    line-height: 13px;
    padding: 8px 10px;
  }
}

/* -------------------------
   Responsive: Tablet (<= 1024px)
   ------------------------- */
@media (max-width: 1024px) {
  .lang-toggle,
  .lang-menu a {
    font-size: 9px;
    line-height: 13px;
    padding: 8px 10px;
  }
}

/* -------------------------
   Responsive: Mobile (<= 768px)
   ------------------------- */
@media (max-width: 768px) {
  .lang-dropdown {
    display: block;
  }

  .lang-toggle {
    width: auto;
    padding: 10px 16px;
    font-size: 9px;
    line-height: 13px;
    border-radius: 6px;
  }

  .lang-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    min-width: 160px;
    width: max-content;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  }

  .lang-menu a {
    padding: 14px 16px;
    font-size: 9px;
    line-height: 13px;
  }
}

/* -------------------------
   Small phones (<= 480px)
   ------------------------- */
@media (max-width: 480px) {
  .lang-toggle {
    font-size: 9px;
    line-height: 13px;
    padding: 6px 10px;
  }

  .lang-menu {
    min-width: 100%;
    left: 0;
    right: auto;
  }

  .lang-menu a {
    font-size: 9px;
    line-height: 13px;
    padding: 6px 10px;
  }
}