/* === Language switch === */
.language-switch {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 0.5rem;
  z-index: 1000;
}

.lang-btn {
  background: transparent;
  border: 1px solid #777;
  color: #ccc;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: #eaeaea;
  color: #111;
  border-color: #eaeaea;
}

.lang-btn:hover {
  color: #fff;
  border-color: #fff;
}

/* === Cookie banner === */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 2000;
  flex-wrap: wrap;
}

#cookie-banner p {
  color: #ccc;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

#cookie-banner a {
  color: #eaeaea;
  text-decoration: underline;
}

#cookie-accept {
  background: #eaeaea;
  color: #111;
  border: none;
  padding: 0.5rem 1.4rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

#cookie-accept:hover {
  background: #fff;
}

/* === Footer legal line === */
.footer-legal {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #666;
}

.footer-legal a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #aaa;
}
