/* ============================================================
   SON-RISAS - I18N STYLING (FUN FLAGS)
   ============================================================ */

.lang-selector {
  display: flex;
  gap: 12px;
  margin: 0 20px;
  align-items: center;
}

.lang-btn {
  background: none;
  border: 3px solid transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.lang-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1); /* Slight zoom to hide character edges if needed */
}

.lang-btn:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.lang-btn.active {
  border-color: var(--gold-primary);
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--gold-glow);
}

/* Adjust for mobile menu */
@media (max-width: 991px) {
  .lang-selector {
    margin: 20px auto;
    justify-content: center;
    order: -1; /* Place above navigation links in mobile if needed */
  }
}

/* Tooltip style if you want to use it */
.lang-btn[title] {
  position: relative;
}

/* Animations for new content */
[data-i18n] {
  transition: opacity 0.3s ease;
}

.lang-changing [data-i18n] {
  opacity: 0;
}
