/* ========================================
   Product Page Buttons
   ======================================== */
.ifl-product-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    /* Space below buttons (before Add to Cart) */
    margin-top: 0;
    width: 100%;
}

.ifl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 1 calc(50% - 10px);
    /* 2 columns */
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    background: #f0f0f0;
    /* Soft gray for Call/Email */
    color: #333;
    /* Slightly darker text for contrast */
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    border-radius: 4px;
    /* Slight rounded corners */
}

/* Hover Effects */
.ifl-btn:hover {
    background: #e0e0e0;
    color: #000;
    border-color: #ccc;
}

/* Icons */
.ifl-btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    line-height: 1;
    color: #555;
}

/* WhatsApp Button Targetting */
/* Assuming WhatsApp button is an <a> tag with href containing 'wa.me' or similar, 
   or if it was added via a hook, we might need a general selector if we can't add a class.
   However, if the WhatsApp button is the "Add to Cart" button modified, or a separate one, 
   we need to be careful. The user said "Order via WhatsApp". 
   Let's target any button with class .ifl-btn-whatsapp if customizable, 
   OR standard WooCommerce button if replaced. 
   BUT, usually "Order via WhatsApp" replaces "Add to Cart" or is next to it.
   I'll add a generic selector for it just in case: */

a[href*="wa.me"],
.ifl-whatsapp-btn,
.ifl-btn-whatsapp {
    background-color: #e8f5e9 !important;
    /* Soft green */
    border-color: #c8e6c9 !important;
    color: #2e7d32 !important;
    display: flex !important;
    /* Ensure flex for icon alignment */
}

a[href*="wa.me"]:hover,
.ifl-whatsapp-btn:hover,
.ifl-btn-whatsapp:hover {
    background-color: #c8e6c9 !important;
    color: #1b5e20 !important;
}

/* Responsive */
@media (max-width: 480px) {
    .ifl-btn {
        flex: 1 1 100%;
        /* Stack on mobile */
    }
}