.cookie-consent-modal {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	padding: 60px 0;
	box-sizing: border-box;
}

.cookie-consent-modal.is-open {
	display: block;
}

.cookie-consent-modal__backdrop {
	display: none;
}

.cookie-consent-modal__panel {
	position: static;
	width: min(1120px, 95%);
	margin: 0 auto;
	background: #fff;
	border-radius: 10px;
	padding: 24px 32px;
	box-sizing: border-box;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.cookie-consent-modal__title {
	color: #4f4f4f;
	margin: 0 0 16px;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.4;
}

.cookie-consent-modal__description {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	color: #4F4F4F;
}

.cookie-consent-modal__policy-link {
	display: inline-block;
	margin-left: 6px;
	color: #4f4f4f;
	font-weight: bold;
	text-decoration: underline;
}

.cookie-consent-modal__actions {
	margin-top: 16px;
	display: flex;
	gap: 16px;
	justify-content: flex-start;
}

.cookie-consent-modal__button {
	appearance: none;
	border: none;
	border-radius: 10px;
	padding: 8px 24px;
	font-size: 16px;
	font-weight: 400;
	cursor: pointer;
}

.cookie-consent-modal__button--allow {
	background: #5C59E8;
	color: #fff;
	font-weight: 700;
}

.cookie-consent-modal__button--deny {
	background: #EAEFF2;
	color: #4f4f4f;
}

@media (max-width: 768px) {
	.cookie-consent-modal {
		padding: 40px 12px;
	}

	.cookie-consent-modal__panel {
		padding: 16px;
	}

	.cookie-consent-modal__title {
		font-size: 18px;
	}

	.cookie-consent-modal__actions {
		flex-direction: column;
	}

	.cookie-consent-modal__button {
		width: 100%;
	}
}
