/* ══════════════════════════════════════════════════════════════
   Language bar — append to consent.css
   ══════════════════════════════════════════════════════════════ */
.morevo-cc-lang-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: #FF5500;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}
.morevo-cc-lang-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.morevo-cc-lang-btns {
  display: flex;
  gap: 6px;
}
.morevo-cc-lang-btn {
  padding: 6px 14px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  transition: all 0.18s;
}
.morevo-cc-lang-btn:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.morevo-cc-lang-btn.active {
  background: #fff;
  border-color: #fff;
  color: #FF5500;
}
@media (max-width: 420px) {
  .morevo-cc-lang-bar { flex-direction: column; gap: 8px; align-items: flex-start; }
  .morevo-cc-lang-btns { width: 100%; justify-content: space-between; }
  .morevo-cc-lang-btn { flex: 1; text-align: center; padding: 6px 8px; }
}
