/* Estilos mínimos para el banner de cookies */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  color: #111;
  padding: .75rem 1rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 1200;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.cookie-banner span {
  margin-right: .5rem;
}

.cookie-banner button {
  border: none;
  border-radius: 8px;
  padding: .5rem .75rem;
  cursor: pointer;
  font-weight: 700;
}

#cookie-accept {
  background: #FFDB00;
  color: #111;
}

#cookie-reject {
  background: #2e3037;
  color: #fff;
}