/* =========================================
SHOP PAGE
========================================= */

.shop-hero{
    background:#f8f9fa;
    padding:80px 0 50px;
    text-align:center;
}

.shop-header h1{
    font-size:3rem;
    font-weight:700;
    margin-bottom:10px;
}

.shop-header p{
    color:#6b7280;
}

/* =========================================
SHOP SECTION
========================================= */

.shop-section{
    padding:80px 0;
}

/* =========================================
SIDEBAR
========================================= */

.shop-sidebar{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,0.05);
    position:sticky;
    top:100px;
}

.filter-box{
    margin-bottom:30px;
}

.filter-box h5{
    font-size:18px;
    margin-bottom:15px;
}

.filter-list{
    list-style:none;
    padding:0;
}

.filter-list li{
    margin-bottom:12px;
}

.filter-list a{
    color:#111827;
    text-decoration:none;
}

.filter-list a:hover{
    color:#d4af37;
}

/* =========================================
FORM CONTROLS
========================================= */

.shop-sidebar .form-control,
.shop-sidebar .form-range,
.shop-sidebar select{
    border-radius:12px;
}

/* =========================================
PRODUCT CARD
========================================= */

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    height:100%;
    display:flex;
    flex-direction:column;
    transition:0.3s ease;
    box-shadow:0 5px 25px rgba(0,0,0,0.05);
}

.product-card:hover{
    transform:translateY(-6px);
}

/* =========================================
PRODUCT IMAGE
========================================= */

.product-image{
    aspect-ratio:1/1;
    overflow:hidden;
    background:#f3f4f6;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.product-card:hover .product-image img{
    transform:scale(1.05);
}

/* =========================================
PRODUCT INFO
========================================= */

.product-info{
    padding:20px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.product-info h4{
    font-size:18px;
    margin-bottom:10px;
    font-weight:600;
}

.product-price{
    font-size:20px;
    font-weight:700;
    color:#111827;
    margin-bottom:20px;
}

/* =========================================
PRODUCT ACTIONS
========================================= */

.product-actions{
    margin-top:auto;
    display:flex;
    align-items:center;
    gap:10px;
}

.add-cart-btn{
    flex:1;
    background:#111827;
    color:white;
    text-align:center;
    padding:12px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.add-cart-btn:hover{
    background:#374151;
    color:white;
}

.wishlist-icon{
    width:45px;
    height:45px;
    border-radius:12px;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
}

/* =========================================
PAGINATION
========================================= */

.shop-pagination{
    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:10px;
}

.shop-pagination a{
    width:45px;
    height:45px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#111827;
    text-decoration:none;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.shop-pagination a.active{
    background:#111827;
    color:white;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .shop-sidebar{
        margin-bottom:30px;
        position:relative;
        top:0;
    }

}

@media(max-width:767px){

    .shop-header h1{
        font-size:2.3rem;
    }

}

.empty-products{
    background:#fff;
    border-radius:20px;
    padding:60px 20px;
}