/* Back to Top V1 Styles */
.scroll-top-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: linear-gradient(135deg, var(--primary-brand-color), var(--secondary-brand-color));
	color: var(--primary-button-text-color);
	padding: 15px 0;
	text-align: center;
	cursor: pointer;
	z-index: 999;
	transform: translateY(100%);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
	will-change: transform;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	opacity: 0;
	visibility: hidden;
}

.scroll-top-bar.show {
	opacity: 1;
	visibility: visible;
}

.scroll-top-bar.show {
	transform: translateY(0);
}

.scroll-top-bar:hover {
	box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.25);
	background: linear-gradient(135deg, var(--secondary-brand-color), var(--primary-brand-color));
}

.scroll-top-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.scroll-top-content i {
	font-size: 18px;
	animation: bounce-up 1.5s ease-in-out infinite;
}

@keyframes bounce-up {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.scroll-top-bar {
		display: none; /* Hide scroll top bar on mobile */
	}
}

/* RTL Support */
/* No specific RTL changes needed as it's a full-width bar */

