.privacy-consent-popup {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	left: 20px;
	max-width: 450px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #333;
	padding: 25px;
	box-sizing: border-box;
	border: 1px solid rgba(255, 255, 255, 0.3);
}
.privacy-consent-popup.active {
	display: block;
}
.privacy-consent-popup h2 {
	font-size: 1.6em;
	margin-top: 0;
	margin-bottom: 15px;
	color: #222;
	font-weight: 600;
}
.privacy-consent-popup p {
	font-size: 0.95em;
	line-height: 1.5;
	margin-bottom: 20px;
}
.privacy-consent-popup .cookie-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}
.privacy-consent-popup button {
	padding: 12px 20px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.9em;
	font-weight: 600;
	transition: all 0.2s ease;
	flex-grow: 1;
	min-width: 140px;
}
.privacy-consent-popup .btn-accept {
	background: linear-gradient(135deg, #4CAF50, #66BB6A);
	color: white;
	box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}
.privacy-consent-popup .btn-accept:hover {
	background: linear-gradient(135deg, #66BB6A, #4CAF50);
	box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}
.privacy-consent-popup .btn-reject,
.privacy-consent-popup .btn-back {
	background: #e0e0e0;
	color: #555;
}
.privacy-consent-popup .btn-reject:hover,
.privacy-consent-popup .btn-back:hover {
	background: #d0d0d0;
	color: #333;
}
.privacy-consent-popup .btn-manage,
.privacy-consent-popup .btn-save {
	background: #007bff;
	color: white;
	box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}
.privacy-consent-popup .btn-manage:hover,
.privacy-consent-popup .btn-save:hover {
	background: #0056b3;
	box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.privacy-consent-popup .cookie-settings {
	display: none;
	margin-top: 20px;
}
.privacy-consent-popup .cookie-settings.active {
	display: block;
}
.privacy-consent-popup .setting-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.privacy-consent-popup .setting-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.privacy-consent-popup .setting-info h3 {
	margin: 0;
	font-size: 1.1em;
	color: #333;
}
.privacy-consent-popup .setting-info p {
	margin: 5px 0 0;
	font-size: 0.8em;
	color: #666;
}
.privacy-consent-popup .toggle-switch {
	position: relative;
	display: inline-block;
	width: 45px;
	height: 25px;
}
.privacy-consent-popup .toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.privacy-consent-popup .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
	border-radius: 25px;
}
.privacy-consent-popup .slider:before {
	position: absolute;
	content: "";
	height: 19px;
	width: 19px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}
.privacy-consent-popup input:checked + .slider {
	background-color: #4CAF50;
}
.privacy-consent-popup input:focus + .slider {
	box-shadow: 0 0 1px #4CAF50;
}
.privacy-consent-popup input:checked + .slider:before {
	transform: translateX(20px);
}
.privacy-consent-popup .setting-item.essential .toggle-switch input:disabled + .slider {
	background-color: #a0a0a0;
	cursor: not-allowed;
}
.privacy-consent-popup .setting-item.essential .toggle-switch input:disabled + .slider:before {
	background-color: #e0e0e0;
}
.privacy-consent-popup .close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 1.5em;
	color: #888;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background 0.2s ease, color 0.2s ease;
}
.privacy-consent-popup .close-btn:hover {
	background: rgba(0, 0, 0, 0.05);
	color: #555;
}

@media (min-width: 768px) {
	.privacy-consent-popup {
		bottom: 30px;
		right: 30px;
		left: auto;
		max-width: 500px;
	}
}
@media (max-width: 480px) {
	.privacy-consent-popup {
		bottom: 10px;
		left: 10px;
		right: 10px;
		padding: 20px;
	}
	.privacy-consent-popup h2 {
		font-size: 1.4em;
	}
	.privacy-consent-popup p {
		font-size: 0.9em;
	}
	.privacy-consent-popup button {
		width: 100%;
		min-width: unset;
	}
	.privacy-consent-popup .cookie-actions {
		flex-direction: column;
	}
}