
.top-filter{
    width:100%;
    display:flex;
    justify-content:center;
    padding:0px;
    box-sizing:border-box;
    font-size:14px;
}

.top-filter-inner{
    width:100%;
    max-width:1400px;
}

.top-filter-inner form{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.filter-left,
.filter-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.filter-left select,
.filter-right select{
    border:none;
    background:transparent;
    font-size:14px;
    cursor:pointer;
}

.shop-cat-wrap{
    width:100%;
    display:flex;
    justify-content:center;
    padding:0px;
}

.shop-categories{
    width:100%;
    max-width:1400px;
    display:flex;
    gap:26px;
    overflow-x:auto;
    scrollbar-width:none;
    margin-top:10px;
    padding:20px 0;
    margin-bottom:25px;
}

.shop-categories::-webkit-scrollbar{
    display:none;
}

.shop-categories a{
    text-decoration:none;
    color:#222;
    background:#fff;
    border:1px solid #ddd;
    border-radius:50px;
    padding:10px 22px;
    white-space:nowrap;
    transition:.3s;
    font-size:15px;
    font-weight:600;
}

.shop-categories a:hover{
    background:#111;
    color:#fff;
    border-color:#111;
}

.shop-categories a.active{
    background:#1a2a1a;
    color:#fff;
    border-color:#1a2a1a;
}

.shop-banner{
    position:relative;
    width:100%;
    height:620px;
    overflow:hidden;
    margin-top:110px;
}
.shop-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.shop-banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.shop-banner-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:2;
    max-width:900px;
    width:100%;
    text-align:center;
    color:#fff;
    padding:20px;
}

.shop-banner-content span{
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:13px;
}

.shop-banner-content h1{
    font-family:'Cormorant Garamond', serif;
    font-size:62px;
    margin:15px 0;
}

.shop-banner-content p{
    font-size:18px;
    line-height:1.8;
}



.banner-content{
    position:relative;
    z-index:2;
    color:#fff;
    text-align:center;
}


/*======================================
  PRODUCT AREA / GRID
======================================*/
.shop-wrap{
    width:100%;
    max-width:1400px;
    margin:10px auto 0px;
    padding:0px;
    box-sizing:border-box;
}

.p-wrapper{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
}

/*======================================
  PRODUCT CARD
======================================*/
.p-card{
    background:#fcfaf8;
    border-radius:22px;
    padding:16px;
    position:relative;

    display:flex;
    flex-direction:column;

    border:0px solid #f0e6da;
    box-shadow:0 10px 10px rgba(0,0,0,.1);

    transition:.3s;
    animation:cardFadeUp .5s ease both;
}

.p-card:hover{
    transform:translateY(-5px);
}

/* stagger animation for first row of cards */
.p-card:nth-child(1){ animation-delay:.05s; }
.p-card:nth-child(2){ animation-delay:.1s; }
.p-card:nth-child(3){ animation-delay:.15s; }
.p-card:nth-child(4){ animation-delay:.2s; }
.p-card:nth-child(5){ animation-delay:.25s; }

/* click layer - full card clickable */
.card-link{
    position:absolute;
    inset:0;
    z-index:1;
}

.p-card form{
    position:relative;
    z-index:2;
}

/* PRODUCT IMAGE */
.p-img{
    width:100%;
    height:220px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    border-radius:14px;
}

.p-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s ease;
}

.p-card:hover .p-img img{
    transform:scale(1.06);
}

/*======================================
  BADGES
======================================*/
.tag{
    position:absolute;
    top:-7px;
    left:-5px;
    background:#ff0000;
    color:#fff;
    font-size:10px;
    padding:3px 7px;
    border-radius:6px;
    z-index:3;
}

.off{
    position:absolute;
    top:24px;
    left:-5px;
    background:#1b8f3a;
    color:#fff;
    font-size:10px;
    padding:3px 7px;
    border-radius:6px;
    z-index:3;
}

.side-icons{
    position:absolute;
    right:-5px;
    top:-5px;
    z-index:3;
}

.wish{
    background:#fff;
    border:1px solid #eee;
    width:24px;
    height:24px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#999;
    transition:.25s;
}

.wish:hover{
    transform:scale(1.15);
}

.wish.active{
    color:#e63946;
}

/*======================================
  TEXT / LABELS
======================================*/
.cat{
    font-size:12px;
    color:#666;
    margin-top:8px;
}

.p-card h3{
    font-size:16px;
    font-weight:600;
    margin:6px 0 10px;
}

.short-line{
    font-size:12px;
    color:#ff0000;
    margin:-4px 0 8px;
}

.row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:6px 0;
}

.label{
    font-size:12px;
    color:#333;
    font-weight:600;
}

/*======================================
  WEIGHT DROPDOWN
======================================*/
.weight select{
    padding:4px 10px;
    border-radius:20px;
    border:1px solid #ddd;
    width:90px;
    font-size:12px;
}

/*======================================
  PRICE
======================================*/
.price-box{
    display:flex;
    flex-direction:column;
    margin-top:6px;
}

.main-price{
    color:#1a2a1a;
    font-size:17px;
    font-weight:700;
}

.old-price{
    color:#999;
    font-size:12px;
    text-decoration:line-through;
    margin-top:2px;
}

/*======================================
  CART BUTTON / BUY ROW
======================================*/
.cart-btn{
    width:100%;
    background:#1a2a1a;
    color:#fff;
    padding:11px;
    border-radius:30px;
    margin-top:10px;
    border:none;
    cursor:pointer;
    transition:.3s;
}

.cart-btn:hover{
    background:#0f1a0f;
}

.buy-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:10px;
}

.buy-row .cart-btn{
    width:auto;
    padding:8px 14px;
    margin:0;
}

.buy-row .price-box{
    margin:0;
}
.qty-box{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
margin-top:10px;
}

.qty-btn{
width:34px;
height:34px;
border:none;
border-radius:50%;
background:#16351d;
color:#fff;
font-size:18px;
cursor:pointer;
}

.qty-value{
font-size:16px;
font-weight:700;
min-width:25px;
text-align:center;
}

/*======================================
  ANIMATIONS
======================================*/
@keyframes cardFadeUp{
    from{
        opacity:0;
        transform:translateY(18px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes pillPop{
    from{ transform:scale(.9); opacity:.5; }
    to{ transform:scale(1); opacity:1; }
}
