/*=========================================
  MOBILE (max-width: 768px)
=========================================*/
@media only screen and (max-width:768px){

/*=========================
  SHOP BANNER
=========================*/

.shop-banner{
    margin-top:68px;
    height:240px;
}

.shop-banner img{
    object-fit:cover;
    object-position:center;
}

.shop-banner-overlay{
    background:rgba(0,0,0,.45);
}

.shop-banner-content{
    width:100%;
    padding:0 20px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}

.shop-banner-content span{
    font-size:11px;
    letter-spacing:3px;
}

.shop-banner-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:38px;
    line-height:1;
    margin:12px 0;
}

.shop-banner-content p{
    font-size:14px;
    line-height:24px;
    max-width:100%;
}


/*=========================
 CATEGORY PILLS
=========================*/

.shop-cat-wrap{
    padding:0 12px;
}

.shop-categories{
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    gap:12px;
    padding:18px 2px;
    margin:0;
}

.shop-categories::-webkit-scrollbar{
    display:none;
}

.shop-categories a{
    flex:0 0 auto;
    padding:10px 18px;
    font-size:13px;
    border-radius:50px;
    white-space:nowrap;
}


/*=========================
 FILTER BAR
=========================*/

.top-filter{
    padding:0 12px 15px;
}

.top-filter-inner form{
    display:flex;
    flex-direction:column;
    gap:14px;
    align-items:flex-start;
}

.filter-left,
.filter-right{
    width:100%;
    display:flex;
    justify-content:space-between;
    gap:10px;
}

.filter-left select,
.filter-right select{
    flex:1;
    height:42px;
    border:1px solid #ececec;
    border-radius:10px;
    padding:0 12px;
    background:#fff;
}


/*=========================
 PRODUCT GRID
=========================*/

.shop-wrap{
    width:100%;
    padding:0 10px 30px;
    margin:0;
}

.p-wrapper{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    width:100%;
}

.p-card{
    width:100%;
    min-width:0;
    padding:8px;
    border-radius:16px;
    overflow:hidden;
}

.p-img{
    width:100%;
    aspect-ratio:1/1;
    height:auto;
}

.p-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}


/* badges */

.tag,
.off{
    font-size:8px;
    padding:3px 6px;
}

.side-icons{
    right:8px;
    top:8px;
}


/* text */

.cat{
    margin-top:10px;
    font-size:11px;
}

.p-card h3{
    font-size:14px;
    line-height:18px;
    min-height:36px;
    margin:6px 0;
}

.short-line{
    font-size:11px;
    line-height:15px;
    min-height:30px;
}


/* weight */

.row{
    display:block;
}

.label{
    display:block;
    margin-bottom:6px;
}

.weight{
    width:100%;
}

.weight select{
    width:100%;
    height:32px;
}


/* price */

.main-price{
    font-size:16px;
}

.old-price{
    font-size:11px;
}


/* button */

.cart-btn{
    width:100%;
    height:38px;
    border-radius:10px;
    font-size:12px;
}


/* buy row */

.buy-row{
    display:block;
}

.price-box{
    margin-bottom:10px;
}


/* wishlist */

.wish{
    width:30px;
    height:30px;
    font-size:14px;
}


/*=========================
 COUNT
=========================*/

.filter-right div{
    font-size:13px;
    white-space:nowrap;
}

}


/*==========================================
 SMALL MOBILE (max-width: 480px)
==========================================*/

@media only screen and (max-width:480px){

.shop-banner{
    height:210px;
}

.shop-banner-content h1{
    font-size:30px;
}

.shop-banner-content p{
    font-size:13px;
}

.p-wrapper{
    gap:12px;
}

.p-img{
    aspect-ratio:1/1;
    height:auto;
}

.p-card{
    padding:8px;
}

.p-card h3{
    font-size:16px;
    line-height:22px;
    min-height:44px;
}

.main-price{
    font-size:18px;
}

.cart-btn{
    height:42px;
    font-size:13px;
}

}