.property-archive-wrapper{
    margin: 60px 0px 145px 0px;
}
.prorperty-single-title{
    max-width: 700px;
    margin-bottom: 85px;
}
.prorperty-single-title h3{
    margin-bottom: 0px;
}

.prorperty-single-item{
    background: #EAE8DF;
}

.prorperty-single-item{
    display: flex;
    flex-wrap: wrap;
}
.prorperty-single-item .text{
    width: 50%;
    padding: 35px 60px 35px 35px;
}
.prorperty-single-item .image{
    width: 50%;
}
.prorperty-single-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 368px;
}
.prorperty-single-item .text h4{
    font-family: var(--font-inter);
    font-weight: 600;
}
.prorperty-single-item p,.prorperty-single-item .text h4{
    margin-bottom: 22px;
    color: var(--green);
}
.prorperty-single-wrap .prorperty-single-item:not(:last-child){
    margin-bottom: 27px;
}

.prorperty-single-item .text .btn img {
    margin-left: 6px;
    height: 13px;
    width: 12px;
}
/* New Css */
.property-ajax-wrapper {
    position: relative;
    min-height: 200px;
}
/* Loader Container */
.property-ajax-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}
/* Modern CSS Spinner */
.property-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #000; /* Aap apne theme ke color ke hisab se ise badal sakte hain */
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
/* Loading state me double click ko rokne ke liye pointers disable kiye hain (No Blur) */
.prorperty-single-wrap.is-loading {
    pointer-events: none; 
}
@media only screen and (max-width:1024px){
     .prorperty-single-item .image img {
        min-height: 320px;
    }
}
@media only screen and (max-width:767px){
   .prorperty-single-item .text {
     width: 100%;
        padding: 35px 20px 35px 20px;
    }
    .prorperty-single-item .image {
        width: 100%;
    }
    .prorperty-single-item .image img {
        width: 100%;
        height: 100%;
        min-height: 280px;
    }
}