/* ==========================================================================
   ER Marquee for Elementor — Frontend Styles v1.0.2
   Author: EldinR (https://eldinr.com)
   ========================================================================== */

/* Strip */
.mtkr-strip {
	position: relative;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
}

/* Edge fade — colour driven by --mtkr-bg set via JS */
.mtkr-strip--fade::before,
.mtkr-strip--fade::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 2;
	pointer-events: none;
}
.mtkr-strip--fade::before {
	left: 0;
	background: linear-gradient(to right, var(--mtkr-bg, transparent) 0%, transparent 100%);
}
.mtkr-strip--fade::after {
	right: 0;
	background: linear-gradient(to left, var(--mtkr-bg, transparent) 0%, transparent 100%);
}

/* Viewport */
.mtkr-viewport {
	display: flex;
	overflow: hidden;
	width: 100%;
}

/* Track — JS controls animation and clones */
.mtkr-track {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	width: max-content;
	will-change: transform;
}

/* One set of items */
.mtkr-set {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: var(--mtkr-gap, 40px);
	padding-inline: calc(var(--mtkr-gap, 40px) / 2);
	flex-shrink: 0;
}

/* Pause on hover */
.mtkr-strip[data-mtkr-pause-hover="true"]:hover .mtkr-track {
	animation-play-state: paused !important;
}

/* ---- Items ---------------------------------------------------------------- */

.mtkr-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	flex-shrink: 0;
}

.mtkr-item-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: inherit;
}

.mtkr-item-link:hover .mtkr-item-text {
	text-decoration: underline;
}

.mtkr-item-text {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
}

.mtkr-item-image {
	display: inline-block;
	height: auto;
	max-height: 48px;
	object-fit: contain;
	vertical-align: middle;
	flex-shrink: 0;
}

/* ---- Separator icon -------------------------------------------------------
   FA <i>  = font, uses color
   SVG     = needs fill:currentColor
--------------------------------------------------------------------------- */

.mtkr-separator {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 1;
	color: #cc66ff;
	font-size: 14px;
}

.mtkr-separator i {
	display: block;
	font-size: 1em;
	line-height: 1;
	color: inherit;
}

.mtkr-separator svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
	color: inherit;
}

.mtkr-separator svg path,
.mtkr-separator svg circle,
.mtkr-separator svg rect,
.mtkr-separator svg polygon,
.mtkr-separator svg ellipse,
.mtkr-separator svg polyline {
	fill: currentColor;
}

/* ---- Editor — pause animation --------------------------------------------- */
.elementor-editor-active .mtkr-track {
	animation-play-state: paused !important;
}

/* ---- Accessibility -------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	.mtkr-track {
		animation: none !important;
	}
}
