.store-toolbar{

display:flex;

justify-content:space-between;

align-items:end;

margin-bottom:40px;

padding-bottom:25px;

border-bottom:1px solid #ececec;

}

.store-subtitle{

display:block;

font-size:13px;

letter-spacing:3px;

text-transform:uppercase;

color:#8AA08B;

margin-bottom:8px;

}

.store-toolbar h3{

font-size:38px;

font-weight:700;

margin:0;

color:#222;

}

.store-count{

font-size:16px;

color:#777;

}

.store-count strong{

font-size:30px;

color:#8AA08B;

margin-right:8px;

}

.product-card{

background:#fff;

border-radius:24px;

overflow:hidden;

border:1px solid #eee;

transition:.35s;

height:100%;

}

.product-card:hover{

transform:translateY(-10px);

box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.product-image{

display:flex;

justify-content:center;

align-items:center;

height:280px;

background:#fafafa;

overflow:hidden;

}

.product-image img{

max-width:80%;

max-height:80%;

transition:.4s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-content{

padding:25px;

text-align:center;

}

.product-content h5{

height:56px;

overflow:hidden;

margin-bottom:18px;

}

.product-content h5 a{

color:#222;

font-size:18px;

font-weight:600;

text-decoration:none;

}

.product-content h5 a:hover{

color:#8AA08B;

}

.product-price{

font-size:28px;

font-weight:700;

color:#8AA08B;

margin-bottom:22px;

}

.product-btn{

    display:flex;
    justify-content:center;
    align-items:center;

    height:54px;

    border-radius:14px;

    background:#8AA08B;

    color:#fff;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

}

.product-btn:hover{

    background:#222;

    color:#fff;

    text-decoration:none;

}

.empty-store{

text-align:center;

padding:90px 20px;

}

.empty-store i{

font-size:70px;

color:#8AA08B;

margin-bottom:25px;

}

.empty-store h3{

font-size:34px;

margin-bottom:15px;

}

.empty-store p{

color:#777;

margin-bottom:30px;

}

.store-pagination{

margin-top:60px;

display:flex;

justify-content:center;

}

.store-pagination ul{

display:flex;

gap:12px;

padding:0;

margin:0;

list-style:none;

}

.store-pagination a{

width:46px;

height:46px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

background:#fff;

border:1px solid #e5e5e5;

color:#555;

text-decoration:none;

transition:.3s;

}

.store-pagination a:hover{

background:#8AA08B;

color:#fff;

}

.store-pagination a.active{

background:#8AA08B;

border-color:#8AA08B;

color:#fff;

}

@media(max-width:991px){

.store-toolbar{

flex-direction:column;

align-items:flex-start;

gap:20px;

}

.store-toolbar h3{

font-size:30px;

}

.product-image{

height:230px;

}

}


.collection-section{

    margin-bottom:80px;

}

.collection-header{

    margin-bottom:40px;

}

.collection-badge{

    display:inline-flex;
    align-items:center;
    padding:7px 18px;
    background:#eef5ef;
    color:#8AA08B;
    border-radius:40px;
    font-size:12px;
    letter-spacing:2px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:18px;

}
.collection-title{

    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
    line-height:1.1;

}

.collection-desc{

    color:#777;
    font-size:16px;
    max-width:550px;
    margin:0;

}

.collection-footer{

    display:flex;
    justify-content:center;
    margin-top:15px;
    margin-bottom:70px;

}

.view-all-btn{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:16px 34px;

    border-radius:50px;

    background:#222;
    color:#fff;

    text-decoration:none;

    font-weight:600;
    letter-spacing:.5px;

    transition:.35s;

}

.view-all-btn:hover{

    background:#8AA08B;
    color:#fff;
    text-decoration:none;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(138,160,139,.35);

}


.view-all-btn i{

    transition:.3s;

}

.view-all-btn:hover i{

    transform:translateX(6px);

}
