/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/*customize for brands section*/
.custom-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.brand-item img {
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 5px;
    background: #fff;
    transition: transform 0.3s ease;
}
.brand-item img:hover {
    transform: scale(1.05);
}

/*customize search box*/
input#woocommerce-product-search-field-0 {
    font-size: 14px;
    padding: 18px;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}