/* WhatsApp Ordering System Styling */

/* Floating WhatsApp Button */
.wa-float-btn-2747dc00 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.wa-float-btn-2747dc00:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.wa-float-btn-2747dc00 svg {
    width: 32px;
    height: 32px;
}

/* Offset for admin bar */
body.admin-bar .wa-float-btn-2747dc00 {
    /* If admin bar exists, we stay fixed safely */
}

/* Single Product Button styles */
.wa-order-container-2747dc00 {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
}

.wa-order-btn-2747dc00 {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #25d366 !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.wa-order-btn-2747dc00:hover {
    background-color: #128c7e !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(18, 140, 126, 0.3);
}

.wa-order-btn-2747dc00 svg {
    margin-right: 10px;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .wa-float-btn-2747dc00 {
        bottom: 75px; /* Above standard mobile taskbars/bottom navigations */
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .wa-float-btn-2747dc00 svg {
        width: 26px;
        height: 26px;
    }
    .wa-order-btn-2747dc00 {
        font-size: 14px;
        padding: 12px 20px;
    }
}
