/* Language Switcher Styles */
.language-switcher {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.language-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 5px 8px;
  color: #5D4037;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.language-toggle:hover {
  background-color: rgba(199, 0, 57, 0.1);
  color: #C70039;
}

.language-toggle.active {
  background-color: #C70039;
  color: white;
}

.language-divider {
  color: #5D4037;
  margin: 0 2px;
}

/* Make sure language toggle is accessible on mobile */
@media screen and (max-width: 767px) {
  .language-switcher {
    position: absolute;
    top: 20px;
    right: 60px;
  }
  
  .language-toggle {
    padding: 3px 6px;
    font-size: 14px;
  }
}

/* When mobile menu is active */
@media screen and (max-width: 479px) {
  .header-actions.active .language-switcher {
    position: static;
    margin: 10px auto;
  }
}
