.nq-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: rgba(5, 9, 14, 0.97);
	backdrop-filter: blur(16px);
	border-top: 1px solid rgba(45, 199, 207, 0.25);
	padding: 18px 0;
	transform: translateY(100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nq-cookie-banner.is-visible {
	transform: translateY(0);
}

.nq-cookie-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.nq-cookie-text {
	flex: 1;
	min-width: 260px;
	color: #c3cfda;
	font-size: 0.92rem;
	line-height: 1.6;
	margin: 0;
}

.nq-cookie-text a {
	color: #5fdfe5;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.2s;
}

.nq-cookie-text a:hover {
	color: #2dc7cf;
}

.nq-cookie-actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.nq-cookie-btn {
	border: 1px solid transparent;
	border-radius: 10px;
	padding: 10px 20px;
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
	font-size: 0.88rem;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.nq-cookie-btn.accept {
	background: linear-gradient(90deg, #2dc7cf, #5fdfe5);
	color: #04252a;
	border-color: transparent;
}

.nq-cookie-btn.accept:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(45, 199, 207, 0.3);
}

.nq-cookie-btn.decline {
	background: transparent;
	color: #9fb1c4;
	border-color: rgba(159, 177, 196, 0.35);
}

.nq-cookie-btn.decline:hover {
	border-color: rgba(45, 199, 207, 0.5);
	color: #5fdfe5;
}

@media (max-width: 640px) {
	.nq-cookie-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.nq-cookie-actions {
		width: 100%;
	}

	.nq-cookie-btn {
		flex: 1;
		text-align: center;
	}
}
