/* ══════════════════════════════════════════════════════════════
   LANGUAGE BAR — add to consent.css
   Sits at the very top of the modal, full-width, unmissable
   ══════════════════════════════════════════════════════════════ */

.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.12em;
  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.35);
  border-radius: 20px;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
  line-height: 1;
}

.morevo-cc-lang-btn:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.65);
  color: #fff;
}

.morevo-cc-lang-btn.active {
  background: #fff;
  border-color: #fff;
  color: #FF5500;
}

@media (max-width: 400px) {
  .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;
  }
}
