/* Order on Whatsapp Button Styles */
.order-on-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Background and Border colors are handled by inline styles */
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px; /* Default rounded */
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    width: 100%; /* Match inspiration, often full width or large */
    box-sizing: border-box;
    transition: background-color 0.3s ease;
    border: 1px solid transparent; /* Placeholder for border color */
    text-align: center;
}

/* Shapes */
.order-on-whatsapp-btn.oow-square {
    border-radius: 0;
}

.order-on-whatsapp-btn.oow-rounded {
    border-radius: 5px;
}

.order-on-whatsapp-btn.oow-pill {
    border-radius: 50px;
}

.order-on-whatsapp-btn:hover {
    color: #fff !important;
}

.order-on-whatsapp-btn svg {
    margin-right: 8px;
    fill: currentColor;
    width: 20px;
    height: 20px;
}

