/* Scroll to Top Button - Тільки для Desktop */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.4);
    z-index: 900;
    display: none;
}

/* Показуємо тільки на desktop */
@media (min-width: 992px) {
    .scroll-to-top {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .scroll-to-top:hover {
        color: #ffffff;
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
    }
    
    .scroll-to-top:active {
        transform: translateY(-2px);
    }
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* iOS Safari fixes */
@media (min-width: 992px) {
    .scroll-to-top {
        -webkit-tap-highlight-color: transparent;
    }
}

