﻿body {
    font-family: 'Nunito', sans-serif;
    background: #f5f7fa;
}

/* =========================
           SIDEBAR
        ==========================*/

.filter-box {
    background: #D2D3D5;
    border-radius: 20px;
    padding: 1px;
    box-shadow: 0 3px 15px rgba(0,0,0,.04);
}

/*.filter-box span {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    margin-top: 15px;
    margin-left: 15px;
    padding-top: 20px;
    padding-left: 5px;
    color: red;
}*/

.form-control,
.form-select {
    height: 50px;
    border-radius: 12px;
    border: 1px solid #e7e7e7;
    font-size: 14px;
    box-shadow: none !important;
}

    .form-control:focus,
    .form-select:focus {
        border-color: #12c48b;
    }

.section-title {
    font-size: 16px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
}

.amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-check-label {
    font-size: 14px;
    color: #666;
}

.btn-search {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 12px;
    background: #12c48b;
    color: #fff;
    font-weight: 700;
    margin-top: 30px;
    transition: .3s;
}

    .btn-search:hover {
        background: #0faa79;
    }

/* =========================
           TOP BAR
        ==========================*/

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.results-text {
    font-weight: 700;
    color: #1f2d3d;
}

.view-icons {
    display: flex;
    gap: 10px;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    cursor: pointer;
}

    .icon-box.active {
        background: #12c48b;
        color: #fff;
        border-color: #12c48b;
    }

/* =========================
           PROPERTY CARD
        ==========================*/
    /*
.property-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,.05);
    transition: .3s;
    height: 100%;
}

    .property-card:hover {
        transform: translateY(-5px);
    }

.property-image {
    position: relative;
    overflow: hidden;
}

    .property-image img {
        width: 100%;
        height: 230px;
        object-fit: cover;
    }

.badge-sale {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #12c48b;
    color: #fff;
    padding: 7px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}

.property-body {
    padding: 22px;
}

.property-title {
    font-size: 24px;
    font-weight: 800;
    color: #1f2d3d;
    margin-bottom: 8px;
}

.property-location {
    font-size: 14px;
    color: #7a7a7a;
    margin-bottom: 20px;
}

    .property-location i {
        color: #12c48b;
    }

.price-label {
    color: #999;
    font-size: 13px;
}

.property-price {
    font-size: 30px;
    color: #12c48b;
    font-weight: 800;
    margin-bottom: 20px;
}

.property-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item {
    font-size: 14px;
    color: #666;
}

    .feature-item i {
        color: #12c48b;
        margin-right: 5px;
    }

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.agent {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .agent img {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        object-fit: cover;
    }

.agent-name {
    font-weight: 700;
    font-size: 14px;
}

.btn-details {
    border: 1px solid #12c48b;
    color: #12c48b;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

    .btn-details:hover {
        background: #12c48b;
        color: #fff;
    }
    */
    /* =========================
           PAGINATION
        ==========================*/

    .pagination {
    margin-top: 40px;
}

.page-link {
    width: 42px;
    height: 42px;
    border-radius: 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    border: none;
    background: #16324f;
    color: #fff;
    font-weight: 700;
}

.page-item.active .page-link {
    background: #12c48b;
}

/* =========================
           RESPONSIVE
        ==========================*/

@media(max-width:991px) {

    .top-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .property-title {
        font-size: 22px;
    }
}
