.privacy-consent-popup {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 90%;
	max-width: 400px;
	background: linear-gradient(135deg, #2a2a4a, #4a2a4a);
	color: #e0e0e0;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
	z-index: 9999;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	padding: 25px;
	box-sizing: border-box;
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
	transform: translateY(20px);
	opacity: 0;
}

.privacy-consent-popup.show {
	transform: translateY(0);
	opacity: 1;
	display: block;
}

.privacy-consent-popup h2 {
	font-size: 1.6em;
	margin-top: 0;
	margin-bottom: 15px;
	color: #a0e0ff;
}

.privacy-consent-popup p {
	font-size: 0.95em;
	line-height: 1.5;
	margin-bottom: 20px;
}

.privacy-consent-popup .button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 15px;
}

.privacy-consent-popup button {
	flex: 1;
	padding: 12px 18px;
	border: none;
	border-radius: 8px;
	font-size: 0.9em;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
	font-weight: 600;
}

.privacy-consent-popup button.accept-all {
	background-color: #4CAF50;
	color: white;
}

.privacy-consent-popup button.accept-all:hover {
	background-color: #45a049;
	transform: translateY(-1px);
}

.privacy-consent-popup button.reject-all {
	background-color: #f44336;
	color: white;
}

.privacy-consent-popup button.reject-all:hover {
	background-color: #da190b;
	transform: translateY(-1px);
}

.privacy-consent-popup button.manage-settings {
	background-color: #5c6bc0;
	color: white;
}

.privacy-consent-popup button.manage-settings:hover {
	background-color: #4856a3;
	transform: translateY(-1px);
}

.privacy-consent-popup .privacy-link {
	display: block;
	text-align: center;
	font-size: 0.85em;
	color: #a0e0ff;
	text-decoration: none;
	margin-top: 10px;
}

.privacy-consent-popup .privacy-link:hover {
	text-decoration: underline;
}

.privacy-consent-settings {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #2a2a4a, #4a2a4a);
	color: #e0e0e0;
	border-radius: 12px;
	padding: 25px;
	box-sizing: border-box;
	overflow-y: auto;
}

.privacy-consent-settings.show {
	display: block;
}

.privacy-consent-settings h3 {
	font-size: 1.4em;
	margin-top: 0;
	margin-bottom: 10px;
	color: #a0e0ff;
}

.privacy-consent-settings .setting-description {
	font-size: 0.85em;
	line-height: 1.4;
	margin-bottom: 20px;
	color: #c0c0c0;
}

.privacy-consent-settings .cookie-category {
	margin-bottom: 18px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-consent-settings .cookie-category:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.privacy-consent-settings .category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.privacy-consent-settings .category-header h4 {
	font-size: 1.1em;
	margin: 0;
	color: #a0e0ff;
}

.privacy-consent-settings .category-toggle {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 22px;
}

.privacy-consent-settings .category-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}

.privacy-consent-settings .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
	border-radius: 22px;
}

.privacy-consent-settings .slider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}

.privacy-consent-settings input:checked + .slider {
	background-color: #4CAF50;
}

.privacy-consent-settings input:focus + .slider {
	box-shadow: 0 0 1px #4CAF50;
}

.privacy-consent-settings input:checked + .slider:before {
	transform: translateX(18px);
}

.privacy-consent-settings input:disabled + .slider {
	opacity: 0.6;
	cursor: not-allowed;
}

.privacy-consent-settings .category-description {
	font-size: 0.8em;
	color: #c0c0c0;
	line-height: 1.3;
}

.privacy-consent-settings .save-preferences {
	width: 100%;
	padding: 12px 18px;
	border: none;
	border-radius: 8px;
	font-size: 1em;
	cursor: pointer;
	background-color: #4CAF50;
	color: white;
	font-weight: 600;
	transition: background-color 0.2s ease, transform 0.1s ease;
	margin-top: 20px;
}

.privacy-consent-settings .save-preferences:hover {
	background-color: #45a049;
	transform: translateY(-1px);
}

@media (max-width: 768px) {
	.privacy-consent-popup {
		width: calc(100% - 40px);
		bottom: 10px;
		left: 10px;
		right: 10px;
		max-width: none;
	}

	.privacy-consent-popup .button-group {
		flex-direction: column;
	}

	.privacy-consent-popup button {
		width: 100%;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.privacy-consent-popup {
		max-width: 350px;
	}
}