﻿/* top search/filter bar look */
.bg-filter {
    background: #f6efe9;
    padding: .75rem 1rem;
    border-radius: .5rem;
}

.searchBox {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    padding: .25rem .5rem;
    border-radius: 30px;
    box-shadow: none;
    border: 1px solid #e8e2db;
}

.searchInput {
    border: 0;
    outline: 0;
    padding: .5rem .75rem;
}

.searchButton {
    background: transparent;
    border: 0;
    padding: .25rem;
}

/* card look */
.item .desc {
    background: #f6efe9;
    border-radius: 0 0 12px 12px;
}

.item img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    height: 320px;
    
}


.links a img {
    height: auto !important;
    max-height: none !important;
}

.price {
    display: block;
    margin-top: .5rem;
    font-weight: 600;
}

.bg-btn {
    background: #b89266;
    color: #fff;
    border: none;
}

/* hide DataTables default filter/info */
.dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info {
    display: none;
}

/* pagination container styling target */
.navigation-product {
    padding: 1.2rem 0;
}

    .navigation-product .pagination .page-link {
        min-width: 36px;
        text-align: center;
    }

    /* style for current page like screenshot */
    .navigation-product .pagination .active .page-link {
        background: #b89266;
        border-color: #b89266;
        color: #fff;
    }

#dtProducts_wrapper .dataTables_length,
#dtProducts_wrapper .dataTables_filter,
#dtProducts_wrapper .dataTables_info,
#dtProducts_wrapper .dataTables_paginate {
    display: none !important;
}

.img-fluid {
    max-width: 100% !important;
    height: auto !important;
}

