/* Cookie Consent */
.lyla-cookie-consent {
	position: fixed;
	right: 0;
	bottom: 18px;
	left: 0;
	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: calc(10px + env(safe-area-inset-bottom));
		left: 10px;
	}

	.lyla-cookie-consent__inner {
		display: block;
		padding: 12px;
		border-radius: 8px;
		box-shadow: 0 8px 26px rgba(0, 0, 0, .16);
	}

	.lyla-cookie-consent__text {
		display: block;
		max-height: none;
		overflow: visible;
		font-size: 11px;
		line-height: 1.45;
	}

	.lyla-cookie-consent__text span:first-child {
		display: none;
	}

	.lyla-cookie-consent__actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		margin-top: 10px;
	}

	.lyla-cookie-consent__button {
		min-width: 0;
		min-height: 38px;
		padding: 0 8px;
		font-size: 13px;
	}
}
