.cookie-consent {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 1400;
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-consent.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.cookie-consent__inner {
	max-width: 860px;
	margin: 0 auto;
	padding: 0.95rem 1rem;
	border-radius: 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(0, 26, 51, 0.96);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.9rem;
	flex-wrap: wrap;
}

.cookie-consent__text {
	margin: 0;
	font-size: 0.94rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
	flex: 1 1 420px;
}

.cookie-consent__text a {
	color: #ffb36c;
	font-weight: 600;
}

.cookie-consent__text a:hover,
.cookie-consent__text a:focus-visible {
	color: #ffd0a0;
}

.cookie-consent__actions {
	display: flex;
	gap: 0.55rem;
	flex: 0 0 auto;
}

.cookie-consent__btn {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 0.86rem;
	padding: 0.55rem 0.95rem;
	border-radius: 999px;
}

.cookie-consent__btn--reject {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.42);
	color: rgba(255, 255, 255, 0.95);
}

.cookie-consent__btn--reject:hover,
.cookie-consent__btn--reject:focus-visible {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.cookie-consent__btn--accept {
	background: #ff6600;
	border: 1px solid #ff6600;
	color: #fff;
}

.cookie-consent__btn--accept:hover,
.cookie-consent__btn--accept:focus-visible {
	background: #ff7a24;
	border-color: #ff7a24;
	color: #fff;
}

@media (max-width: 767.98px) {
	.cookie-consent {
		left: 0.75rem;
		right: 0.75rem;
		bottom: 0.75rem;
	}

	.cookie-consent__actions {
		width: 100%;
	}

	.cookie-consent__btn {
		flex: 1 1 0;
	}
}
