.shop-banner{
    position:relative;
    padding:160px 0;
    background:linear-gradient(135deg,#1F4E79,#0F3D5E);
    color:#fff;
}

.shop-banner .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
}

.shop-banner .container{
    position:relative;
    z-index:2;
}

.shop-banner h1{
    font-size:58px;
    font-weight:800;
}

.shop-banner p{
    font-size:20px;
    max-width:700px;
    margin:auto;
}

.shop-filters{
    padding:40px 0;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.shop-filters .form-control,
.shop-filters .form-select{
    height:58px;
    border-radius:12px;
}

.btn-shop-filter{
    width:100%;
    height:58px;
    border:none;
    border-radius:12px;
    background:#D4B15A;
    color:#fff;
    font-weight:600;
}

.shop-section{
    padding:80px 0;
    background:#f8fafc;
}

.shop-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.shop-card:hover{
    transform:translateY(-10px);
}

.shop-image{
    height:260px;
    position:relative;
    overflow:hidden;
}

.shop-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.shop-card:hover img{
    transform:scale(1.08);
}

.shop-placeholder{
    height:100%;
    background:#ddd;
    display:flex;
    align-items:center;
    justify-content:center;
}

.shop-badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#D4B15A;
    color:#fff;
    padding:8px 15px;
    border-radius:50px;
    font-size:12px;
}

.shop-content{
    padding:25px;
}

.shop-price{
    font-size:30px;
    font-weight:800;
    color:#0F3D5E;
    margin:15px 0;
}

.shop-features{
    display:flex;
    justify-content:space-between;
    margin:15px 0;
}

.btn-shop-view{
    width:100%;
    background:#0F3D5E;
    color:#fff;
    border-radius:10px;
    padding:12px;
}

.btn-shop-view:hover{
    color:#fff;
}

.shop-cta{
    padding:100px 0;
    background:#0F3D5E;
    color:#fff;
    text-align:center;
}

@media(max-width:768px){

    .shop-banner h1{
        font-size:36px;
    }

}