/* part 1 */
/*======================================
SHOP PAGE
======================================*/

.shop-page{
    width:100%;
    padding:70px 0;
    background:#fff;
}

.shop-header{
    margin-bottom:45px;
    text-align:center;
}

.shop-title{
    font-size:42px;
    line-height:1.2;
    font-weight:700;
    color:#111;
    margin:0;
}

/*======================================
LAYOUT
======================================*/

.shop-layout{
    display:grid;
    grid-template-columns:180px 1fr;
    gap:30px;
    align-items:start;
}

/*======================================
SIDEBAR
======================================*/

.shop-sidebar{
    position:sticky;
    top:120px;
}

.shop-sidebar-inner{
    width:100%;
}

.shop-widget{
    margin-bottom:35px;
    padding-bottom:30px;
    border-bottom:1px solid #ececec;
}

.shop-widget:last-child{
    margin-bottom:0;
    border:none;
}

.shop-widget-title{
    font-size:20px;
    font-weight:600;
    margin-bottom:20px;
    color:#111;
}

/*======================================
WIDGET LIST
======================================*/

.shop-widget ul{
    list-style:none;
    margin:0;
    padding:0;
}

.shop-widget ul li{
    margin-bottom:14px;
}

.shop-widget ul li:last-child{
    margin-bottom:0;
}

.shop-widget ul li a{
    color:#444;
    text-decoration:none;
    transition:.3s;
}

.shop-widget ul li a:hover{
    color:var(--primary-color);
}

/*======================================
PRODUCT AREA
======================================*/

.shop-content{
    width:100%;
    min-width:0;
}

/*======================================
TOOLBAR
======================================*/

.shop-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
    padding-bottom:20px;
    border-bottom:1px solid #ececec;
}

.shop-result{
    font-size:15px;
    color:#666;
}

.shop-sorting select{
    min-width:220px;
    height:46px;
    padding:0 15px;
    border:1px solid #ddd;
    background:#fff;
    outline:none;
    cursor:pointer;
    font-size:14px;
}

/*======================================
WOOCOMMERCE GRID
======================================*/

.shop-content ul.products{
    margin:0;
    padding:0;
    list-style:none;

    display:grid;

    grid-template-columns:repeat(4,minmax(0,1fr));

    gap:30px;
}

.shop-content ul.products::before,
.shop-content ul.products::after{
    display:none !important;
}

.shop-content ul.products li.product{
    width:100% !important;
    margin:0 !important;
    float:none !important;
}

/*======================================
TABLET
======================================*/

@media(max-width:991px){

.shop-layout{

    grid-template-columns:1fr;

}

.shop-content{

    order:1;

}

.shop-sidebar{

    order:2;

    position:static;

    margin-top:60px;

}

.shop-content ul.products{

    grid-template-columns:repeat(3,minmax(0,1fr));

}

.shop-toolbar{

    flex-wrap:wrap;

    gap:20px;

}

}

/*======================================
MOBILE
======================================*/

@media(max-width:767px){

.shop-page{

    padding:40px 0;

}

.shop-title{

    font-size:30px;

}

.shop-content ul.products{

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:20px;

}

.shop-toolbar{

    flex-direction:column;

    align-items:flex-start;

}

.shop-sorting{

    width:100%;

}

.shop-sorting select{

    width:100%;

}

.shop-sidebar{

    margin-top:40px;

}

}
/* part 1 */

/* part 2 */
/*======================================
PRODUCT CARD
======================================*/

.shop-content ul.products li.product{
    position:relative;
    background:#fff;
    transition:.35s ease;
}

.shop-content ul.products li.product:hover{
    transform:translateY(-8px);
}

/*======================================
PRODUCT IMAGE
======================================*/

.shop-content ul.products li.product a img{
    width:100%;
    height:340px;
    object-fit:cover;
    display:block;
    margin:0;
    transition:.45s ease;
}

.shop-content ul.products li.product:hover img{
    transform:scale(1.05);
}

/*======================================
SALE BADGE
======================================*/

.shop-content span.onsale{
    position:absolute;
    top:15px;
    left:15px;
    margin:0;
    min-width:60px;
    min-height:28px;
    line-height:28px;
    padding:0 14px;
    border-radius:30px;
    background:#111;
    color:#fff;
    font-size:12px;
    font-weight:600;
    z-index:10;
}

/*======================================
CONTENT
======================================*/

.shop-content ul.products li.product .woocommerce-loop-product__title{
    font-size:18px;
    font-weight:600;
    color:#111;
    line-height:1.5;
    padding:18px 0 8px;
    margin:0;
}

.shop-content ul.products li.product .price{
    display:block;
    margin:0 0 16px;
    color:#111;
    font-size:17px;
    font-weight:700;
}

.shop-content ul.products li.product .price del{
    opacity:.5;
    margin-right:6px;
}

/*======================================
RATING
======================================*/

.shop-content .star-rating{
    margin:12px 0;
    color:#ffb400;
}

/*======================================
ADD TO CART
======================================*/

.shop-content ul.products li.product .button{
    width:100%;
    padding:14px 20px;
    margin-top:12px;
    border:1px solid #111;
    background:#fff;
    color:#111;
    text-align:center;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    transition:.35s;
}

.shop-content ul.products li.product:hover .button{
    background:#111;
    color:#fff;
}

/*======================================
CATEGORY
======================================*/

.shop-content ul.products li.product .posted_in{
    display:none;
}

/*======================================
LINK
======================================*/

.shop-content ul.products li.product a{
    text-decoration:none;
}

/*======================================
PAGINATION
======================================*/

.woocommerce-pagination{
    margin-top:60px;
    display:flex;
    justify-content:center;
}

.woocommerce-pagination ul.page-numbers{
    display:flex;
    gap:10px;
    margin:0;
    padding:0;
    border:none;
}

.woocommerce-pagination ul.page-numbers li{
    border:none;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #ddd;
    color:#111;
    font-weight:600;
    text-decoration:none;
}

.woocommerce-pagination .current{
    background:#111;
    color:#fff;
    border-color:#111;
}

/*======================================
HOVER
======================================*/

.shop-content ul.products li.product,
.shop-content ul.products li.product img,
.shop-content ul.products li.product .button{
    transition:all .35s ease;
}

/*======================================
TABLET
======================================*/

@media(max-width:991px){

.shop-content ul.products li.product a img{

    height:290px;

}

.shop-content ul.products li.product .woocommerce-loop-product__title{

    font-size:16px;

}

}

/*======================================
MOBILE
======================================*/

@media(max-width:767px){

.shop-content ul.products{

    gap:20px;

}

.shop-content ul.products li.product a img{

    height:220px;

}

.shop-content ul.products li.product .woocommerce-loop-product__title{

    font-size:15px;

}

.shop-content ul.products li.product .price{

    font-size:15px;

}

.shop-content ul.products li.product .button{

    padding:11px 12px;

    font-size:12px;

}

}
/* part 2 */