/*=========================
PRODUCT GRID
=========================*/

.jasani-products{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

@media(max-width:1024px){
.jasani-products{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:767px){
.jasani-products{
grid-template-columns:1fr;
}
}

/*=========================
CARD
=========================*/

.full-link{
    position:absolute;
    inset:0;
    z-index:10;
}


.jasani-card{

position:relative;

overflow:hidden;

background:#111;

border-radius:0;

z-index: 10;
}

/*=========================
IMAGE
=========================*/

.jasani-image{

display:block;

position:relative;

aspect-ratio:1/1;

overflow:hidden;

text-decoration:none;

background:#eee;

z-index: 10;

}

.jasani-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.45s ease;

display:block;

}

.jasani-card:hover img{

transform:scale(1.08);

filter:brightness(.55);

}

/*=========================
PRICE
=========================*/

.price-strip{

position:absolute;

top:20px;

right:20px;

background:#000;

color:#fff;

padding:10px 8px;

font-size:13px;

font-weight:700;

letter-spacing:.5px;

writing-mode:vertical-rl;

transform:rotate(180deg);

z-index:10;

}

/*=========================
TITLE
=========================*/

.title{

position:absolute;

left:22px;

bottom:22px;

right:60px;

font-size:22px;

font-weight:800;

line-height:1.05;

text-transform:uppercase;

color:#111;

z-index:12;

display:-webkit-box;

-webkit-line-clamp:2;

-webkit-box-orient:vertical;

overflow:hidden;

}

/*=========================
OVERLAY
=========================*/

.overlay{

position:absolute;

inset:0;

display:flex;

justify-content:center;

align-items:center;

opacity:0;

transition:.35s;

background:rgba(0,0,0,.10);

z-index: 5;

}

.jasani-card:hover .overlay{

opacity:1;

z-index: 5;

}

/*=========================
BUTTONS
=========================*/

.actions{

display:flex;

gap:18px;

z-index: 10;

}

.circle-btn{

width:45px;

height:45px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#fff;

color:#111;

font-size:20px;

transition:.3s;

text-decoration:none;

z-index: 6;

}

.circle-btn:hover{

background:#111;

color:#fff;

transform:translateY(-4px);

}

.circle-btn i{

font-size:20px;

line-height:1;

}

.jasani-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin:40px 0;
    flex-wrap:wrap;
}

.jasani-pagination a,
.jasani-pagination span{
    text-decoration:none;
    color:#fff;
    font-size:16px;
}

.jasani-pagination a:hover{
    text-decoration:underline;
}

.jasani-pagination .active{
    font-weight:700;
}

.jasani-pagination span{
    cursor:default;
}


/*=========================
SHOP LAYOUT
=========================*/

.jasani-shop-wrapper{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:40px;
    align-items:start;
}

.jasani-sidebar{
    position:sticky;
    top:20px;
}

.jasani-filter-box{
    margin-bottom:30px;
}

.jasani-filter-box h4{
    margin:0 0 15px;
    font-size:20px;
    font-weight:700;
}

.jasani-filter-box input[type="text"]{
    width:100%;
    height:45px;
    padding:0 15px;
    border:1px solid #ddd;
}

.jasani-filter-box label{
    display:block;
    margin-bottom:10px;
    cursor:pointer;
    font-size:15px;
}

.jasani-filter-box input[type="radio"]{
    margin-right:8px;
}

.jasani-filter-btn{
    width:100%;
    height:45px;
    border:none;
    background:#000;
    color:#fff;
    font-weight:700;
    cursor:pointer;
}

.jasani-right{
    width:100%;
}

/* Responsive */

@media(max-width:991px){

.jasani-shop-wrapper{
    grid-template-columns:1fr;
}

.jasani-sidebar{
    position:static;
}

}

/*=========================
PRICE RANGE
=========================*/

.jasani-filter-box input[type=range]{

    width:100%;
    margin:10px 0;

}

#min-price-value,
#max-price-value{

    display:block;
    font-size:14px;
    margin-top:5px;

}

.price-values{
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
    font-size:14px;
}

#price-slider{
    margin:18px 5px;
}

.jasani-reset-filter{
display:block;
margin-top:15px;
text-decoration:none;
color:#000;
font-weight:600;
}