/* ---------------------------
   Base button (hidden off-screen)
---------------------------- */
.mobile-explore-button {
    position: fixed;
    top: 25vh;                  
    right: -130px;             
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 30px 0 0 30px;
    padding: 10px 20px 10px 15px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 10000;
    transition: right 0.45s ease-out;
}
/* Slide-in active state */
.mobile-explore-button.show {
    right: 0;
}
/* Icon styling */
.mobile-explore-button .mob-btn-icon svg {
    fill: none;
    stroke: currentColor;
}
.mobile-explore-button svg {
    display: block; 
}
/* Hide on desktop */
@media (min-width: 768px) {
    .mobile-explore-button {
        display: none !important;
    }
}
.hidden-initll {
    opacity: 0 !important;
    pointer-events: none;
}


