/* ===============================
   COOKIE BANNER — AETERNUM
   Scuro · Elegante · Leggibile
================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);

  color: #f2f2f2;
  z-index: 9999;

  box-shadow:
    0 -12px 35px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* CONTENITORE */
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;

  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* TESTO */
.cookie-banner p,
.cookie-banner small {
  color: #e8e8e8;
  line-height: 1.5;
  text-shadow: 0 1px 0 rgba(0,0,0,0.6);
}

/* LINK */
.cookie-inner a {
  color: var(--accent-soft); /* oro satinato */
  text-decoration: underline;
}

.cookie-inner a:hover {
  opacity: 0.9;
}

/* AZIONI */
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* BOTTONI BASE */
.cookie-actions button {
  padding: 9px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;

  font-size: 0.9rem;
  font-weight: 500;

  box-shadow:
    0 4px 12px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.25);

  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

/* HOVER */
.cookie-actions button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* ACCETTA */
.cookie-actions button[data-cookie="accept"] {
  background: var(--accent); /* vinaccia */
  color: #fff;
}

/* RIFIUTA */
.cookie-actions button[data-cookie="reject"] {
  background: #3a3a3a;
  color: #f0f0f0;
}

/* MOBILE */
@media (max-width: 640px) {
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
