/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */


.mg-woocommerce-product-search {
    background-color: white;
    display: flex;
    gap: 16px;
}

.mg-woocommerce-product-search #mg-woocommerce-product-search-field {
    background-color: transparent;
    border: 0;
}

.mg-woocommerce-product-search .mg-woocommerce-product-search-button {
    background-color: var(--e-global-color-primary);
    border: 0;
    border-radius: 0;
    color: white;

}

.mg-woocommerce-product-search .mg-woocommerce-product-search-button:hover {
    background-color: black;
}

/* Container for buttons */
.mgland-product-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Common button styles */
.mgland-product-buttons .button {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Email button - typically blue */
.mg-email-now {
    background-color: #0073e6 !important;
}

.mg-email-now:hover {
    background-color: #005bb5 !important;
}

/* Call button - typically green */
.mg-call-now {
    background-color: #28a745 !important;
}

.mg-call-now:hover {
    background-color: #1e7e34 !important;
}

/* WhatsApp button - typical WhatsApp green */
.mg-whatsapp-now {
    background-color: #25d366 !important;
}

.mg-whatsapp-now:hover {
    background-color: #1ebe57 !important;
}

.mgland-product-buttons .button svg,
.mgland-product-buttons .button .icon {
    width: 18px; /* icon size */
    height: 18px;
    margin-right: 8px; /* space between icon and text */
    vertical-align: middle;
    fill: currentColor; /* inherit text color for consistency */
}

/* If icons are font icons or use a class: */
.mgland-product-buttons .button .mg-icon {
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
    color: inherit; /* inherit from button text color */
}