/* UI Components Styles */

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--color-primary, #ffc75b);
    border: none;
    border-radius: 50%;
    color: var(--color-text-dark, #1a1a1a);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;    
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
}

.scroll-to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.scroll-to-top:hover {
    background: var(--color-primary-hover, #ffb84d);    
    transform: translateY(0) scale(1.1);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }
}
