/* Travira cookie banner — sade, fixed bottom-left, dismissible */
#tvt-cookie-banner {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 99999;
	background: #2b2a26;
	color: #f7f5f0;
	border-radius: 10px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 0.9rem;
	max-width: 720px;
	margin: 0 auto;
	animation: tvtCbIn 0.35s ease-out;
}
@keyframes tvtCbIn { from { transform: translateY(120%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.tvt-cb__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	padding: 0.9rem 1.1rem;
}
.tvt-cb__text {
	flex: 1 1 320px;
	margin: 0;
	line-height: 1.5;
	color: #d7d0bf;
}
.tvt-cb__text a {
	color: #cbd9b8;
	text-decoration: underline;
}
.tvt-cb__actions {
	display: flex;
	gap: 0.5rem;
	flex-shrink: 0;
}
.tvt-cb__btn {
	border: 1px solid #4b4640;
	background: transparent;
	color: #f7f5f0;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-size: 0.85rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s;
}
.tvt-cb__btn:hover { background: rgba(255, 255, 255, 0.05); }
.tvt-cb__btn--accept {
	background: #5c6b4a;
	border-color: #5c6b4a;
}
.tvt-cb__btn--accept:hover { background: #6e7e58; border-color: #6e7e58; }

@media (max-width: 600px) {
	#tvt-cookie-banner { left: 0.5rem; right: 0.5rem; bottom: 0.5rem; }
	.tvt-cb__inner { padding: 0.75rem 0.9rem; }
}
