* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    background-color: #f8f9fa;
    min-height: 100vh;
    padding-top: 100px;
    line-height: 1.6;
    }
    
    .navbar {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    color: #1d1d1f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid transparent;
    z-index: 2000;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    
    .navbar.scroll {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-brand {
    display: flex;
    align-items: center;
    }
    
    .navbar-logo {
    width: 40px;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
    }
    
    .navbar-logo:hover {
    transform: scale(1.05);
    }
    
    .navbar-dynamic-title {
    margin-left: 70px;
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(10px);
    }
    
    .navbar-dynamic-title.visible {
    opacity: 1;
    transform: translateY(0);
    }
    
    .navbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    }
    
    .search-button {
    background: none;
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .search-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: scale(1.1);
    }
    
    .search-button img {
    width: 24px;
    height: 24px;
    }
    
    .navbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    padding-right: 24px;
    }
    
    .navbar-button {
    background-color: transparent;
    border: none;
    color: #1d1d1f;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.2s ease;
    position: relative;
    }
    
    .navbar-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
    }
    
    .navbar-button.map-view-button {
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.1);
    }
    
    .navbar-button.map-view-button:hover {
    background-color: rgba(0, 123, 255, 0.15);
    }
    
    .vertical-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    }
    
    .main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    }
    
    .tum-ilanlar-baslik {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 40px 0;
    color: #1d1d1f;
    letter-spacing: -0.5px;
    }
    
    /* Apple UIActivityIndicatorView - Gerçek iOS Tasarımı */
    .apple-spinner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    /* Large Spinner - Sayfa Loading (32x32px) */
    .apple-spinner.large {
    width: 32px;
    height: 32px;
    }
    
    .apple-spinner.large .apple-spinner-spoke {
    width: 3px;
    height: 9px;
    transform-origin: 50% 16px;
    margin-left: -1.5px;
    margin-top: -4.5px;
    border-radius: 1.5px;
    }
    
    /* Medium Spinner - Resim Loading (20x20px) */
    .apple-spinner.medium {
    width: 20px;
    height: 20px;
    }
    
    .apple-spinner.medium .apple-spinner-spoke {
    width: 2px;
    height: 6px;
    transform-origin: 50% 10px;
    margin-left: -1px;
    margin-top: -3px;
    border-radius: 1px;
    }
    
    .apple-spinner-spoke {
    position: absolute;
    background-color: #8E8E93;
    left: 50%;
    top: 50%;
    }
    
    /* 12 spoke positioning - Apple'ın gerçek tasarımı (30° aralıkla) */
    .apple-spinner-spoke:nth-child(1) { transform: rotate(0deg); animation-delay: 0s; }
    .apple-spinner-spoke:nth-child(2) { transform: rotate(30deg); animation-delay: 0.083s; }
    .apple-spinner-spoke:nth-child(3) { transform: rotate(60deg); animation-delay: 0.166s; }
    .apple-spinner-spoke:nth-child(4) { transform: rotate(90deg); animation-delay: 0.25s; }
    .apple-spinner-spoke:nth-child(5) { transform: rotate(120deg); animation-delay: 0.333s; }
    .apple-spinner-spoke:nth-child(6) { transform: rotate(150deg); animation-delay: 0.416s; }
    .apple-spinner-spoke:nth-child(7) { transform: rotate(180deg); animation-delay: 0.5s; }
    .apple-spinner-spoke:nth-child(8) { transform: rotate(210deg); animation-delay: 0.583s; }
    .apple-spinner-spoke:nth-child(9) { transform: rotate(240deg); animation-delay: 0.666s; }
    .apple-spinner-spoke:nth-child(10) { transform: rotate(270deg); animation-delay: 0.75s; }
    .apple-spinner-spoke:nth-child(11) { transform: rotate(300deg); animation-delay: 0.833s; }
    .apple-spinner-spoke:nth-child(12) { transform: rotate(330deg); animation-delay: 0.916s; }
    
    @keyframes apple-fade {
    0% { opacity: 1; }
    100% { opacity: 0.2; }
    }
    
    .apple-spinner-spoke {
    animation: apple-fade 1s infinite linear;
    }
    
    /* Loading States */
    .loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    }
    
    .image-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    }
    
    .ilanlar-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
    }
    
    .ilan-karti {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .ilan-karti:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    }
    
    .ilan-resmi {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
    }
    
    .carousel-controls {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    }
    
    .ilan-karti:hover .carousel-controls {
    opacity: 1;
    }
    
    .nav-button {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .nav-button:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    }
    
    .nav-button svg {
    width: 18px;
    height: 18px;
    }
    
    .image-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    }
    
    .image-counter div {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    }
    
    .image-counter .active {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.3);
    }
    
    .ilan-detaylari {
    padding: 20px;
    position: relative;
    }
    
    .aciklama {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #1d1d1f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    }
    
    .ozellikler {
    margin: 16px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    }
    
    .ozellikler span {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
    }
    
    .ozellikler span:hover {
    background-color: #e9ecef;
    transform: translateY(-1px);
    }
    
    .price-location-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 16px;
    }
    
    .fiyat {
    font-size: 20px;
    font-weight: 700;
    color: #007bff;
    margin: 0;
    }
    
    .konum {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    text-align: right;
    font-weight: 500;
    }
    
    .image-loaded {
    animation: fadeIn 0.3s ease-in-out;
    }
    
    @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
    }
    
    .error-message {
    text-align: center;
    padding: 40px 20px;
    color: #dc3545;
    font-size: 16px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    margin: 20px 0;
    }
    
    .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
    }
    
    .empty-state h3 {
    margin-bottom: 12px;
    font-size: 24px;
    color: #495057;
    }
    
    /* Search Modal - Apple Style */
    .search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    z-index: 3000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .search-modal.active {
    opacity: 1;
    visibility: visible;
    }
    
    .search-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(0.9) translateY(-20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    }
    
    .search-modal.active .search-modal-content {
    transform: scale(1) translateY(0);
    }
    
    .search-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .search-content {
    height: calc(500px - 140px - 76px);
    overflow-y: auto;
    }
    
    .search-input-container {
    position: relative;
    margin-bottom: 16px;
    }
    
    .search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: none;
    border-radius: 12px;
    background-color: #f8f9fa;
    font-size: 16px;
    font-weight: 500;
    color: #1d1d1f;
    outline: none;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }
    
    .search-input:focus {
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    }
    
    .search-input::placeholder {
    color: #8e8e93;
    font-weight: 400;
    }
    
    .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    opacity: 0.5;
    }
    
    .search-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    }
    
    .filter-chip {
    padding: 8px 16px;
    border-radius: 20px;
    background-color: #f0f0f0;
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    }
    
    .filter-chip:hover {
    background-color: #e0e0e0;
    transform: translateY(-1px);
    }
    
    .filter-chip.active {
    background-color: #007bff;
    color: white;
    }
    
    .search-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    }
    
    .search-button-action {
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }
    
    .search-cancel {
    background-color: #f8f9fa;
    color: #1d1d1f;
    }
    
    .search-cancel:hover {
    background-color: #e9ecef;
    }
    
    .search-submit {
    background-color: #007bff;
    color: white;
    }
    
    .search-submit:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
    }
    
    .search-submit:disabled {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    transform: none;
    }
    
    .search-results-info {
    padding: 16px 24px;
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .clear-search {
    background: none;
    border: none;
    color: #007bff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 8px;
    }
    
    .clear-search:hover {
    text-decoration: underline;
    }
    
    /* Search suggestions */
    .search-suggestions {
    padding-bottom: 20px;
    }
    
    .suggestion-item {
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    }
    
    .suggestion-item:hover {
    background-color: #f8f9fa;
    }
    
    .suggestion-icon {
    width: 16px;
    height: 16px;
    opacity: 0.5;
    flex-shrink: 0;
    }
    
    .suggestion-text {
    font-size: 15px;
    color: #1d1d1f;
    }
    
    .suggestion-type {
    font-size: 13px;
    color: #8e8e93;
    margin-left: auto;
    flex-shrink: 0;
    }
    
    /* Filter Modal Styles */
    .filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .filter-modal.active {
    opacity: 1;
    visibility: visible;
    }
    
    .filter-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(0.9) translateY(-20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    display: flex;
    flex-direction: column;
    }
    
    .filter-modal.active .filter-modal-content {
    transform: scale(1) translateY(0);
    }
    
    .filter-modal-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    }
    
    .filter-modal-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.5px;
    }
    
    .filter-modal-close {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #8e8e93;
    transition: all 0.2s ease;
    }
    
    .filter-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #1d1d1f;
    transform: scale(1.1);
    }
    
    .filter-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    min-height: 0;
    }
    
    .filter-section {
    margin-bottom: 32px;
    }
    
    .filter-section:last-child {
    margin-bottom: 0;
    }
    
    .filter-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0 0 16px 0;
    letter-spacing: -0.3px;
    }
    
    .filter-price-range {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    }
    
    .price-input-group {
    flex: 1;
    }
    
    .price-input-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #8e8e93;
    margin-bottom: 6px;
    }
    
    .filter-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e5e7;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #1d1d1f;
    background-color: #fafafa;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }
    
    .filter-input:focus {
    outline: none;
    border-color: #007bff;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    }
    
    .price-separator {
    font-size: 16px;
    font-weight: 600;
    color: #8e8e93;
    margin: 0 4px;
    margin-top: 20px;
    }
    
    .filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    }
    
    .filter-actions {
    padding: 16px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    }
    
    .filter-button {
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-width: 100px;
    }
    
    .filter-reset {
    background-color: #f8f9fa;
    color: #1d1d1f;
    border: 1px solid #e5e5e7;
    }
    
    .filter-reset:hover {
    background-color: #e9ecef;
    border-color: #d1d1d6;
    }
    
    .filter-apply {
    background-color: #007bff;
    color: white;
    }
    
    .filter-apply:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
    }
    .search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    z-index: 3000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .search-modal.active {
    opacity: 1;
    visibility: visible;
    }
    
    .search-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(0.9) translateY(-20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    }
    
    .search-modal.active .search-modal-content {
    transform: scale(1) translateY(0);
    }
    
    .search-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .search-content {
    height: calc(500px - 140px - 76px);
    overflow-y: auto;
    }
    
    .search-input-container {
    position: relative;
    margin-bottom: 16px;
    }
    
    .search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: none;
    border-radius: 12px;
    background-color: #f8f9fa;
    font-size: 16px;
    font-weight: 500;
    color: #1d1d1f;
    outline: none;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }
    
    .search-input:focus {
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    }
    
    .search-input::placeholder {
    color: #8e8e93;
    font-weight: 400;
    }
    
    .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    opacity: 0.5;
    }
    
    .search-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    }
    
    .filter-chip {
    padding: 8px 16px;
    border-radius: 20px;
    background-color: #f0f0f0;
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    }
    
    .filter-chip:hover {
    background-color: #e0e0e0;
    transform: translateY(-1px);
    }
    
    .filter-chip.active {
    background-color: #007bff;
    color: white;
    }
    
    .search-actions {
    padding: 16px 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .search-button-action {
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }
    
    .search-cancel {
    background-color: #f8f9fa;
    color: #1d1d1f;
    }
    
    .search-cancel:hover {
    background-color: #e9ecef;
    }
    
    .search-submit {
    background-color: #007bff;
    color: white;
    }
    
    .search-submit:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
    }
    
    .search-submit:disabled {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    transform: none;
    }
    
    .search-results-info {
    padding: 16px 24px;
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .clear-search {
    background: none;
    border: none;
    color: #007bff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 8px;
    }
    
    .clear-search:hover {
    text-decoration: underline;
    }
    
    /* Search suggestions */
    .search-suggestions {
    max-height: 200px;
    overflow-y: auto;
    }
    
    .suggestion-item {
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    }
    
    .suggestion-item:hover {
    background-color: #f8f9fa;
    }
    
    .suggestion-icon {
    width: 16px;
    height: 16px;
    opacity: 0.5;
    }
    
    .suggestion-text {
    font-size: 15px;
    color: #1d1d1f;
    }
    
    .suggestion-type {
    font-size: 13px;
    color: #8e8e93;
    margin-left: auto;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
    .search-modal {
        padding-top: 5vh;
    }
    
    .search-modal-content {
        width: 95%;
        margin: 0 10px;
        border-radius: 16px;
    }
    
    .search-header {
        padding: 16px 20px;
    }
    
    .search-input {
        padding: 14px 18px 14px 45px;
        font-size: 16px;
    }
    
    .search-actions {
        padding: 12px 20px;
    }
    
    .search-button-action {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .filter-chip {
        font-size: 13px;
        padding: 6px 14px;
    }
    }
    @media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    .navbar {
        padding: 12px 16px;
    }
    
    .navbar-right {
        padding-right: 0;
        gap: 8px;
    }
    
    .navbar-button {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .main-content {
        padding: 0 16px;
    }
    
    .tum-ilanlar-baslik {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .ilanlar-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .ilan-karti {
        border-radius: 12px;
    }
    
    .ilan-resmi {
        height: 200px;
    }
    
    .ilan-detaylari {
        padding: 16px;
    }
    
    .navbar-dynamic-title {
        margin-left: 50px;
        font-size: 16px;
    }
    }
    
    @media (max-width: 480px) {
    .navbar-right .filter-button {
        display: none;
    }
    
    .vertical-divider {
        display: none;
    }
    }