/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e4e4e4;
  z-index: 999;
  padding: 1.25rem 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
}

.cookie-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #6b6b6b;
  max-width: 640px;
}

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

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border: 1px solid #1c1c1c;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #1c1c1c;
  color: #fff;
}

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

.cookie-btn-reject {
  background: #fff;
  color: #1c1c1c;
}

.cookie-btn-reject:hover {
  background: #f5f5f5;
}

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; gap: 1rem; }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
