/* Scroll To Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #dfa667;
    color: black;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 22px;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.scroll-top-btn:hover {
    background: #bb864e;
    transform: scale(1.08);
}

/* ===== Responsive ===== */

/* Tablets */
@media (max-width: 992px) {
    .scroll-top-btn {
        width: 30px;
        height: 30px;
        font-size: 20px;
        bottom: 12px;
        right: 20px;
    }
}

/* Mobiles */
@media (max-width: 576px) {
    .scroll-top-btn {
        width: 32px;
        height: 32px;
        font-size: 18px;
        bottom: 12px;
        right: 15px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .scroll-top-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
        bottom: 10px;
        right: 12px;
    }
}
