/* ==========================SCROLL TO TOP========================== */
.scroll-to-top {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 999;
	display: none;
}

.scroll-to-top-button {
	width: 50px;
	height: 50px;
	background-color: #FFD700;
	border-radius: 50%;
	border: none;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease;
	outline: none;
}

.scroll-to-top-button:hover {
	background-color: #FFC107;
	transform: scale(1.1);
}

.scroll-to-top-button svg {
	width: 24px;
	height: 24px;
	stroke: #333;
	fill: none;
}

/* Responsive */
@media (max-width: 768px) {
	.scroll-to-top {
		bottom: 15px;
		left: 15px;
	}
	.scroll-to-top-button {
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 480px) {
	.scroll-to-top {
		bottom: 10px;
		left: 10px;
	}
	.scroll-to-top-button {
		width: 40px;
		height: 40px;
	}
}