.privacy-consent {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	width: calc(100% - 40px);
	max-width: 90%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.3);
	z-index: 10001;
	display: none;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 14px;
	line-height: 1.5;
}
.privacy-consent p {
	margin: 0 0 15px 0;
	color: white;
}
.privacy-consent a {
	color: #ffd700;
	text-decoration: underline;
	font-weight: 500;
}
.privacy-consent a:hover {
	color: #ffed4e;
}
.privacy-consent .cookie-buttons {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	flex-wrap: wrap;
}
.privacy-consent button {
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	min-width: 80px;
}
.privacy-consent .accept-btn {
	background: #4CAF50;
	color: white;
}
.privacy-consent .accept-btn:hover {
	background: #45a049;
	transform: translateY(-1px);
}
.privacy-consent .decline-btn {
	background: rgba(255,255,255,0.2);
	color: white;
	border: 1px solid rgba(255,255,255,0.3);
}
.privacy-consent .decline-btn:hover {
	background: rgba(255,255,255,0.3);
	transform: translateY(-1px);
}
@media (max-width: 480px) {
	.privacy-consent {
		bottom: 10px;
		left: 10px;
		right: 10px;
		width: calc(100% - 20px);
		padding: 15px;
		font-size: 13px;
	}
	.privacy-consent .cookie-buttons {
		justify-content: center;
	}
	.privacy-consent button {
		flex: 1;
		min-width: 70px;
		padding: 12px 16px;
	}
}