
.svsc-section{
    width:100%;
}

.svsc-listings-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.svsc-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 4px 18px rgba(0,0,0,0.08);
}

.svsc-image-wrap{
    aspect-ratio:1/1;
    overflow:hidden;
}

.svsc-image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.svsc-content{
    padding:12px;
}

.svsc-title{
    font-size:15px;
    font-weight:600;
    line-height:1.4;
}

.svsc-price{
    margin-top:6px;
    font-size:14px;
    font-weight:500;
}

.svsc-popup{
    position:fixed;
    inset:0;
    background:#fff;
    z-index:999999;
    display:none;
    width:100%;
    height:100%;
}

.svsc-popup.active{
    display:block;
}

#svsc-popup-content{
    width:100%;
    height:100%;
}

#svsc-popup-frame{
    width:100%;
    height:100%;
    border:none;
    background:#fff;
}

.svsc-popup-close{
    position:fixed;
    top:16px;
    right:16px;
    width:44px;
    height:44px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 4px 14px rgba(0,0,0,0.15);
    z-index:9999999;
    font-size:28px;
    cursor:pointer;
}

@media(max-width:767px){

    .svsc-listings-row{
        gap:10px;
    }

    .svsc-content{
        padding:10px;
    }

}
