/* Scroll To Top 040774ce */

.stt-040774ce-wrap {
	position: fixed;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, transform 0.35s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stt-040774ce-wrap.is-visible {
	opacity: 1;
	visibility: visible;
}

/* Fade-in animation */
.stt-040774ce-anim-fade-in {
	transform: scale(0.8);
}

.stt-040774ce-anim-fade-in.is-visible {
	transform: scale(1);
}

.stt-040774ce-anim-fade-in.is-visible:hover {
	transform: scale(1.05);
}

/* Slide-in animation */
.stt-040774ce-anim-slide-in {
	transform: translateY(60px);
}

.stt-040774ce-anim-slide-in.is-visible {
	transform: translateY(0);
}

.stt-040774ce-anim-slide-in.is-visible:hover {
	transform: translateY(-3px);
}

/* Progress Ring */
.stt-040774ce-progress-ring {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.stt-040774ce-ring-bg {
	opacity: 0.35;
}

.stt-040774ce-ring-progress {
	transition: stroke-dashoffset 0.15s ease-out;
}

/* Button */
.stt-040774ce-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	line-height: 1;
	transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
	outline: none;
	-webkit-tap-highlight-color: transparent;
	box-sizing: border-box;
}

.stt-040774ce-btn svg {
	display: block;
	pointer-events: none;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
}

.stt-040774ce-btn:focus-visible {
	box-shadow: 0 0 0 3px rgba(210, 178, 122, 0.5), 0 4px 14px rgba(0, 0, 0, 0.18);
	border-color: var(--stt-border-color, #D2B27A);
}

.stt-040774ce-btn:hover {
	background-color: var(--stt-hover-bg, #b8944f) !important;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.stt-040774ce-btn:active {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Hide on mobile */
@media (max-width: 767px) {
	.stt-040774ce-hide-mobile {
		display: none !important;
	}
}
