

/* ===== COOKIE CONSENT BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 1rem 1rem;
  pointer-events: none;
}

#cookie-banner.hidden { display: none; }

.cookie-inner {
  pointer-events: all;
  max-width: 880px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e2e0da;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  animation: slideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #f7f4ee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-top: 2px;
}

.cookie-body { flex: 1; min-width: 0; }

.cookie-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  color: #111;
}

.cookie-text {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.cookie-text a {
  color: #444;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Buttons */
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn-accept-all {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 0.55rem 1.2rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.15s;
}

.btn-accept-all:hover { background: #333; }

.btn-decline {
  background: transparent;
  color: #999;
  border: 1px solid transparent;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: color 0.15s;
  margin-left: auto;
}

.btn-decline:hover { color: #555; }

