.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: var(--color-primary-700);
    color: var(--color-white) !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    border: 2px solid var(--color-white);
    outline: none;
    text-decoration: none !important;
    transform: scale(0.5);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-to-top:hover {
    background-color: var(--color-primary-600);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    color: var(--color-white) !important;
}

.scroll-to-top i {
    line-height: 0;
}

@media (max-width: 576px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}