/* Cookie Consent */
.lyla-cookie-consent {
	position: fixed;
	right: 18px;
	bottom: 18px;
	left: 18px;
	z-index: 9999;
	display: none;
	pointer-events: none;
}

.lyla-cookie-consent.is-show {
	display: block;
}

.lyla-cookie-consent__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	max-width: 1120px;
	margin: 0 auto;
	padding: 18px 20px;
	color: #222;
	background: #fff;
	border: 1px solid rgba(34, 34, 34, .12);
	border-radius: 8px;
	box-shadow: 0 12px 34px rgba(0, 0, 0, .16);
	pointer-events: auto;
}

.lyla-cookie-consent__text {
	display: grid;
	gap: 4px;
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
}

.lyla-cookie-consent__text a {
	color: #c92532;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.lyla-cookie-consent__actions {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 10px;
}

.lyla-cookie-consent__button {
	min-height: 42px;
	padding: 0 18px;
	border: 1px solid #c92532;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	white-space: nowrap;
}

.lyla-cookie-consent__button--agree {
	color: #fff;
	background: #c92532;
}

.lyla-cookie-consent__button--disable {
	color: #c92532;
	background: #fff;
}

.lyla-cookie-consent__button:focus-visible {
	outline: 3px solid rgba(201, 37, 50, .28);
	outline-offset: 2px;
}

@media (max-width: 767px) {
	.lyla-cookie-consent {
		right: 10px;
		bottom: 10px;
		left: 10px;
	}

	.lyla-cookie-consent__inner {
		display: block;
		padding: 16px;
	}

	.lyla-cookie-consent__text {
		font-size: 13px;
		line-height: 1.6;
	}

	.lyla-cookie-consent__actions {
		margin-top: 12px;
	}

	.lyla-cookie-consent__button {
		flex: 1 1 0;
		min-width: 0;
		padding: 0 10px;
		font-size: 13px;
	}
}
