/* Cookie consent modal */

#simple-cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  z-index: 1000;
  display: none;

  transform: translateY(60px);
  opacity: 0;
  pointer-events: none;

  transition:
    transform 0.35s cubic-bezier(.22, 1, .36, 1),
    opacity 0.35s ease;
}

#simple-cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
  /* pointer-events reste à none sur le wrapper : seul le container réagit aux
     clics, la zone vide à gauche laisse passer les clics vers la page derrière */
}

#simple-cookie-consent .cookie-consent-container {
  position: relative;
  margin-left: auto;
  width: 100%;
  max-width: 480px;
  background: var(--purple);
  color: #fff;
  padding: 28px 28px 24px;
  border-radius: 16px;
  box-shadow: 0 0 35px rgba(132, 76, 170, 1);
  pointer-events: auto;
}

/* Croix discrète en haut à droite */
#simple-cookie-consent .cookie-consent-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.3;
  padding: 4px 6px;
  transition: opacity 0.15s ease;
}

#simple-cookie-consent .cookie-consent-close:hover,
#simple-cookie-consent .cookie-consent-close:focus {
  opacity: 0.7;
  outline: none;
}

/* Contenu (texte + illustration en float) */
#simple-cookie-consent .cookie-consent-content {
  display: block;
  margin-bottom: 20px;
}

#simple-cookie-consent .cookie-consent-content h2 {
  font-family: var(--font-head);
  color: var(--green);
  font-size: 2rem;
  line-height: 1.1;
  margin: 0 0 10px;
}

#simple-cookie-consent .cookie-consent-content p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 8px;
  color: #fff;
}

#simple-cookie-consent .cookie-consent-content p:last-child {
  margin-bottom: 0;
}

#simple-cookie-consent .cookie-consent-link {
  margin-top: 10px !important;
}

#simple-cookie-consent .cookie-consent-content a {
  color: var(--green);
  text-decoration: underline;
}

#simple-cookie-consent .cookie-illustration {
  float: right;
  width: 100px;
  height: 100px;
  margin: 0 0 8px 16px;
  shape-outside: circle(50%);
  shape-margin: 6px;
  opacity: 0.85;
  pointer-events: none;
}

/* Bouton J'accepte full width */
#simple-cookie-consent .cookie-consent-selection {
  margin: 0;
}

#simple-cookie-consent button.cookie-consent-allow {
  display: block;
  width: 100%;
  font-family: var(--font-head);
  font-size: 2rem;
  line-height: 1;
  padding: 5px 0;
  background: var(--green);
  color: var(--purple);
  border: 2px solid var(--green);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

#simple-cookie-consent button.cookie-consent-allow:hover {
  background: var(--purple);
  color: var(--green);
  border-color: var(--green);
}

#simple-cookie-consent button.cookie-consent-allow:active {
  transform: scale(0.98);
}

@media (max-width: 520px) {
  /* Bandeau full-width collé en bas, coins arrondis seulement en haut */
  #simple-cookie-consent {
    bottom: 0;
    left: 0;
    right: 0;
  }

  #simple-cookie-consent .cookie-consent-container {
    max-width: none;
    margin-left: 0;
    padding: 20px 18px 18px;
    border-radius: 16px 16px 0 0;
  }

  #simple-cookie-consent .cookie-consent-content h2 {
    font-size: 1.625rem;
  }

  #simple-cookie-consent .cookie-consent-content p {
    font-size: 0.8125rem;
  }

  #simple-cookie-consent .cookie-illustration {
    width: 76px;
    height: 76px;
    margin: 0 0 6px 12px;
  }
}
