/* Bandeau de consentement cookies (RGPD) - mondeasie.com
   Ajouté le 12 juillet 2026. Ne dépend d'aucune autre feuille de style. */
#mondeasie-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #1f1f1f;
  color: #fff;
  padding: 18px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.25);
  font-family: 'Open Sans', Arial, sans-serif;
  /* Filet de sécurité : le bandeau ne doit jamais pouvoir recouvrir tout l'écran,
     même sur un très petit mobile ou avec une taille de texte agrandie */
  max-height: 45vh;
  overflow-y: auto;
  box-sizing: border-box;
}
.mondeasie-cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
#mondeasie-cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  flex: 1 1 480px;
  color: #fff;
}
#mondeasie-cookie-banner a {
  color: #fff;
  text-decoration: underline;
}
.mondeasie-cookie-text-short {
  display: none;
}
.mondeasie-cookie-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.mondeasie-cookie-btn {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 2px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  white-space: nowrap;
}
.mondeasie-cookie-btn-fill {
  background: #D62839;
  border-color: #D62839;
}
.mondeasie-cookie-btn-fill:hover {
  background: #fff;
  color: #D62839;
}
.mondeasie-cookie-btn-outline:hover {
  background: #fff;
  color: #1f1f1f;
}
/* Mobile : bandeau nettement plus compact, texte raccourci, boutons cote a cote */
@media (max-width: 600px) {
  #mondeasie-cookie-banner {
    padding: 12px 14px;
    max-height: 40vh;
  }
  .mondeasie-cookie-inner {
    gap: 10px;
  }
  #mondeasie-cookie-banner p {
    font-size: 12px;
    line-height: 1.35;
    flex-basis: 100%;
  }
  .mondeasie-cookie-text-full {
    display: none;
  }
  .mondeasie-cookie-text-short {
    display: inline;
  }
  .mondeasie-cookie-actions {
    flex-basis: 100%;
    justify-content: stretch;
    gap: 8px;
  }
  .mondeasie-cookie-btn {
    flex: 1 1 0;
    text-align: center;
    padding: 8px 10px;
    font-size: 11px;
  }
}
