﻿.container-page {
    padding: 50px 0 80px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
}

.section-subtitle {
    color: var(--text-muted);
}

.card-glass {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.filter-card {
    padding: 22px;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, .06) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    color: #fff !important;
    border-radius: 14px !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary2));
    border: 0;
    border-radius: 14px;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, .22);
    color: #fff;
    border-radius: 14px;
}

.apartment-card {
    overflow: hidden;
    transition: .25s;
}

    .apartment-card:hover {
        transform: translateY(-5px);
    }

.apartment-image {
    height: 230px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

    .apartment-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.price {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: .4rem .7rem;
    background: rgba(0, 0, 0, .6);
    border-radius: 999px;
    font-size: .9rem;
}

.rating {
    font-size: .9rem;
}

.tiny-muted {
    color: var(--text-muted);
    font-size: .9rem;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: .45rem .7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
}

.pagination {
    margin-top: 40px;
}

.page-link {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #fff;
}
