body {
    font-family: Arial;
    background: #f5f7fb;
}

.container {
    padding: 30px;
}

/* HEADING */
.heading {
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
}

/* FILTER BOX */
.filter-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;

    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.filter-box select,
.filter-box button {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* GRID */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

/* CARD */
.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* BODY */
.card-body {
    padding: 15px;
}

.price {
    color: #f4a825;
    font-weight: bold;
}

/* DETAILS */
.details {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 10px;
}

.details span {
    background: #f8f8f8;
    padding: 6px;
    border-radius: 6px;
    flex: 1;
    text-align: center;
    font-size: 13px;
}

/* TAGS */
.tags {
    margin-top: 10px;
}

.tags span {
    background: #e6f2ff;
    padding: 5px;
    margin-right: 5px;
    border-radius: 5px;
    font-size: 12px;
}

/* BUTTON */
.btn {
    display: block;
    background: #f4a825;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    border-radius: 6px;
}

/* LOAD MORE */
#loadMoreBtn {
    margin: 20px auto;
    display: block;
    padding: 10px 20px;
}

/* SKELETON */
.skeleton {
    height: 300px;
    background: linear-gradient(90deg,#eee,#ddd,#eee);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {background-position: -200px;}
    100% {background-position: 200px;}
}

/* MOBILE */
@media(max-width:992px){
    .property-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px){
    .property-grid {
        grid-template-columns: 1fr;
    }
}