/* Bannière consentement analytics — new_landing */
.consent-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 13100;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
  background: rgba(18, 18, 36, 0.98);
  border-top: 0.5px solid rgba(139, 92, 246, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}
.consent-banner.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.consent-banner-inner {
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.consent-banner-text {
  flex: 1;
  min-width: 220px;
}
.consent-banner-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #f4f2ff;
}
.consent-banner-desc {
  font-size: 12px;
  color: var(--muted, rgba(240, 238, 255, 0.52));
  line-height: 1.5;
  margin: 0;
}
.consent-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.consent-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
}
.consent-btn-accept {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
}
.consent-btn-reject {
  background: transparent;
  color: var(--muted, rgba(240, 238, 255, 0.52));
  border: 0.5px solid rgba(255, 255, 255, 0.14);
}
.consent-link {
  font-size: 12px;
  color: var(--v2, #a78bfa);
  text-decoration: none;
}
.consent-link:hover {
  color: #ede9fe;
}

@media (max-width: 480px) {
  .consent-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .consent-banner-actions {
    justify-content: stretch;
  }
  .consent-btn {
    flex: 1;
    text-align: center;
  }
}
