.translator {
  display: flex;
  align-items: center;
  gap: 8px;
}
.translatorIcon {
  color: var(--text-muted);
  font-size: 13px;
}
.translatorBtn {
  background: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0;
  transition: color 0.2s ease;
}
.translatorBtn.active {
  color: var(--yellow);
  font-weight: 700;
}
.translatorBtn:hover:not(.active) {
  color: var(--text-sub);
}
.translatorSep {
  color: var(--border);
  font-size: 11px;
}

/* STICKY TRANSLATOR (WhatsApp Style) */
.stickyTranslator {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100010;
  display: flex;
  background: rgba(20, 20, 18, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 192, 0, 0.3);
  border-radius: 50px;
  padding: 6px;
  gap: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: floatUp 0.6s ease-out forwards;
}

.stickyTranslatorBtn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stickyTranslatorBtn.active {
  background: var(--yellow);
  color: var(--dark-1);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(245, 192, 0, 0.3);
}

.stickyTranslatorBtn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .stickyTranslator {
    bottom: 20px;
    right: 20px;
  }
  .stickyTranslatorBtn {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
}
