/* Asia4All — Cookie consent banner (conforme CNIL minimum) */
#a4a-cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  max-width: 720px;
  margin: 0 auto;
  background: #06060a;
  color: #ede9e1;
  border: 1px solid rgba(184, 150, 106, 0.35);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  padding: 1.1rem 1.2rem;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
#a4a-cookie-banner.show { display: block; }

#a4a-cookie-banner p {
  margin: 0 0 0.85rem;
  color: rgba(237, 233, 225, 0.85);
}
#a4a-cookie-banner a {
  color: #d4aa7a;
  text-decoration: underline;
}
#a4a-cookie-banner .a4a-cb-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#a4a-cookie-banner button {
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(184, 150, 106, 0.35);
  background: transparent;
  color: #ede9e1;
  cursor: pointer;
  transition: background .25s, color .25s;
}
#a4a-cookie-banner button.primary {
  background: #b8966a;
  color: #06060a;
  border-color: #b8966a;
}
#a4a-cookie-banner button.primary:hover { background: #d4aa7a; }
#a4a-cookie-banner button.secondary:hover {
  background: rgba(184, 150, 106, 0.12);
}

@media (max-width: 600px) {
  #a4a-cookie-banner {
    left: 8px; right: 8px; bottom: 8px;
    padding: 0.95rem 1rem;
    font-size: 12.5px;
  }
  #a4a-cookie-banner .a4a-cb-row button { flex: 1; }
}
