/* tracking.css — Petit encart cookies en bas à gauche du tunnel
   /estimation-en-ligne.

   RGPD CNIL : choix « Accepter » et « Refuser » équivalents et visibles
   en même temps, pas de dark pattern. */

.althenor-cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9999;
  width: 280px;
  max-width: calc(100vw - 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 16px;
  background: #1d1d1f;
  color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.althenor-cookie-banner .acb-text {
  margin: 0;
}

.althenor-cookie-banner .acb-actions {
  display: flex;
  gap: 8px;
}

.althenor-cookie-banner .acb-btn {
  flex: 1 1 0;
  appearance: none;
  border: 0;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.15s ease;
}

.althenor-cookie-banner .acb-btn-refuse {
  background: rgba(255, 255, 255, 0.12);
  color: #f5f5f5;
}

.althenor-cookie-banner .acb-btn-accept {
  background: #0A401B;
  color: #ffffff;
}

.althenor-cookie-banner .acb-btn:hover {
  filter: brightness(1.15);
}

@media (max-width: 520px) {
  .althenor-cookie-banner {
    left: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
    padding: 12px 14px;
  }
}
