.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}
.cookie-banner.zichtbaar {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-banner-modal {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px 22px;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.cookie-banner-modal h3 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.35;
}
.cookie-banner-modal p {
  font-size: 0.875rem;
  color: #6C6C6C;
  line-height: 1.7;
  margin: 0 0 12px;
}
.cookie-beleid-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #d67450;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.cookie-beleid-link:hover { color: #c3542b; }

.cookie-knoppen {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn-accepteer {
  background: #d67450;
  color: #fff;
}
.cookie-btn-accepteer:hover { background: #c3542b; }
.cookie-btn-weiger {
  background: #1a1a1a;
  color: #fff;
}
.cookie-btn-weiger:hover { background: #333; }
.cookie-btn-instellingen {
  background: transparent;
  color: #888;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  text-align: center;
}
.cookie-btn-instellingen:hover { color: #d67450; }

/* MODAL (instellingen) */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.cookie-modal-overlay.zichtbaar { display: flex; }
.cookie-modal {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  max-width: 520px;
  width: 100%;
  color: #252525;
}
.cookie-modal h3 { margin: 0 0 16px; font-family: 'Merriweather', Georgia, serif; font-weight: 400; font-size: 1.2rem; }
.cookie-categorie { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #eee; }
.cookie-categorie:last-of-type { border-bottom: none; margin-bottom: 24px; }
.cookie-categorie-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.cookie-categorie-header strong { font-size: 0.9rem; }
.cookie-categorie p { font-size: 0.8rem; color: #6C6C6C; margin: 0; }
.cookie-toggle { position: relative; width: 42px; height: 24px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute; inset: 0;
  background: #ccc; border-radius: 24px; cursor: pointer;
  transition: 0.2s;
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: #d67450; }
.cookie-toggle-slider::before {
  content: ''; position: absolute;
  width: 18px; height: 18px; border-radius: 50%;
  background: white; left: 3px; top: 3px;
  transition: 0.2s;
}
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.6; cursor: not-allowed; }
.cookie-modal-knoppen { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.cookie-modal-knoppen button { padding: 10px 20px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; cursor: pointer; border: none; }
.cookie-modal-opslaan { background: #d67450; color: #fff; }
.cookie-modal-opslaan:hover { background: #c3542b; }
.cookie-modal-alles { background: #1a1a1a; color: #fff; }
.cookie-modal-alles:hover { background: #333; }

@media (max-width: 480px) {
  .cookie-banner-modal { padding: 28px 20px 22px; }
  .cookie-modal { padding: 24px 20px; }
}
