/* Scroll Progress Button */
.items-scroll-progress {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

.items-scroll-progress.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.items-scroll-progress svg.progress-circle path {
    stroke: var(--color-accent);
    /* Use site accent color */
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.items-scroll-progress::after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    /* Assuming FA is avail, else use SVG */
    content: '';
    /* Using SVG arrow inside instead */
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--color-primary);
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.scroll-arrow-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    color: var(--color-text-dark);
    /* Or primary color */
    z-index: 2;
    transition: all 200ms linear;
}

.items-scroll-progress:hover .scroll-arrow-icon {
    transform: translate(-50%, -60%);
    color: var(--color-accent);

}

.scroll-arrow-icon svg {
    width: 100%;
    height: 100%;
}

/* Ensure SVG is positioned correctly */
.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    fill: #fff;

}

@media (max-width: 768px) {
    .items-scroll-progress {
        right: 20px;
        bottom: 20px;
    }
}