#pavior-scroll-top {
position: fixed;
bottom: 120px;
right: 20px;
width: 50px;
height: 50px;
color: white;
border-radius: 50%;
cursor: pointer;
display: none;
align-items: center;
justify-content: center;
font-size: 20px;
z-index: 9999;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
#pavior-scroll-top:hover {
transform: scale(1.1);
box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}