/* Scroll To Top Button */
.scroll-to-top-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-to-top-wrapper.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-wrapper:hover .scroll-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(199, 90, 246, 0.5);
    background: #c75af6;
}

.scroll-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #7a509a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.scroll-icon svg {
    width: 24px;
    height: 24px;
    margin-top: -2px;
}

.scroll-text {
    color: #c75af6;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}