.privacy-consent-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 20px;
	box-sizing: border-box;
	display: none;
	z-index: 99999;
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	border-top: 3px solid rgba(255,255,255,0.2);
}
.privacy-consent-popup p {
	margin: 0 0 15px 0;
	text-align: center;
}
.privacy-consent-popup a {
	color: #ffeb3b;
	text-decoration: underline;
	font-weight: bold;
}
.privacy-consent-popup a:hover {
	color: #fff;
}
.cookie-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	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: 12px 25px;
	border-radius: 25px;
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
	transition: all 0.3s ease;
	min-width: 100px;
}
.cookie-buttons button:hover {
	background: rgba(255,255,255,0.3);
	border-color: rgba(255,255,255,0.5);
	transform: translateY(-2px);
}
.cookie-buttons button:first-child {
	background: rgba(76,175,80,0.8);
	border-color: #4caf50;
}
.cookie-buttons button:first-child:hover {
	background: #4caf50;
}
.cookie-buttons button:last-child {
	background: rgba(244,67,54,0.8);
	border-color: #f44336;
}
.cookie-buttons button:last-child:hover {
	background: #f44336;
}
@media (max-width: 768px) {
	.privacy-consent-popup {
		padding: 15px;
		font-size: 13px;
	}
	.cookie-buttons {
		flex-direction: column;
		gap: 10px;
	}
	.cookie-buttons button {
		padding: 14px 20px;
		width: 100%;
	}
}
@media (min-width: 769px) {
	.privacy-consent-popup {
		display: none;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 20px 40px;
	}
	.privacy-consent-popup p {
		margin: 0;
		flex: 1;
		text-align: left;
		padding-right: 30px;
	}
	.cookie-buttons {
		flex-shrink: 0;
	}
}