/**
 * Yoginee Elasticsearch Search Results
 * PrestaShop 1.7.6+
 */

.yoginee-search-results-page{
    margin:20px 0 50px;
}

.yoginee-search-results-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    margin-bottom:30px;
    flex-wrap:wrap;
}

.yoginee-search-results-title{
    margin:0 0 10px;
    font-size:30px;
    font-weight:700;
    color:#222;
}

.yoginee-search-results-summary{
    color:#777;
    margin:0;
}

.yoginee-search-results-time{
    color:#2fb5d2;
    font-weight:600;
}

.yoginee-search-sort{
    min-width:240px;
}

.yoginee-search-filter-card{
    margin-bottom:25px;
    border:1px solid #e4e4e4;
    border-radius:8px;
}

.yoginee-search-filter-card .card-header{
    background:#f7f7f7;
    padding:15px;
    font-weight:600;
}

.yoginee-search-filter-card .card-body{
    padding:18px;
}

.yoginee-search-filter-section{
    margin-bottom:25px;
}

.yoginee-search-filter-section:last-child{
    margin-bottom:0;
}

.yoginee-search-filter-section h4{
    font-size:15px;
    margin-bottom:12px;
}

.yoginee-search-filter-list{
    list-style:none;
    margin:0;
    padding:0;
}

.yoginee-search-filter-list li{
    margin-bottom:8px;
}

.yoginee-search-filter-list label{
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.yoginee-search-products{
    margin-top:10px;
}

.yoginee-search-products article{
    margin-bottom:30px;
}

.thumbnail-container{
    border:1px solid #ececec;
    border-radius:8px;
    overflow:hidden;
    transition:.25s;
    background:#fff;
}

.thumbnail-container:hover{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transform:translateY(-3px);
}

.product-thumbnail{
    display:block;
    padding:20px;
    background:#fff;
}

.product-thumbnail img{
    width:100%;
    height:220px;
    object-fit:contain;
}

.yoginee-search-no-image{
    height:220px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#ccc;
    font-size:50px;
}

.product-description{
    padding:18px;
}

.product-title{
    font-size:16px;
    line-height:24px;
    min-height:48px;
}

.product-title a{
    color:#222;
    text-decoration:none;
}

.product-title mark{
    background:#fff59d;
    padding:0;
}

.yoginee-search-reference{
    font-size:12px;
    color:#888;
    margin:8px 0;
}

.yoginee-search-description{
    font-size:13px;
    color:#666;
    line-height:22px;
    min-height:44px;
    margin-bottom:15px;
}

.product-price-and-shipping{
    margin-bottom:10px;
}

.product-price-and-shipping .price{
    color:#2fb5d2;
    font-size:22px;
    font-weight:700;
}

.yoginee-search-stock{
    margin-top:8px;
}

.yoginee-search-pagination{
    margin-top:40px;
}

.page-list{
    display:flex;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
}

.page-list li{
    list-style:none;
}

.page-list a{
    display:block;
    padding:8px 14px;
    border-radius:6px;
    border:1px solid #ddd;
    text-decoration:none;
    color:#444;
}

.page-list li.current a{
    background:#2fb5d2;
    color:#fff;
    border-color:#2fb5d2;
}

.page-list a:hover{
    background:#2fb5d2;
    color:#fff;
}

.yoginee-search-empty{
    padding:50px;
    text-align:center;
}

.yoginee-search-empty i{
    font-size:60px;
    margin-bottom:20px;
    color:#2fb5d2;
}

@media(max-width:991px){

    .yoginee-search-results-header{
        flex-direction:column;
    }

    .yoginee-search-sort{
        width:100%;
    }

}

@media(max-width:767px){

    .product-thumbnail img{
        height:170px;
    }

    .product-title{
        min-height:auto;
    }

}