/* ============================================================
   COOKIE BANNER — Villa I Due Cippi
   ============================================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(28, 25, 23, 0.97);
  border-top: 1px solid #C4A882;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

#cookie-banner.visible {
  transform: translateY(0);
}

#cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 220px;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

#cookie-banner a {
  color: #C4A882;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

#cookie-banner a:hover,
#cookie-banner a:focus-visible {
  color: #fff;
  outline: none;
}

#cookie-btn-accept {
  flex-shrink: 0;
  background: #C4A882;
  color: #1c1917;
  border: none;
  padding: 0.55rem 1.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  line-height: 1;
}

#cookie-btn-accept:hover,
#cookie-btn-accept:focus-visible {
  background: #fff;
  color: #1c1917;
  outline: none;
}

/* ── Footer legal links ─────────────────────────────── */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.footer-legal a {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #C4A882;
  outline: none;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.65rem;
}

@media (max-width: 600px) {
  #cookie-banner {
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
  }

  #cookie-btn-accept {
    text-align: center;
    padding: 0.7rem;
  }
}
