.zyne-cookie {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	display: none;
	background: #000000;
	color: #ffffff;
	padding: 22px 28px;
	box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
}

.zyne-cookie.is-visible {
	display: block;
}

.zyne-cookie__inner {
	max-width: 1290px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.zyne-cookie__text {
	margin: 0;
	font-family: Cabin, sans-serif;
	font-size: 15px;
	line-height: 1.55;
	font-weight: 400;
	color: #ffffff;
}

.zyne-cookie__text a {
	color: #8dc641;
	text-decoration: underline;
	text-underline-offset: 2px;
	font-weight: 600;
}

.zyne-cookie__text a:hover {
	color: #a6e05a;
}

.zyne-cookie__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.zyne-cookie__btn {
	appearance: none;
	border-radius: 10px;
	padding: 12px 22px;
	font-family: Cabin, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: 0.25s ease;
}

.zyne-cookie__btn--decline {
	background: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.85);
}

.zyne-cookie__btn--decline:hover {
	background: rgba(255, 255, 255, 0.08);
}

.zyne-cookie__btn--accept {
	border: none;
	color: #000000;
	background: #8dc641;
	box-shadow: 0 6px 16px rgba(141, 198, 65, 0.35);
}

.zyne-cookie__btn--accept:hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
}

@media (max-width: 768px) {
	.zyne-cookie {
		padding: 18px 16px;
	}

	.zyne-cookie__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	.zyne-cookie__actions {
		width: 100%;
	}

	.zyne-cookie__btn {
		flex: 1;
		text-align: center;
	}
}
