/* ── Banner de cookies ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--black);
  border-top: 2px solid var(--orange);
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}
.cookie-text strong {
  color: var(--white);
  font-weight: 600;
}
.cookie-text a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(234,88,12,0.3);
  transition: border-color 0.2s;
}
.cookie-text a:hover { border-color: var(--orange); }
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-btn-accept:hover { background: #C2440A; }
.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.7rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-reject:hover {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept { flex: 1; }
  .cookie-btn-reject { flex: 1; text-align: center; }
}
