/* Scroll to Top Button Styles */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d2a557 0%, #e8cc87 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(210, 165, 87, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.scroll-to-top.visible {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #d2a557 0%, #e8cc87 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(210, 165, 87, 0.6);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top svg {
        width: 16px;
        height: 16px;
    }
}

