/* İzmir Fırsat Arabam - Kayan Topbar */
.ftb-bar{
	position:fixed;
	top:0;
	left:0;
	right:0;
	z-index:1040;
	height:var(--ftb-h,46px);
	background:var(--ftb-bg,#C1272D);
	overflow:hidden;
	white-space:nowrap;
	display:flex;
	align-items:center;
	box-shadow:0 2px 12px rgba(0,0,0,.15);
	box-sizing:border-box;
}
.ftb-track{
	display:inline-flex;
	align-items:center;
	gap:44px;
	padding-left:44px;
	animation:ftb-scroll var(--ftb-speed,26s) linear infinite;
	will-change:transform;
}
.ftb-item{
	color:var(--ftb-fg,#fff);
	font-size:var(--ftb-fs,14px);
	font-weight:700;
	letter-spacing:.02em;
	text-decoration:none;
	line-height:1;
	flex-shrink:0;
}
a.ftb-item:hover{
	text-decoration:underline;
	opacity:.9;
}
.ftb-sep{
	color:var(--ftb-fg,#fff);
	opacity:.55;
	font-size:calc(var(--ftb-fs,14px) * .7);
	line-height:1;
	flex-shrink:0;
}
@keyframes ftb-scroll{
	from{transform:translateX(0)}
	to{transform:translateX(-50%)}
}
/* Fare üstündeyken durur (okumak isteyen için) */
.ftb-bar:hover .ftb-track{
	animation-play-state:paused;
}
/* Hareket hassasiyeti olan kullanıcılarda kaymayı durdur */
@media(prefers-reduced-motion:reduce){
	.ftb-track{animation:none;padding-left:0;justify-content:center;width:100%}
}
