/*==================================================
    PixelWorld Product Listing
==================================================*/

.pw-product-card{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:16px;
    overflow:hidden;
    transition:all .35s ease;
    box-shadow:0 3px 12px rgba(0,0,0,.05);
    height:100%;
}

.pw-product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/*=====================================
Product Image
=====================================*/

.pw-product-image{
    display:block;
    position:relative;
    overflow:hidden;
    background:#f8f9fa;
    aspect-ratio:1/1;
}

.pw-product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}

.pw-product-card:hover
.pw-product-image img{

    transform:scale(1.08);

}

.pw-product-no-image{

    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:60px;
    color:#adb5bd;

}

/*=====================================
Discount Badge
=====================================*/

.pw-discount-badge{

    position:absolute;
    top:15px;
    left:15px;

    background:#dc3545;
    color:#fff;

    padding:6px 10px;

    border-radius:30px;

    font-size:.80rem;

    font-weight:600;

}

/*=====================================
Content
=====================================*/

.pw-product-content{

    padding:20px;

}

.pw-product-content h5{

    margin-bottom:10px;

    font-size:1.1rem;

    font-weight:700;

}

.pw-product-content h5 a{

    color:#212529;
    text-decoration:none;

}

.pw-product-content h5 a:hover{

    color:#0d6efd;

}

.pw-product-content p{

    color:#6c757d;
    font-size:.92rem;
    line-height:1.6;
    min-height:48px;

}

/*=====================================
Price
=====================================*/

.pw-product-price{

    margin:15px 0;

}

.current-price{

    color:#198754;
    font-size:1.35rem;
    font-weight:700;

}

.old-price{

    margin-left:10px;

    text-decoration:line-through;

    color:#6c757d;

}

/*=====================================
Customizable
=====================================*/

.pw-customizable{

    display:inline-flex;
    align-items:center;
    gap:6px;

    color:#6f42c1;

    font-weight:600;

    font-size:.90rem;

}

/*=====================================
Button
=====================================*/

.pw-product-card .btn{

    border-radius:50px;

    padding:10px 20px;

    font-weight:600;

}

.pw-product-card .btn:hover{

    transform:translateY(-2px);

}

/*=====================================
Page Heading
=====================================*/

.category-header{

    text-align:center;

    margin-bottom:50px;

}

.category-header h1{

    font-size:2.4rem;

    font-weight:700;

}

.category-header p{

    max-width:700px;

    margin:auto;

    color:#6c757d;

}

.category-count{

    margin-top:15px;

}

/*=====================================
Pagination
=====================================*/

.pagination .page-link{

    border-radius:50px;

    margin:0 4px;

    border:none;

    background:#f8f9fa;

    color:#212529;

}

.pagination .page-item.active .page-link{

    background:#0d6efd;

    color:#fff;

}

/*=====================================
Responsive
=====================================*/

@media(max-width:991px){

.category-header h1{

font-size:2rem;

}

}

@media(max-width:767px){

.category-header h1{

font-size:1.7rem;

}

.pw-product-content{

padding:15px;

}

.current-price{

font-size:1.15rem;

}

}

@media(max-width:575px){

.pw-product-content h5{

font-size:1rem;

}

.pw-product-content p{

font-size:.88rem;

}

}