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

/*************** ADD CUSTOM DESKTOP 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;
}

/* Customize for product detail Discount volumes */
h4.panel-title {
    margin-bottom: 10px;
}

.panel-heading h4 a {
    background-color: #f5f5f5;
    border-color: #2d2d2d;
    padding: 10px;
    display: block;
    color: #FA7105;
}

div.panel-body {
    padding: 10px;
    font-size: 15px;
}

div.panel-body table {
    border: none;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0 0 1.75em;
    table-layout: fixed;
    width: 100%;
}

.panel-collapse {
    display: none; 
}

.panel-collapse.show {
    display: block; 
}

.panel-title a {
    position: relative;
    cursor: pointer;
}

.panel-title a:after {
    content: '+'; /* Styling for the collapse toggle */
    position: absolute;
    right: 15px;
    top: 10px;
}

.panel-title a[aria-expanded="true"]:after {
    content: '-';
}

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

}