/* Cookie / marketing consent banner (GA, GTM, Simpli.fi) */
#dtp-consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100000;
	background: #1a1a1a;
	color: #f5f5f5;
	padding: 16px 20px;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
	font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.45;
}

#dtp-consent-banner[hidden] {
	display: none !important;
}

.dtp-consent-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 20px;
}

.dtp-consent-copy {
	flex: 1 1 320px;
	margin: 0;
}

.dtp-consent-copy a {
	color: #fff;
	text-decoration: underline;
}

.dtp-consent-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.dtp-consent-btn {
	appearance: none;
	border: 0;
	cursor: pointer;
	font: inherit;
	font-weight: 600;
	padding: 10px 18px;
	border-radius: 2px;
	line-height: 1.2;
}

.dtp-consent-btn-accept {
	background: #cf1b1b;
	color: #fff;
}

.dtp-consent-btn-accept:hover,
.dtp-consent-btn-accept:focus {
	background: #b01515;
	outline: none;
}

.dtp-consent-btn-reject {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.55);
}

.dtp-consent-btn-reject:hover,
.dtp-consent-btn-reject:focus {
	border-color: #fff;
	outline: none;
}

.dtp-consent-manage {
	position: fixed;
	left: 12px;
	bottom: 12px;
	z-index: 99999;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 2px;
	color: #444;
	cursor: pointer;
	font: inherit;
	font-size: 12px;
	text-decoration: none;
	padding: 6px 10px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.dtp-consent-manage:hover,
.dtp-consent-manage:focus {
	color: #cf1b1b;
	border-color: #cf1b1b;
	outline: none;
}

#dtp-consent-banner:not([hidden]) ~ .dtp-consent-manage {
	display: none;
}

@media (max-width: 600px) {
	#dtp-consent-banner {
		padding: 14px 14px 18px;
	}

	.dtp-consent-actions {
		width: 100%;
	}

	.dtp-consent-btn {
		flex: 1 1 auto;
		text-align: center;
	}
}
