/* BOSCANNA — Cookie Consent Banner */
.bn-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8999;
  background: rgba(18, 22, 18, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(196, 214, 90, 0.2);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bn-cookie-banner.visible { transform: translateY(0); }
.bn-cookie-banner.hidden  { transform: translateY(110%); }
.bn-cookie-text {
  flex: 1;
  min-width: 260px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}
.bn-cookie-text strong { color: #c4d65a; font-weight: 500; }
.bn-cookie-text a { color: #c4d65a; text-decoration: underline; text-underline-offset: 3px; }
.bn-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.bn-cookie-btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.bn-cookie-accept {
  background: #c4d65a;
  color: #121612;
  border-color: #c4d65a;
}
.bn-cookie-accept:hover { background: #9eb73a; border-color: #9eb73a; }
.bn-cookie-refuse {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}
.bn-cookie-refuse:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* Petit lien persistent dans le footer */
.bn-cookie-settings-link {
  font-size: 0.75rem;
  color: #6a6a64;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  font-family: inherit;
  transition: color 0.2s;
}
.bn-cookie-settings-link:hover { color: #9eb73a; }

@media (max-width: 720px) {
  .bn-cookie-banner { padding: 20px 20px 28px; gap: 16px; }
  .bn-cookie-actions { width: 100%; }
  .bn-cookie-btn { flex: 1; text-align: center; }
}
