.gdpr-atedigo-banner {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 9999;
	color: #f7f2ea;
}

.gdpr-atedigo-banner__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	padding: 20px 22px;
	background: linear-gradient(135deg, #1f1b16 0%, #2f261b 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.gdpr-atedigo-banner__copy {
	flex: 1 1 320px;
	min-width: 0;
	font-size: 15px;
	line-height: 1.6;
}

.gdpr-atedigo-banner__copy p:last-child {
	margin-bottom: 0;
}

.gdpr-atedigo-banner__actions,
.gdpr-atedigo-modal__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.gdpr-atedigo-button {
	appearance: none;
	border: 0;
	border-radius: 999px;
	padding: 12px 18px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.gdpr-atedigo-button:hover {
	transform: translateY(-1px);
}

.gdpr-atedigo-button--primary {
	background: #d88a37;
	color: #20170f;
	box-shadow: 0 8px 20px rgba(216, 138, 55, 0.28);
}

.gdpr-atedigo-button--secondary,
.gdpr-atedigo-button--ghost {
	background: #000000;
	color: #f7f2ea;
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.gdpr-atedigo-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.gdpr-atedigo-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 12, 9, 0.66);
}

.gdpr-atedigo-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(820px, 100%);
	max-height: calc(100vh - 48px);
	display: flex;
	flex-direction: column;
	background: #fffdf9;
	border-radius: 22px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
	overflow: hidden;
}

.gdpr-atedigo-modal__body {
	padding: 28px 28px 20px;
	overflow-y: auto;
}

.gdpr-atedigo-modal__title {
	margin: 0 0 10px;
	font-size: 28px;
	line-height: 1.15;
	color: #241d16;
}

.gdpr-atedigo-modal__intro {
	margin-bottom: 22px;
	color: #5f574f;
	font-size: 15px;
	line-height: 1.65;
}

.gdpr-atedigo-modal__intro p:last-child {
	margin-bottom: 0;
}

.gdpr-atedigo-modal__footer {
	padding: 18px 28px 28px;
	justify-content: space-between;
	border-top: 1px solid #ece4d9;
}

.gdpr-atedigo-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 999px;
	background: #f3ebe0;
	color: #2d2218;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

.gdpr-atedigo-category-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.gdpr-atedigo-category {
	border: 1px solid #eadfd0;
	border-radius: 16px;
	background: #fff;
	overflow: hidden;
}

.gdpr-atedigo-category__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 18px;
	cursor: pointer;
	list-style: none;
}

.gdpr-atedigo-category__summary::-webkit-details-marker {
	display: none;
}

.gdpr-atedigo-category__title {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #20170f;
}

.gdpr-atedigo-category__badge {
	display: inline-flex;
	margin-top: 6px;
	padding: 4px 9px;
	border-radius: 999px;
	background: #efe6da;
	color: #67594b;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.gdpr-atedigo-category__content {
	padding: 0 18px 18px;
	color: #5e5349;
	font-size: 14px;
	line-height: 1.6;
}

.gdpr-atedigo-category__content p:last-child {
	margin-bottom: 0;
}

.gdpr-atedigo-switch {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.gdpr-atedigo-switch__input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.gdpr-atedigo-switch__slider {
	position: relative;
	display: inline-block;
	width: 46px;
	height: 26px;
	background: #d4c5b2;
	border-radius: 999px;
	transition: background-color 0.2s ease;
}

.gdpr-atedigo-switch__slider::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	transition: transform 0.2s ease;
}

.gdpr-atedigo-switch__input:checked + .gdpr-atedigo-switch__slider {
	background: #d88a37;
}

.gdpr-atedigo-switch__input:checked + .gdpr-atedigo-switch__slider::after {
	transform: translateX(20px);
}

body.gdpr-atedigo-modal-open {
	overflow: hidden;
}

@media (max-width: 767px) {
	.gdpr-atedigo-banner {
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	.gdpr-atedigo-banner__inner,
	.gdpr-atedigo-modal__body,
	.gdpr-atedigo-modal__footer {
		padding-left: 18px;
		padding-right: 18px;
	}

	.gdpr-atedigo-modal {
		padding: 12px;
	}

	.gdpr-atedigo-modal__dialog {
		max-height: calc(100vh - 24px);
	}

	.gdpr-atedigo-modal__title {
		font-size: 24px;
	}

	.gdpr-atedigo-modal__footer {
		flex-direction: column;
	}

	.gdpr-atedigo-modal__footer .gdpr-atedigo-button {
		width: 100%;
	}
}
