/* ============================================================
   FEDERCARDIO CAMPANIA - Cookie Banner
   ============================================================ */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--ink, #111418);
  color: rgba(255,255,255,.88);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  padding: 22px 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-sans, 'Outfit', system-ui, sans-serif);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner__text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
  margin: 0;
}
.cookie-banner__text a {
  color: var(--red, #B01828);
  text-decoration: underline;
  font-weight: 600;
}
.cookie-banner__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.cookie-banner__btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background .2s ease, opacity .2s ease;
}
.cookie-banner__btn--primary {
  background: var(--red, #B01828);
  color: white;
}
.cookie-banner__btn--primary:hover { background: var(--red-light, #D42030); }

@media (max-width: 480px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px 18px; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__btn { flex: 1; }
}
