/* ============================================================
   Cookie consent banner — minimal, brand-matched, mobile-first
   ============================================================ */

.dcw-banner {
	position: fixed;
	bottom: 16px; left: 16px; right: 16px;
	z-index: 99999;
	font-family: 'Inter Tight', system-ui, sans-serif;
}
@media (min-width: 768px) {
	.dcw-banner {
		left: 24px; right: auto; bottom: 24px;
		max-width: 480px;
	}
}

.dcw-banner__panel {
	background: #ffffff;
	color: #1c1917;
	border-radius: 16px;
	box-shadow: 0 30px 60px -10px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.04);
	padding: 22px 22px 18px;
	animation: dcw-slide-in 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dcw-slide-in {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: none; }
}

.dcw-banner__title {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: #1c1917;
}
.dcw-banner__text {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: #57534e;
}
.dcw-banner__links {
	display: inline-flex;
	gap: 12px;
	margin-left: 4px;
}
.dcw-banner__links a {
	color: #c2410c;
	text-decoration: underline;
}

.dcw-banner__categories {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 18px 0 16px;
	padding: 16px;
	background: #fafaf9;
	border-radius: 12px;
	border: 1px solid #e7e5e4;
}
.dcw-cat {
	display: grid;
	grid-template-columns: 18px 1fr;
	grid-template-rows: auto auto;
	gap: 4px 12px;
	font-size: 13px;
	cursor: pointer;
}
.dcw-cat input { grid-row: 1 / 3; margin-top: 3px; accent-color: #c2410c; }
.dcw-cat__title { font-weight: 600; color: #1c1917; }
.dcw-cat__desc  { color: #78716c; font-size: 12px; line-height: 1.4; }

.dcw-banner__actions {
	display: flex;
	gap: 8px;
	margin-top: 14px;
	flex-wrap: wrap;
}
.dcw-btn {
	flex: 1;
	min-width: 100px;
	padding: 11px 16px;
	font-size: 13px;
	font-weight: 500;
	border-radius: 999px;
	border: 0;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
}
.dcw-btn--primary { background: #1c1917; color: #fff; }
.dcw-btn--primary:hover { background: #c2410c; }
.dcw-btn--ghost   { background: transparent; color: #57534e; }
.dcw-btn--ghost:hover { color: #1c1917; background: #f5f5f4; }

@media (prefers-reduced-motion: reduce) {
	.dcw-banner__panel { animation: none; }
}
