.privacy-consent-modal {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: calc(100% - 40px);
	max-width: 450px;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	color: #333;
	z-index: 100;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
	.privacy-consent-modal {
		bottom: 0;
		right: 0;
		width: 100%;
		max-width: none;
		border-radius: 12px 12px 0 0;
	}
}
.privacy-consent-modal-header {
	padding: 20px 25px;
	background-color: #f8f9fa;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.privacy-consent-modal-header h3 {
	margin: 0;
	font-size: 1.35em;
	color: #222;
	font-weight: 600;
}
.privacy-consent-modal-body {
	padding: 25px;
	max-height: 400px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.privacy-consent-modal-body p {
	font-size: 0.95em;
	line-height: 1.6;
	margin-bottom: 20px;
}
.privacy-consent-modal-footer {
	padding: 20px 25px;
	border-top: 1px solid #eee;
	background-color: #f8f9fa;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}
.privacy-consent-modal-button {
	padding: 12px 22px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.95em;
	font-weight: 600;
	transition: background-color 0.2s ease, transform 0.1s ease;
}
.privacy-consent-modal-button:hover {
	transform: translateY(-1px);
}
.privacy-consent-modal-button.primary {
	background-color: #007bff;
	color: #fff;
}
.privacy-consent-modal-button.primary:hover {
	background-color: #0056b3;
}
.privacy-consent-modal-button.secondary {
	background-color: #e9ecef;
	color: #495057;
}
.privacy-consent-modal-button.secondary:hover {
	background-color: #dae0e5;
}
.privacy-consent-settings {
	display: none;
}
.cookie-category {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f0f0f0;
}
.cookie-category:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.cookie-category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	cursor: pointer;
}
.cookie-category-header h4 {
	margin: 0;
	font-size: 1.1em;
	color: #333;
	font-weight: 600;
}
.cookie-category-header .toggle-switch {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 28px;
}
.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.toggle-switch .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
	border-radius: 28px;
}
.toggle-switch .slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}
.toggle-switch input:checked + .slider {
	background-color: #007bff;
}
.toggle-switch input:focus + .slider {
	box-shadow: 0 0 1px #007bff;
}
.toggle-switch input:checked + .slider:before {
	transform: translateX(20px);
}
.cookie-category-description {
	font-size: 0.85em;
	color: #666;
	line-height: 1.5;
	margin-top: 5px;
	display: none;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}
.cookie-category-description.expanded {
	max-height: 150px;
}
.cookie-category-header .always-active {
	font-size: 0.8em;
	color: #6c757d;
	margin-left: 10px;
	font-weight: normal;
}
.privacy-consent-modal a {
	color: #007bff;
	text-decoration: none;
}
.privacy-consent-modal a:hover {
	text-decoration: underline;
}
.privacy-consent-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 99;
}