

/* === FOOTER FIN FIDAL CONSEILS === */
:root {
  --green-header: #0d5d2c;
  --gold-accent: #f0cc63;
  --footer-h: 50px; /* hauteur totale du header */
}

footer {
  position: relative;
  margin-top: auto;              /* ⬅ au lieu de 100px */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--green-header, #0d5d2c);
  color: #e9f6ef;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 12px 1.5rem;
  box-sizing: border-box;
}
footer nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

footer a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}
footer a:hover {
  color: gold;
}

/* ta bulle */
.footer-bulle {
  position: absolute;
  top: -35px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f0cc63;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  cursor: pointer;
  z-index: 10;
}

/* popup de consentement */
.consent-pop {
  position: fixed;
  right: 24px;
  bottom: 90px;
  max-width: 360px;
  background: rgba(0,0,0,0.9);
  color: #e9f6ef;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  padding: 20px 18px;
  z-index: 2000;
  font-size: 0.9rem;
  line-height: 1.5;
  display: none;
  backdrop-filter: blur(4px);
}
.consent-pop.show {
  display: block;
}

.consent-pop button {
  background: #f0cc63;
  color: #0d5d2c;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  margin: 6px 4px 0;
  padding: 8px 14px;
  cursor: pointer;
}
.consent-pop .btn-small {
  background: transparent;
  border: 1px solid #f0cc63;
  color: #f0cc63;
  margin-top: 10px;
}