/* Cookie-consent — onderbalk + voorkeurenpaneel (De Moestuin huisstijl) */
.dm-consent {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 9999;
	background: #FBF7F0;
	border-top: 1px solid rgba(76, 70, 62, .15);
	box-shadow: 0 -6px 24px rgba(76, 70, 62, .12);
	padding: 1rem 1.25rem;
}
.dm-consent[hidden], .dm-consent-panel[hidden] { display: none; }
.dm-consent__inner {
	max-width: 1100px; margin: 0 auto;
	display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
	justify-content: space-between;
}
.dm-consent__text { margin: 0; flex: 1 1 320px; color: #4C463E; font-size: .95rem; line-height: 1.5; }
.dm-consent__text a { color: #CF783B; text-decoration: underline; }
.dm-consent__actions { display: flex; flex-wrap: wrap; gap: .6rem; }

/* Ghost-knop (secundair) naast de bestaande gevulde .dm-btn */
.dm-btn--ghost {
	background: transparent;
	color: #4C463E;
	border: 1px solid rgba(76, 70, 62, .35);
}
.dm-btn--ghost:hover { background: rgba(76, 70, 62, .07); }

/* Voorkeurenpaneel (modaal) */
.dm-consent-panel {
	position: fixed; inset: 0; z-index: 10000;
	background: rgba(36, 32, 28, .55);
	display: flex; align-items: center; justify-content: center;
	padding: 1.25rem;
}
.dm-consent-panel__card {
	background: #FBF7F0; border-radius: 18px;
	max-width: 540px; width: 100%;
	max-height: 90vh; overflow: auto;
	padding: 1.75rem 1.75rem 1.5rem;
	box-shadow: 0 20px 60px rgba(36, 32, 28, .35);
}
.dm-consent-panel__title { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.9rem; color: #4C463E; margin: 0 0 .35rem; }
.dm-consent-panel__lead { margin: 0 0 1.1rem; color: #4C463E; font-size: .95rem; }
.dm-consent-panel__lead a, .dm-consent-cat__desc a { color: #CF783B; text-decoration: underline; }
.dm-consent-cat { border-top: 1px solid rgba(76, 70, 62, .15); padding: .85rem 0; }
.dm-consent-cat__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; }
.dm-consent-cat__name { font-weight: 600; color: #4C463E; }
.dm-consent-cat__desc { margin: .35rem 0 0; font-size: .85rem; color: #6b6258; }
.dm-consent-cat input[type="checkbox"] { width: 20px; height: 20px; accent-color: #CF783B; }
.dm-consent-panel__actions { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: flex-end; margin-top: 1.25rem; }

@media (max-width: 600px) {
	.dm-consent__inner { flex-direction: column; align-items: stretch; }
	.dm-consent__actions { justify-content: stretch; }
	.dm-consent__actions .dm-btn { flex: 1 1 auto; min-height: 44px; }
}
@media (prefers-reduced-motion: no-preference) {
	.dm-consent { animation: dm-consent-up .3s ease-out; }
	@keyframes dm-consent-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
}
