.cookie-banner {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 99999;
}

.cookie-container {
	max-width: 980px;
	margin: 0 auto;
	background: #111;
	color: #fff;
	border-radius: 14px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cookie-text {
	flex: 1 1 auto;
}

.cookie-text strong {
	display: block;
	font-size: 1rem;
	margin-bottom: 6px;
}

.cookie-text p {
	margin: 0 0 8px;
	font-size: 0.95rem;
	line-height: 1.5;
}

.cookie-text a {
	color: #cbba9c;
	text-decoration: underline;
}

.cookie-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	flex: 0 0 auto;
}

.cookie-actions button {
	border-radius: 10px;
	padding: 11px 16px;
	cursor: pointer;
	font-weight: 600;
	transition: 0.2s ease;
}

.cookie-actions button:hover {
	opacity: 0.92;
}

.btn-cookie-primary {
	background: #cbba9c;
	color: #111;
	border: 0;
}

.btn-cookie-secondary {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.35);
}

.cookie-hidden {
	display: none !important;
}

@media (max-width: 768px) {
	.cookie-banner {
		left: 12px;
		right: 12px;
		bottom: 12px;
	}

	.cookie-container {
		flex-direction: column;
		align-items: flex-start;
		padding: 18px;
	}

	.cookie-actions {
		width: 100%;
	}

	.cookie-actions button {
		flex: 1 1 100%;
	}
}