/*
	Cookie consent banner — added for Shepherd Tech Solutions
	Uses the template's existing button styles (.button / .button.alt)
	so it matches the rest of the site without introducing a new palette.
*/

#cookie-banner {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	max-width: 640px;
	margin: 0 auto;
	background: #2b2b2e;
	color: rgba(255, 255, 255, 0.85);
	border-radius: 6px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
	padding: 1.5em 1.75em;
	z-index: 10000;
	font-size: 0.9em;
	line-height: 1.6em;
}

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

#cookie-banner p {
	margin: 0 0 1em 0;
}

#cookie-banner a {
	color: #ffffff;
	text-decoration: underline;
}

#cookie-banner .cookie-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75em;
}

#cookie-banner .button {
	min-width: 0;
	line-height: 2.6em;
	padding: 0 1.25em;
	font-size: 0.85em;
}

#cookie-banner .button.alt {
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
	color: #ffffff;
}

	#cookie-banner .button.alt:hover {
		background: rgba(255, 255, 255, 0.08);
	}

@media screen and (max-width: 480px) {
	#cookie-banner {
		left: 12px;
		right: 12px;
		bottom: 12px;
		padding: 1.25em 1.5em;
	}
}
