        /* ============================================
   SCROLL TO TOP ARROW - LOWER RIGHT (FINAL)
   ============================================ */
#scrollTopBtn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important;
    top: auto !important;
    width: 75px !important;
    height: 75px !important;
    background: #c9a84c !important;
    color: #ffffff !important;
    border: 2px solid #c9a84c !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    cursor: pointer !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3) !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    pointer-events: none !important;
}

#scrollTopBtn.show {
    opacity: 0.6 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

#scrollTopBtn.show:hover {
    opacity: 1 !important;
    transform: scale(1.1) !important;
    background: #b8963e !important;
    border-color: #b8963e !important;
    box-shadow: 0 8px 35px rgba(201, 168, 76, 0.6) !important;
}

#scrollTopBtn i {
    font-size: 30px !important;
    color: #1a1a1a !important;
    transition: transform 0.3s ease !important;
}

#scrollTopBtn:hover i {
    transform: translateY(-3px) !important;
}

/* Remove any other scroll-top styles */
.scroll-top:not(#scrollTopBtn) {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    #scrollTopBtn {
        width: 60px !important;
        height: 60px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
    
    #scrollTopBtn i {
        font-size: 24px !important;
    }
}

@media (max-width: 480px) {
    #scrollTopBtn {
        width: 50px !important;
        height: 50px !important;
        bottom: 15px !important;
        right: 15px !important;
    }
    
    #scrollTopBtn i {
        font-size: 20px !important;
    }
}

/* ============================================
   10. SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c9a84c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8963e;
}
