/* ── COOKIE BANNER CONDIVISO ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #0d1117;
  border-top: 1px solid rgba(201,168,76,0.25);
  padding: 1.2rem 2rem;
  padding-bottom: calc(1.2rem + env(safe-area-inset-bottom));
  display: none;
  align-items: center; gap: 1.5rem; flex-wrap: wrap;
  font-family: 'Georgia', serif;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
}
#cookie-banner.visible { display: flex; }
#cookie-banner p {
  flex: 1; min-width: 260px;
  font-size: 0.85rem; color: #D4B85A; line-height: 1.6; margin: 0;
}
#cookie-banner a { color: #C9A84C; text-decoration: underline; }
.cookie-btn-wrap {
  display: flex; gap: 0.6rem; flex-shrink: 0; flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Georgia', serif; font-size: 0.78rem;
  letter-spacing: 0.08em; padding: 0.5rem 1.2rem;
  cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap;
  min-height: 44px;
}
.cookie-btn-accept { background: #C9A84C; color: #080808; }
.cookie-btn-accept:hover { background: #E8C97A; }
.cookie-btn-reject { background: transparent; color: #8B6914; border: 1px solid #2A1E00; }
.cookie-btn-reject:hover { border-color: #C9A84C; color: #C9A84C; }
.cookie-btn-settings { background: transparent; color: #8B6914; border: 1px solid #2A1E00; }
.cookie-btn-settings:hover { border-color: #C9A84C; color: #C9A84C; }

@media (max-width: 640px) {
  #cookie-banner {
    padding: 0.9rem 1rem;
    padding-bottom: calc(0.9rem + env(safe-area-inset-bottom));
    gap: 0.8rem;
    max-height: 50vh;
    overflow-y: auto;
  }
  #cookie-banner p {
    flex: 1 1 100%;
    min-width: 0;
    font-size: 0.78rem;
    line-height: 1.5;
  }
  .cookie-btn-wrap {
    flex: 1 1 100%;
    gap: 0.5rem;
  }
  .cookie-btn {
    flex: 1;
    padding: 0.55rem 0.6rem;
    font-size: 0.72rem;
    text-align: center;
  }
}
