/* =========================================
   SCROLL TO TOP BUTTON
   ========================================= */

.scroll-to-top {
    position: fixed;
    bottom: 105px; /* Default: stacked above WhatsApp button at bottom: 30px */
    right: 35px; /* Center-aligned with WhatsApp button (right: 30px, width: 60px) */
    width: 50px;
    height: 50px;
    background-color: #D4AF37;
    color: #FFFFFF;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #C59B27;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .scroll-to-top {
        bottom: 87.5px; /* 20px bottom + 55px height + 12.5px gap */
        right: 25px; /* Center-aligned */
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 75px; /* 15px bottom + 50px height + 10px gap */
        right: 20px; /* Center-aligned */
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* =========================================
   OFFSET ALIGNMENT (For local pages where WhatsApp is at bottom: 40px, right: 40px)
   ========================================= */

.scroll-to-top.offset-high {
    bottom: 115px; /* 40px bottom + 60px height + 15px gap */
    right: 45px; /* Center-aligned with WhatsApp button (right: 40px, width: 60px) */
}

@media (max-width: 767px) {
    .scroll-to-top.offset-high {
        bottom: 105px;
        right: 45px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
