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

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

/* ---- Product category filter bar ---- */
.meus-filter-bar {
    padding: 15px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.meus-filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
}

.meus-filter-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.meus-filter-row:first-child {
    padding-top: 0;
}

.meus-filter-label {
    font-weight: 700;
    font-size: 14px;
    margin-right: 4px;
    white-space: nowrap;
    color: #b08d57;
}

.meus-filter-chip {
    display: inline-block;
    padding: 6px 14px;
    background: #f0f0f0;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    line-height: 1.4;
    transition: background 0.2s, color 0.2s;
}

.meus-filter-chip:hover {
    background: #ddd;
    color: #333;
    text-decoration: none;
}

.meus-filter-chip.active {
    background: #333;
    color: #fff;
}

.meus-filter-chip.active:hover {
    background: #555;
    color: #fff;
}

/* ---- AJAX filter transitions ---- */
.meus-filter-bar,
.products {
    transition: opacity 0.15s ease;
}

/* ---- Product thumbnails: show full image without cropping ---- */
.products .box-image img {
    object-fit: contain;
    background: #fff;
}

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

.meus-filter-label {
    font-size: 13px;
    width: 100%;
    margin-bottom: 2px;
}

.meus-filter-chip {
    padding: 5px 11px;
    font-size: 12px;
}

}
