/* ============================================================
   VNESYS — Bannière de consentement cookies
   Autonome (ne dépend pas des variables CSS propres à chaque page)
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: #0a0a0a;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-family: 'Inter', sans-serif;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner-text {
  margin: 0;
  color: #e5e5e5;
  font-size: 14px;
  line-height: 1.5;
  max-width: 640px;
}
.cookie-banner-text a {
  color: #D4AF37;
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 11px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cookie-btn-accept {
  background: #8a6d1f;
  color: #ffffff;
}
.cookie-btn-accept:hover {
  background: #6e5718;
}
.cookie-btn-reject {
  background: transparent;
  color: #e5e5e5;
  border-color: rgba(255,255,255,0.25);
}
.cookie-btn-reject:hover {
  border-color: rgba(255,255,255,0.5);
}
@media (max-width: 520px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-actions {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1;
  }
}
