/* Cookie consent banner (РКН / 152-ФЗ). Hidden until JS reveals it. */
.np-cc {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 100000;
	display: none;
	max-width: 880px;
	margin: 0 auto;
	padding: 20px 24px;
	background: #1c1c1c;
	color: #e8e8e8;
	border: 1px solid #3a3a3a;
	border-radius: 10px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	font-size: 14px;
	line-height: 1.5;
}

.np-cc.is-visible {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 20px;
}

.np-cc__text {
	flex: 1 1 360px;
	margin: 0;
}

.np-cc__text a {
	color: #fff;
	text-decoration: underline;
}

.np-cc__actions {
	flex: 0 0 auto;
	display: flex;
	gap: 10px;
}

.np-cc__btn {
	cursor: pointer;
	border: 0;
	border-radius: 6px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
}

.np-cc__btn--accept {
	background: #fff;
	color: #111;
}

.np-cc__btn--decline {
	background: transparent;
	color: #cfcfcf;
	border: 1px solid #555;
}

.np-cc__btn--accept:hover {
	background: #e2e2e2;
}

.np-cc__btn--decline:hover {
	border-color: #888;
	color: #fff;
}

@media (max-width: 600px) {
	.np-cc__actions {
		width: 100%;
	}
	.np-cc__btn {
		flex: 1 1 0;
	}
}
