.macro-cookie-consent,
.macro-cookie-consent *,
.macro-cookie-consent *::before,
.macro-cookie-consent *::after {
	box-sizing: border-box;
}

.macro-cookie-consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100000;
	margin: 0;
	padding: 16px 0;
	background: rgba(26, 18, 38, 0.97);
	color: #fff;
	font-family: "Poppins", Arial, sans-serif;
	box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
	transform: translateY(0);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.macro-cookie-consent.is-hidden,
.macro-cookie-consent-accepted .macro-cookie-consent {
	display: none;
}

.macro-cookie-consent__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
}

.macro-cookie-consent__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
}

.macro-cookie-consent__link {
	color: #c4b5fd;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.macro-cookie-consent__link:hover,
.macro-cookie-consent__link:focus {
	color: #ddd6fe;
}

.macro-cookie-consent__accept {
	flex: 0 0 auto;
	border: 0;
	border-radius: 999px;
	padding: 11px 22px;
	background: linear-gradient(135deg, #6430a1 0%, #8b5cf6 100%);
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	white-space: nowrap;
}

.macro-cookie-consent__accept:hover,
.macro-cookie-consent__accept:focus {
	filter: brightness(1.05);
}

@media (max-width: 767px) {
	.macro-cookie-consent {
		padding: 14px 0 calc(14px + env(safe-area-inset-bottom, 0px));
	}

	.macro-cookie-consent__inner {
		flex-direction: column;
		align-items: stretch;
	}

	.macro-cookie-consent__accept {
		width: 100%;
	}
}
