.privacy-consent-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 12px 16px;
	box-sizing: border-box;
	display: none;
	z-index: 99999;
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.privacy-consent-popup.show {
	display: block;
}
.privacy-consent-popup .cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.privacy-consent-popup .cookie-text {
	flex: 1;
	min-width: 280px;
	margin: 0;
}
.privacy-consent-popup .cookie-text a {
	color: #ffd700;
	text-decoration: underline;
	transition: color 0.3s ease;
}
.privacy-consent-popup .cookie-text a:hover {
	color: #ffed4e;
}
.privacy-consent-popup .cookie-buttons {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}
.privacy-consent-popup .cookie-btn {
	background: rgba(255,255,255,0.2);
	color: white;
	border: 1px solid rgba(255,255,255,0.3);
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s ease;
	white-space: nowrap;
}
.privacy-consent-popup .cookie-btn:hover {
	background: rgba(255,255,255,0.3);
	transform: translateY(-1px);
}
.privacy-consent-popup .cookie-btn.accept {
	background: #4CAF50;
	border-color: #45a049;
}
.privacy-consent-popup .cookie-btn.accept:hover {
	background: #45a049;
}
@media (max-width: 768px) {
	.privacy-consent-popup {
		padding: 16px;
	}
	.privacy-consent-popup .cookie-content {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
	.privacy-consent-popup .cookie-text {
		min-width: auto;
		text-align: center;
	}
	.privacy-consent-popup .cookie-buttons {
		justify-content: center;
	}
	.privacy-consent-popup .cookie-btn {
		flex: 1;
		max-width: 120px;
	}
}