.cookie-notice-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.cookie-notice-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
}
.cookie-notice-box {
	position: relative;
	background: linear-gradient(135deg, #2a2e3a, #1a1e2a);
	color: #e0e0e0;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
	padding: 25px;
	max-width: 480px;
	width: 90%;
	text-align: center;
	transform: scale(0.95);
	opacity: 0;
	animation: fadeInScale 0.3s ease-out forwards;
}
@keyframes fadeInScale {
	to {
		transform: scale(1);
		opacity: 1;
	}
}
.consent-title {
	font-size: 1.6em;
	margin-bottom: 15px;
	color: #fff;
	font-weight: 600;
}
.consent-description {
	font-size: 0.95em;
	line-height: 1.5;
	margin-bottom: 25px;
	color: #b0b0b0;
}
.consent-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 20px;
}
.btn {
	background: #4a90e2;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 22px;
	font-size: 0.9em;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.1s ease;
	flex-grow: 1;
	max-width: 180px;
	font-weight: 500;
}
.btn:hover {
	background: #357bd8;
	transform: translateY(-1px);
}
.btn-reject {
	background: #6c757d;
}
.btn-reject:hover {
	background: #5a6268;
}
.btn-settings, .btn-back {
	background: none;
	border: 1px solid #6c757d;
	color: #a0a0a0;
}
.btn-settings:hover, .btn-back:hover {
	background: rgba(108, 117, 125, 0.2);
	border-color: #5a6268;
	color: #fff;
}
.setting-group {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 15px;
	text-align: left;
	transition: background 0.2s ease;
}
.setting-group:hover {
	background: rgba(255, 255, 255, 0.12);
}
.setting-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}
.setting-label {
	font-weight: 600;
	color: #fff;
	font-size: 1em;
	cursor: pointer;
}
.setting-description {
	font-size: 0.85em;
	color: #c0c0c0;
	line-height: 1.4;
}
input[type="checkbox"] {
	position: relative;
	width: 40px;
	height: 20px;
	-webkit-appearance: none;
	appearance: none;
	background: #6c757d;
	outline: none;
	border-radius: 20px;
	cursor: pointer;
	transition: background 0.2s;
	flex-shrink: 0;
}
input[type="checkbox"]:checked {
	background: #4a90e2;
}
input[type="checkbox"]::before {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	top: 2px;
	left: 2px;
	background: #fff;
	transform: translateX(0);
	transition: transform 0.2s;
}
input[type="checkbox"]:checked::before {
	transform: translateX(20px);
}
input[type="checkbox"]:disabled {
	cursor: not-allowed;
	opacity: 0.7;
}
input[type="checkbox"]:disabled:checked {
	background: #3a7bd5;
}
@media (max-width: 600px) {
	.cookie-notice-box {
		max-width: 95%;
		padding: 20px;
	}
	.consent-title {
		font-size: 1.4em;
	}
	.consent-description {
		font-size: 0.9em;
	}
	.btn {
		width: 100%;
		max-width: none;
		padding: 10px 18px;
	}
	.consent-actions {
		flex-direction: column;
	}
}
@media (min-width: 601px) and (max-width: 900px) {
	.cookie-notice-box {
		max-width: 550px;
	}
	.btn {
		flex-basis: 48%;
	}
}