/* PROTEKTI — Bannière de consentement aux cookies */
.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(30, 92, 255, 0.3);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
  padding: 1.2rem 5%;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-consent.cookie-consent-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1 1 480px;
  color: #C7D2E8;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
}

.cookie-consent-text strong {
  color: #FFFFFF;
}

.cookie-consent-text a {
  color: #00C8F0;
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.75rem;
  flex: 0 0 auto;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #1E5CFF;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background: #2E6CFF;
}

.cookie-btn-reject {
  background: transparent;
  color: #C7D2E8;
  border: 1px solid rgba(138, 153, 184, 0.5);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .cookie-consent-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
