/* WooCommerce Brand Showcase */

.wbs-brand-section {
    margin-bottom: 45px;
}


.wbs-brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}


.wbs-brand-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}


.wbs-brand-header h2 span {
    font-size: 14px;
    color: #888;
    font-weight: normal;
}


.wbs-view-more {
    color: #222;
    font-weight: 500;
    text-decoration: none;
}


.wbs-view-more:hover {
    color: #fcb800; /* Martfury yellow style */
}


/* Horizontal product row */

.wbs-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;

    scrollbar-width: thin;
}


/* Hide ugly scrollbar on Chrome */

.wbs-slider::-webkit-scrollbar {
    height: 6px;
}

.wbs-slider::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}



/* Product cards */

.wbs-product-card {

    flex: 0 0 calc(20% - 16px);

    background: #fff;
    border: 1px solid #eee;

    padding: 15px;

    transition: .3s ease;

    text-align: left;
}


.wbs-product-card:hover {

    box-shadow: 0 5px 20px rgba(0,0,0,.08);

}


.wbs-product-card img {

    width:100%;
    height:auto;

}


.wbs-product-card h3 {

    font-size:15px;
    line-height:22px;

    margin:12px 0;

    min-height:44px;

}



.wbs-product-card .price {

    font-size:16px;
    font-weight:600;

}



/* Add to cart */

.wbs-cart {

    margin-top:12px;

}



.wbs-cart .button {

    width:100%;
    text-align:center;

}



/* View more card */

.wbs-more-card {

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:#f8f8f8;

}



.wbs-more-card a {

    color:#333;

    text-decoration:none;

    font-size:16px;

}



/* Tablet */

@media(max-width:1024px){


    .wbs-product-card {

        flex:0 0 calc(33.333% - 14px);

    }

}



/* Mobile */

@media(max-width:767px){


    .wbs-brand-header h2 {

        font-size:18px;

    }


    .wbs-product-card {

        flex:0 0 calc(50% - 10px);

        padding:10px;

    }


    .wbs-product-card h3 {

        font-size:14px;

    }


}