/**
 * Dusty Rose — Scroll to Top Button
 * Кнопка прокрутки наверх
 */

.scroll-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--wp--preset--color--accent-primary);
    background: var(--wp--preset--color--bg-secondary);
    color: var(--wp--preset--color--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.2s, opacity 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
    font-family: var(--wp--preset--font-family--literata);
    font-size: 0.7rem;
    line-height: 1;
    padding: 0;
}

.scroll-top.visible {
    opacity: 0.4;
    pointer-events: auto;
}

.scroll-top:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Полупрозрачность при прокрутке */
.scroll-top.scrolling {
    opacity: 0.2 !important;
}
