/* ========================================================
   Marketplace Search Cards
======================================================== */

.crms-search-results-section{
    padding:80px 0;
    background:#f7f8fa;
}

.cr-container{
    max-width:1280px;
    margin:0 auto;
    padding:0 20px;
}

.crms-search-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
    flex-wrap:wrap;
    gap:20px;
}

.crms-search-title{
    font-size:34px;
    font-weight:700;
    color:#1b1b1b;
    margin:0;
}

.crms-search-summary p{
    margin-top:8px;
    color:#666;
}

.crms-clear-search{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    border-radius:30px;
    background:#fff;
    color:#0F766E;
    border:2px solid #0F766E;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.crms-clear-search:hover{
    background:#0F766E;
    color:#fff;
}

.crms-search-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.crms-search-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.crms-search-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.crms-search-card-image{

    position:relative;

    overflow:hidden;

    height:240px;

}

.crms-search-card-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.crms-search-card:hover img{

    transform:scale(1.08);

}

.crms-property-badge{

    position:absolute;

    left:20px;

    top:20px;

    background:#0F766E;

    color:#fff;

    padding:7px 14px;

    border-radius:25px;

    font-size:13px;

    font-weight:600;

}

/* ==========================================
   Card Header
========================================== */

.crms-card-top{

    position:absolute;

    top:18px;

    left:18px;

    right:18px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    z-index:2;

}

.crms-property-badge{

    position:static;

    background:#0F766E;

    color:#fff;

    padding:8px 16px;

    border-radius:24px;

    font-size:13px;

    font-weight:600;

}

.crms-wishlist-btn{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.92);

    cursor:pointer;

    font-size:20px;

    transition:.3s;

    box-shadow:0 6px 20px rgba(0,0,0,.12);

}

.crms-wishlist-btn:hover{

    background:#fff;

    transform:scale(1.08);

}

.crms-search-card-content{

    padding:24px;

}

.crms-search-card-content h3{

    margin:0 0 12px;

    font-size:22px;

}

.crms-search-card-content h3 a{

    color:#222;

    text-decoration:none;

}

/* ==========================================
   Property Rating
========================================== */

.crms-property-rating{

    display:flex;

    align-items:center;

    gap:8px;

    margin-bottom:15px;

}

.crms-stars{

    color:#f5b400;

    font-size:14px;

    letter-spacing:2px;

}

.crms-rating-text{

    font-size:13px;

    color:#666;

    font-weight:600;

}

.crms-search-location{

    color:#777;

    margin-bottom:20px;

}

.crms-property-features{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:18px;

    font-size:15px;

}

.crms-property-amenities{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-bottom:25px;

}

.crms-property-amenities span{

    background:#eef7f6;

    color:#0F766E;

    padding:6px 12px;

    border-radius:20px;

    font-size:13px;

}

.crms-property-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:20px;

}

.crms-property-price small{

    display:block;

    color:#777;

}

.crms-property-price strong{

    display:block;

    font-size:26px;

    color:#0F766E;

    margin-top:4px;

}

.crms-property-footer .cr-btn{

    padding:12px 20px;

    border-radius:12px;

}

@media(max-width:991px){

    .crms-search-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:767px){

    .crms-search-grid{

        grid-template-columns:1fr;

    }

    .crms-search-header{

        flex-direction:column;

        align-items:flex-start;

    }

}