/* ── BANDEAU COOKIE RGPD ── */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 700px;
  background: #1D1B34;
  color: white;
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#cookie-banner.cookie-banner--hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
}

.cookie-banner__text p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 18px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
}

.cookie-btn--filled {
  background: #F5E642;
  color: #1D1B34;
}

.cookie-btn--filled:hover {
  background: #f0df20;
  transform: translateY(-1px);
}

.cookie-btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
}

.cookie-btn--outline:hover {
  border-color: rgba(255,255,255,0.7);
}

@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 16px;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-end;
  }
}