/* Advanced Analytics Manager — front-end consent banner styles.
   Loaded only when analytics is active and the visitor is not excluded. */

.aam-consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	background: #1d2327;
	color: #f0f0f1;
	padding: 16px 20px;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.25);
	font-size: 14px;
	line-height: 1.5;
}

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

.aam-consent-title {
	font-size: 15px;
	margin: 0 0 4px;
	color: #fff;
}

.aam-consent-desc {
	margin: 0;
	flex: 1 1 320px;
	color: #e0e0e0;
}

.aam-consent-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.aam-consent-btn {
	border: 2px solid transparent;
	border-radius: 4px;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.aam-consent-accept {
	background: #2271b1;
	color: #fff;
}

.aam-consent-accept:hover {
	background: #135e96;
}

.aam-consent-decline {
	background: transparent;
	color: #fff;
	border-color: #8c8f94;
}

.aam-consent-link {
	background: transparent;
	color: #72aee6;
	text-decoration: underline;
	border-color: transparent;
}

.aam-consent-btn:focus {
	outline: 3px solid #72aee6;
	outline-offset: 2px;
}

.aam-consent-policy {
	flex-basis: 100%;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #3c434a;
	color: #d0d0d0;
	font-size: 13px;
}

@media (max-width: 600px) {
	.aam-consent-inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.aam-consent-actions {
		width: 100%;
	}
	.aam-consent-btn {
		flex: 1 1 auto;
	}
}

@media (forced-colors: active) {
	.aam-consent-banner {
		border-top: 2px solid CanvasText;
	}
	.aam-consent-btn {
		border: 2px solid ButtonText;
	}
}
