/* ============================================================
   EUNO × MUNDAÏ — Bannière cookies (injectée par euno.js)
   ============================================================ */
.euno-cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 50;
  background: #fff;
  border: 1.5px solid #D9BFA8;
  border-left: 7px solid var(--color-fuchsia-vif);
  border-radius: 20px;
  box-shadow: 0 -10px 35px rgba(70, 40, 25, 0.18);
  padding: 34px 32px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}
.euno-cookie-banner[hidden] { display: none; }
.euno-cookie-bar[hidden],
.euno-cookie-panel[hidden] { display: none; }
.euno-cookie-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.euno-cookie-bar > div:first-child { flex: 1; min-width: 240px; }
.euno-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.euno-cookie-banner h2 { font-size: 16px; font-weight: 700; line-height: 1.3; margin: 0 0 6px; }
.euno-cookie-banner p { font-size: 14px; color: var(--color-text-muted); margin: 0; line-height: 1.6; }
.euno-cookie-btn {
  background: none;
  border: 2px solid #B08654;
  color: var(--color-text);
  font: 600 14px var(--font-body);
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
}
.euno-cookie-btn-primary {
  background: var(--color-fuchsia);
  border: none;
  color: #fff;
  padding: 11px 24px;
  box-shadow: var(--shadow-cta);
  transition: transform .2s;
}
.euno-cookie-btn-primary:hover { transform: translateY(-2px); }
.euno-cookie-pref {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: var(--bg-primary);
  border-radius: 14px;
  margin-bottom: 14px;
}
.euno-cookie-pref h3 { font-size: 14px; font-weight: 600; line-height: 1.3; margin: 0 0 4px; }
.euno-cookie-pref p { font-size: 13px; }
.euno-toggle {
  width: 40px; height: 24px;
  border-radius: var(--radius-pill);
  background: #DCD3C4;
  flex-shrink: 0;
  position: relative;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}
.euno-toggle.is-on { background: var(--color-fuchsia); }
.euno-toggle.is-locked { background: var(--color-fuchsia); opacity: .5; cursor: default; }
.euno-toggle::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: all .2s;
}
.euno-toggle.is-on::after,
.euno-toggle.is-locked::after { left: auto; right: 2px; }

@media (max-width: 640px) {
  .euno-cookie-bar { flex-direction: column; align-items: stretch; }
  .euno-cookie-actions { flex-direction: column; }
  .euno-cookie-actions button { width: 100%; }
}
