/* Bannière de consentement cookies — site vitrine Alyo.
   Thème clair « papier » + vert zest, boutons pilule, aucun aplat noir. */
.alyo-cc {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(680px, calc(100% - 32px));
  background: #ffffff;
  color: #1a2b22;
  border: 1px solid #e3e8e4;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(20, 40, 30, .16);
  padding: 20px 22px;
  font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  font-size: 14.5px;
  line-height: 1.5;
  animation: alyo-cc-in .25s ease-out;
}
@keyframes alyo-cc-in {
  from { opacity: 0; transform: translate(-50%, 16px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.alyo-cc__title {
  font-family: 'Sora', 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px;
}
.alyo-cc__text {
  margin: 0 0 16px;
  color: #46564e;
}
.alyo-cc__text a {
  color: #0f8a5f;
  text-decoration: underline;
}
.alyo-cc__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.alyo-cc__btn {
  flex: 1 1 auto;
  min-width: 140px;
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  transition: filter .15s, background .15s;
}
.alyo-cc__btn--accept {
  background: #34E5A0;
  color: #0a2318;
}
.alyo-cc__btn--accept:hover { filter: brightness(.95); }
.alyo-cc__btn--refuse {
  background: #ffffff;
  color: #1a2b22;
  border-color: #cdd6d0;
}
.alyo-cc__btn--refuse:hover { background: #f4f7f5; }

@media (max-width: 520px) {
  .alyo-cc {
    bottom: 0;
    width: 100%;
    border-radius: 18px 18px 0 0;
  }
}
