#privacy-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
	padding: 12px 16px;
	box-sizing: border-box;
	display: none;
	z-index: 10001;
	border-top: 2px solid rgba(255,255,255,0.2);
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
#privacy-consent p {
	margin: 0 0 10px 0;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
}
#privacy-consent a {
	color: #ffffff;
	text-decoration: underline;
	font-weight: 500;
}
#privacy-consent a:hover {
	color: #f0f0f0;
}
.consent-buttons {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}
.consent-buttons button {
	background: rgba(255,255,255,0.9);
	color: #333333;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.2s ease;
	min-width: 80px;
}
.consent-buttons button:hover {
	background: #ffffff;
	transform: translateY(-1px);
}
.consent-buttons button:active {
	transform: translateY(0);
}
@media (max-width: 480px) {
	#privacy-consent {
		padding: 10px 12px;
	}
	#privacy-consent p {
		font-size: 13px;
	}
	.consent-buttons {
		gap: 6px;
	}
	.consent-buttons button {
		padding: 7px 12px;
		font-size: 12px;
	}
}
@media (min-width: 768px) {
	#privacy-consent {
		padding: 16px 24px;
		display: none;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
	#privacy-consent p {
		margin: 0;
		flex: 1;
		text-align: left;
		padding-right: 20px;
	}
	.consent-buttons {
		flex-shrink: 0;
	}
}