.privacy-consent-popup {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 59%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 20px;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
	border-radius: 10px 10px 0 0;
	z-index: 9999;
	display: none;
	box-sizing: border-box;
}
.privacy-consent-popup p {
	margin: 0 0 15px 0;
	font-size: 14px;
	line-height: 1.4;
}
.privacy-consent-popup a {
	color: #ffd700;
	text-decoration: underline;
}
.privacy-consent-popup .cookie-buttons {
	display: flex;
	gap: 10px;
	justify-content: center;
}
.privacy-consent-popup button {
	padding: 8px 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 13px;
	font-weight: bold;
	transition: all 0.3s ease;
}
.privacy-consent-popup .accept-btn {
	background: #4CAF50;
	color: white;
}
.privacy-consent-popup .decline-btn {
	background: #f44336;
	color: white;
}
.privacy-consent-popup button:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}
@media (max-width: 768px) {
	.privacy-consent-popup {
		width: 95%;
		padding: 15px;
	}
	.privacy-consent-popup p {
		font-size: 13px;
	}
	.privacy-consent-popup button {
		padding: 6px 12px;
		font-size: 12px;
	}
}