.privacy-consent-popup {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 71%;
	max-width: 800px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 20px;
	box-sizing: border-box;
	z-index: 10000;
	border-radius: 12px 12px 0 0;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
	display: none;
}
.privacy-consent-popup p {
	margin: 0 0 15px 0;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
}
.privacy-consent-popup a {
	color: #ffd700;
	text-decoration: underline;
	font-weight: bold;
}
.privacy-consent-popup a:hover {
	color: #ffed4e;
}
.cookie-buttons {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}
.cookie-buttons button {
	background: rgba(255,255,255,0.2);
	color: white;
	border: 2px solid rgba(255,255,255,0.3);
	padding: 10px 20px;
	border-radius: 25px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	min-width: 90px;
}
.cookie-buttons button:first-child {
	background: rgba(255,255,255,0.9);
	color: #667eea;
}
.cookie-buttons button:hover {
	background: rgba(255,255,255,0.4);
	transform: translateY(-2px);
}
.cookie-buttons button:first-child:hover {
	background: white;
}
@media (max-width: 768px) {
	.privacy-consent-popup {
		width: 95%;
		padding: 15px;
	}
	.privacy-consent-popup p {
		font-size: 13px;
	}
	.cookie-buttons {
		gap: 8px;
	}
	.cookie-buttons button {
		padding: 8px 16px;
		font-size: 13px;
		min-width: 80px;
	}
}