.scroll-to-top {
    position: fixed;
    bottom: -60px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.scroll-to-top.visible {
    bottom: 20px;
    opacity: 1;
}

.scroll-to-top:hover {
    background-color: #b69066;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.scroll-to-top i {
    line-height: 40px;
    font-size: 20px;
} 