/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--footer-bg);
  color: rgba(255,255,255,0.90);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  font-size: 13px;
  line-height: 1.6;
  transform: translateY(0);
  transition: transform .3s ease;
}

.cookie-banner.hidden {
  transform: translateY(110%);
}

.cookie-banner p {
  flex: 1;
  min-width: 260px;
  margin: 0;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: transform .15s, opacity .15s;
}

.cookie-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.cookie-btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-btn-info {
  background: transparent;
  color: rgba(255,255,255,0.80);
  border: 1.5px solid rgba(255,255,255,0.30);
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 14px 16px;
    gap: 12px;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
