/* -------------------------------------------------------------------------- */
/* CUSTOMIZATION: Shop Location Floating Button                               */
/* -------------------------------------------------------------------------- */

#floating-contact-button {
    position: fixed;
    bottom: 25px;
    right: 90px;
    z-index: 9999;

    background-color: #ececec;
    padding: 3px 13px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

    font-size: 14px;
    text-align: center;

    transition: background-color 0.3s ease;
}

/* Anchor styling inside the floating button */
#floating-contact-button a {
    display: block;
    text-decoration: none;
}

/* Hover effect for better interaction feedback */
#floating-contact-button:hover {
    background-color: #fff;
}

/* Contact button style (inside wrapper) */
#floating-contact-button #contact-button {
    background: transparent;
    color: #000;
    cursor: pointer;
    border: none;
    font: inherit;
}

/* -------------------------------------------------------------------------- */
/* Responsive Adjustments (Mobile)                                            */
/* -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    #floating-contact-button {
        bottom: 30px;
        right: 10px;
        padding: 5px 10px;
        font-size: 14px;
        
    }
}
