/* Sayfa dis cerceve */
.ara-wrapper {
    padding: 15px;
    font-family: 'Inter', sans-serif;
}

.ara-baslik {
    font-size: 20px;
    font-weight: 600;
    color: #007782;
    margin-bottom: 10px;
}

.ara-sonuc-metni {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.mob-listings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-top: 21px;
}

.mob-listing-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: #222;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mob-ilan-kullanici {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px 0;
}

.mob-profil-resmi {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ccc;
}

.mob-kullanici-adi {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mob-image-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.mob-ilan-resim {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 5px;
}

.mob-favori-ikon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 20px;
    color: #007782; /* boşken bu renk */
    background: white;
    border-radius: 50%;
    padding: 6px;
    z-index: 2;
    transition: color 0.3s ease;
}

.mob-favori-ikon.clicked {
    color: red; /* tıklandıysa kırmızı olur */
}


.mob-ilan-detay {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mob-ilan-baslik {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mob-ilan-fiyat {
    font-size: 14px;
    font-weight: bold;
    color: #007782;
}

.mob-ilan-konum {
    font-size: 12px;
    color: #777;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ara-filtre-kategori-bar {
    display: flex;
    gap: 10px;
    margin: 10px 0 15px;
    justify-content: space-between;
}

.ara-filtre-btn,
.ara-kategori-btn {
    flex: 1;
    background-color: white;
    color: #007782;
    border: 1px solid #007782;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.ara-filtre-btn i,
.ara-kategori-btn i {
    font-size: 14px;
}

.ara-daha-fazla {
    text-align: center;
    margin-top: 20px;
}

.ara-daha-fazla button {
    background-color: #007782;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ara-daha-fazla button:hover {
    background-color: #005f66;
}