/*=========================================
            SHOP HERO
=========================================*/

.shop-hero{
    background:linear-gradient(135deg,#2E7D32,#66BB6A);
    padding:70px 0;
    color:#fff;
    margin-bottom:50px;
}

.shop-breadcrumb{
    margin-bottom:15px;
}

.shop-breadcrumb a{
    color:#fff;
    text-decoration:none;
}

.shop-breadcrumb span{
    margin:0 10px;
}

.shop-hero h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:10px;
}

.shop-hero p{
    font-size:18px;
    opacity:.9;
}

/*=========================================
            SHOP TOOLBAR
=========================================*/

.shop-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
    padding:20px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.shop-result h3{
    margin:0;
    font-weight:700;
}

.shop-result p{
    margin:5px 0 0;
    color:#777;
}

.shop-tools{
    display:flex;
    align-items:center;
    gap:15px;
}

.shop-sort{
    height:48px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:0 18px;
    outline:none;
}

.view-buttons{
    display:flex;
    gap:10px;
}

.view-buttons button{
    width:45px;
    height:45px;
    border:none;
    border-radius:12px;
    background:#F5F5F5;
    cursor:pointer;
    transition:.3s;
}

.view-buttons button:hover,
.view-buttons .active{
    background:#2E7D32;
    color:#fff;
}

/*=========================================
            FILTER SIDEBAR
=========================================*/

.shop-sidebar{
    position:sticky;
    top:120px;
}

.filter-card{
    background:#fff;
    padding:22px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.filter-card h5{
    font-weight:700;
    margin-bottom:20px;
}

.category-list{
    list-style:none;
    margin:0;
    padding:0;
}

.category-list li{
    margin-bottom:10px;
}

.category-list a{
    display:block;
    padding:10px 14px;
    border-radius:10px;
    color:#333;
    text-decoration:none;
    transition:.3s;
}

.category-list a:hover,
.category-list a.active{
    background:#2E7D32;
    color:#fff;
}
/*=========================================
            PRODUCT CARD
=========================================*/

.shop-product{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.shop-product:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

/*=========================================
            PRODUCT IMAGE
=========================================*/

.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.shop-product:hover .product-image img{
    transform:scale(1.08);
}

/*=========================================
            DISCOUNT BADGE
=========================================*/

.discount-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#E53935;
    color:#fff;
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

/*=========================================
            FLOATING BUTTONS
=========================================*/

.wishlist-btn,
.quick-btn{

    position:absolute;

    width:42px;

    height:42px;

    background:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#333;

    text-decoration:none;

    box-shadow:0 5px 15px rgba(0,0,0,.12);

    transition:.3s;

}

.wishlist-btn{

    top:15px;

    right:15px;

}

.quick-btn{

    top:65px;

    right:15px;

}

.wishlist-btn:hover,
.quick-btn:hover{

    background:#2E7D32;

    color:#fff;

}

/*=========================================
            PRODUCT CONTENT
=========================================*/

.product-content{
    padding:22px;
}

.product-category{
    color:#2E7D32;
    font-size:14px;
    font-weight:600;
    margin-bottom:10px;
}

.product-content h5{
    margin-bottom:12px;
    min-height:52px;
}

.product-content h5 a{
    color:#222;
    text-decoration:none;
    transition:.3s;
}

.product-content h5 a:hover{
    color:#2E7D32;
}

/*=========================================
            RATING
=========================================*/

.product-rating{
    color:#FFC107;
    font-size:15px;
    margin-bottom:15px;
}

.product-rating span{
    color:#777;
    font-size:14px;
    margin-left:8px;
}

/*=========================================
            PRICE
=========================================*/

.product-price{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.sale-price{
    color:#2E7D32;
    font-size:24px;
    font-weight:700;
}

.product-price del{
    color:#999;
    font-size:16px;
}

/*=========================================
            BUTTON
=========================================*/

.cart-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    width:100%;

    height:48px;

    background:#2E7D32;

    color:#fff;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.cart-btn:hover{

    background:#1B5E20;

    color:#fff;

}
/*=========================================
            PAGINATION
=========================================*/

.pagination{
    gap:10px;
}

.pagination .page-link{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:none;
    border-radius:12px;
    background:#F5F5F5;
    color:#333;
    font-weight:600;
    transition:.3s;
}

.pagination .page-link:hover{
    background:#2E7D32;
    color:#fff;
}

.pagination .page-item.active .page-link{
    background:#2E7D32;
    color:#fff;
}

/*=========================================
            TOTAL PRODUCTS
=========================================*/

.shop-total{
    margin-top:35px;
    text-align:center;
    color:#777;
    font-size:16px;
}

/*=========================================
            HOVER EFFECTS
=========================================*/

.filter-card,
.shop-toolbar,
.shop-product{

    transition:.35s;

}

.filter-card:hover{

    transform:translateY(-4px);

}

.shop-toolbar:hover{

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

/*=========================================
            SCROLLBAR
=========================================*/

.category-list{

    max-height:350px;

    overflow-y:auto;

}

.category-list::-webkit-scrollbar{

    width:6px;

}

.category-list::-webkit-scrollbar-thumb{

    background:#2E7D32;

    border-radius:10px;

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:992px){

.shop-toolbar{

flex-direction:column;

align-items:flex-start;

gap:20px;

}

.shop-tools{

width:100%;

justify-content:space-between;

}

.shop-sidebar{

position:relative;

top:0;

margin-bottom:30px;

}

}

@media(max-width:768px){

.shop-hero{

padding:50px 0;

}

.shop-hero h1{

font-size:34px;

}

.shop-product{

margin-bottom:25px;

}

.product-image img{

height:240px;

}

.shop-toolbar{

padding:18px;

}

.shop-tools{

flex-direction:column;

align-items:stretch;

}

.shop-sort{

width:100%;

}

.view-buttons{

justify-content:center;

}

}

@media(max-width:576px){

.shop-hero{

text-align:center;

}

.shop-hero h1{

font-size:28px;

}

.product-content{

padding:18px;

}

.sale-price{

font-size:20px;

}

.cart-btn{

height:45px;

font-size:15px;

}

}
