/* Zolara — cookie consent banner (aligné charte : crème / charcoal / laiton) */
#zolara-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

#zolara-consent .zc-inner {
  max-width: 720px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e7e0d4;
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.12);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

#zolara-consent .zc-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #444;
  flex: 1;
}

#zolara-consent .zc-text a {
  color: #b08d4d;
  text-decoration: underline;
}

#zolara-consent .zc-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#zolara-consent .zc-btn {
  cursor: pointer;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: opacity 0.15s ease;
}

#zolara-consent .zc-btn:hover { opacity: 0.85; }

#zolara-consent .zc-refuse {
  background: #ffffff;
  color: #1a1a1a;
  border-color: #d8cfbf;
}

#zolara-consent .zc-accept {
  background: #1a1a1a;
  color: #f5f1ea;
}

@media (max-width: 560px) {
  #zolara-consent .zc-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  #zolara-consent .zc-actions { justify-content: stretch; }
  #zolara-consent .zc-btn { flex: 1; }
}
