.privacy-consent {
	position: fixed;
	bottom: 18px;
	left: 18px;
	right: 18px;
	width: calc(100% - 36px);
	max-width: 90%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
	padding: 16px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	z-index: 10001;
	display: none;
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
}
.privacy-consent p {
	margin: 0 0 12px 0;
	padding: 0;
}
.privacy-consent a {
	color: #ffd700;
	text-decoration: underline;
}
.privacy-consent a:hover {
	color: #ffed4e;
}
.privacy-consent-buttons {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
}
.privacy-consent button {
	background: rgba(255, 255, 255, 0.2);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
	transition: all 0.3s ease;
}
.privacy-consent button:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
}
.privacy-consent button.accept {
	background: rgba(76, 175, 80, 0.8);
	border-color: #4caf50;
}
.privacy-consent button.accept:hover {
	background: rgba(76, 175, 80, 1);
}
@media (max-width: 480px) {
	.privacy-consent {
		bottom: 10px;
		left: 10px;
		right: 10px;
		width: calc(100% - 20px);
		padding: 12px;
		font-size: 13px;
	}
	.privacy-consent-buttons {
		flex-direction: column;
	}
	.privacy-consent button {
		width: 100%;
		margin-bottom: 4px;
	}
}