@media only screen and (max-width: 1280px) {

    /* Header ve Navbar'ı Gizleme */
    .mobil-header,
    .main-menu {
        display: none !important;
    }

    .mob-profil-container {
        background-color: #f5f5f5;
        padding: 20px;
        border-bottom: 1px solid #b8b8b8;
        display: flex;
        align-items: center;
        gap: 15px;
        border: 1px solid #e0e0e0;
    }

    .mob-back-arrow {
        font-size: 22px;
        color: #007782;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .mob-back-arrow:hover {
        color: #005f66;
    }



    .mob-profil-fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: #f5f5f5;
        padding: 20px;
    }

    .mob-kullanici-bilgi {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .mob-profil-resmi {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #007782;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .mob-takip-et-container {
        display: flex;
        flex-direction: column;
    }

    .mob-kullanici-bilgi-text {
        flex-grow: 1;
    }

    .mob-kullanici-ad a {
        font-size: 20px;
        font-weight: bold;
        color: #333;
        text-decoration: none;
    }

    .mob-satis-bilgi {
        margin-top: 5px;
    }

    .mob-satis-bilgi a {
        font-size: 14px;
        color: #007782;
        text-decoration: none;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 5px;
        background-color: #e6f0fa;
        padding: 5px 10px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .mob-satis-bilgi a:hover {
        background-color: #d0e4f5;
    }

    /* Sabit Navbar */
    .mob-navbar-container {
        background-color: #ffffff;
        border-bottom: 1px solid #e0e0e0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .mob-navbar-fixed {
        position: fixed;
        top: 108px;
        left: 0;
        width: 100%;
        z-index: 999;
        background-color: #ffffff;
    }

    .mob-navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 20px;
        height: 4.5em;
    }




    .mob-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: #333;
        font-size: 13px;
        transition: color 0.3s ease;
    }

    .mob-nav-item i {
        font-size: 25px;
        color: #007782;
    }

    .mob-nav-item:hover {
        color: #007782;
    }

    .mob-share-wrapper {
        position: relative;
    }

    .mob-share {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 9px;
        color: #333;
        text-decoration: none;
        font-size: 12px;
        transition: color 0.3s ease;
    }

    .mob-share:hover {
        color: #005f66;
    }

    .mob-share:hover i {
        color: #005f66;
    }

    .mob-share-dropdown {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        border-radius: 12px 12px 0 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
        padding: 20px;
        z-index: 2000;
        animation: slideUp 0.3s ease;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0%);
        }
    }

    .mob-share-content {
        text-align: center;
    }

    .mob-share-title {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #333;
    }

    .mob-share-text {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
    }

    .mob-share-icons {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 15px;
    }

    .mob-share-icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #333;
        text-decoration: none;
        font-size: 12px;
        width: 60px;
    }

    .mob-eksper-ol-button {
        background-color: #007782;
        color: white;
        border: none;
        padding: 8px 16px;
        font-size: 14px;
        border-radius: 6px;
        font-weight: 500;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .mob-eksper-ol-button:hover {
        background-color: #005f66;
    }

    .modal-overlay {
        position: fixed;
        z-index: 9999;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.4);
    }

    .modal-content {
        background: white;
        padding: 20px;
        border-radius: 10px;
        width: 90%;
        max-width: 400px;
    }

    .modal-content h3 {
        margin-bottom: 15px;
        font-size: 18px;
        color: #333;
    }

    .modal-content input,
    .modal-content textarea {
        width: 100%;
        padding: 8px;
        margin-bottom: 10px;
        border-radius: 5px;
        border: 1px solid #ccc;
    }

    .mob-eksper-ol-container {
        background-color: #f0f0f0;
        padding: 12px;
        margin: 12px 15px;
        border-radius: 8px;
        text-align: center;
    }


    .mob-alert-success {
        background-color: #d4edda;
        color: #155724;
        padding: 10px 15px;
        margin: 15px;
        border: 1px solid #c3e6cb;
        border-radius: 6px;
        font-size: 14px;
    }


    .btn-submit {
        background-color: #28a745;
        color: white;
        padding: 8px 12px;
        border: none;
        border-radius: 6px;
        margin-right: 8px;
    }

    .btn-cancel {
        background-color: #dc3545;
        color: white;
        padding: 8px 12px;
        border: none;
        border-radius: 6px;
    }


    .mob-share-icon i {
        font-size: 24px;
        margin-bottom: 5px;
        color: #007782;
    }

    .mob-favorite {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 13px;
        color: #333;
        text-decoration: none;
        font-size: 13px;
        transition: color 0.3s ease;
    }

    .mob-favorite i {
        font-size: 20px;
    }

    .mob-favorite:hover {
        color: #005f66;
    }

    .mob-favorite:hover i {
        color: #005f66;
    }

    .mob-favorite.clicked i {
        color: red;
    }

    .mob-favori-mesaj {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #007782;
        color: white;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 12px;
        z-index: 1001;
    }

    /* Büyük Resim ve Fotoğraf Sayısı */
    .mob-resim-galerisi {
        margin-bottom: 0;
        position: relative;
    }

    .mob-large-image-container {
        width: 100%;
        overflow: hidden;
    }

    #mobLargeImage {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 8px;
        display: block;
        touch-action: pan-y;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }

    .mob-image-counter {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.6);
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: normal;
    }

    /* Resim Büyütme Modalı */
    .mob-image-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 1002;
        display: none;
        justify-content: center;
        align-items: center;
        overflow: auto;
    }

    .mob-image-modal-content {
        position: relative;
        max-width: 100%;
        max-height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        /* taşma engellendi */
        background-color: rgba(0, 0, 0, 0.9);
        touch-action: none;
        /* gesture'ları biz kontrol edeceğiz */
    }

    .mob-modal-image {
        max-width: 100%;
        max-height: 100vh;
        object-fit: contain;
        transform-origin: center center;
        transition: transform 0.2s ease;
        user-select: none;
        touch-action: none;
    }



    #mobModalLargeImage {
        max-width: 100%;
        max-height: 100vh;
        object-fit: contain;
        transform-origin: center center;
        transition: transform 0.2s ease, opacity 0.3s ease;
        touch-action: pinch-zoom;
    }

    .mob-image-modal-close {
        position: fixed;
        top: 20px;
        right: 20px;
        color: white;
        font-size: 30px;
        cursor: pointer;
        z-index: 1003;
    }

    /* İlan Bilgileri (Adres, Fiyat, İstatistik, Durum) */
    .mob-ilan-bilgi-container {
        margin-top: 0;
        margin-bottom: 15px;
    }

    .mob-ilan-adres {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #007782;
        background-color: #ffffff;
        padding: 8px 15px;
        font-family: "Inter", sans-serif;
        border-bottom: 1px solid #b8b8b8;
    }

    .mob-ilan-adres i {
        color: #007782;
        font-size: 16px;
    }

    .mob-ilan-alt-bilgi {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fbfbfb;
        height: 4rem;
        border-bottom: 1px solid #b8b8b8;
    }

    .mob-ilan-fiyat {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 18px;
        font-weight: bold;
        color: #333;
        background-color: white;
    }

    .mob-ilan-fiyat span {
        background-color: #ffffff;
        font-size: 23px;
        font-family: "Inter", sans-serif;
        font-weight: 500;
        padding: 4px 8px;
        border-radius: 6px;
        padding-left: 15px;
    }

    .mob-ilan-fiyat i {
        color: #007782;
        font-size: 16px;
    }

    .mob-ilan-istatistik {
        display: flex;
        gap: 10px;
    }

    .mob-istatistik-item {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 14px;
        color: #666;
        padding: 5px 8px;
        border-radius: 5px;
    }

    .mob-istatistik-item i {
        color: #007782;
        font-size: 16px;
    }

    .mob-ilan-durum-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .mob-ilan-durum {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #666;
        background-color: #f5f5f5;
        padding: 5px 10px;
        border-radius: 5px;
    }

    .mob-ilan-durum i {
        color: #007782;
        font-size: 16px;
    }

    .mob-ilan-basari-yorum {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #666;
        white-space: nowrap;
    }

    .mob-ilan-basari-yorum i {
        color: #007782;
        font-size: 16px;
    }

    /* İlan Başlığı */
    .mob-ilan-baslik {
        background-color: #ffffff;
        padding: 11px 15px;
        border-radius: 3px;
        margin-bottom: -9px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        text-align: left;
        font-family: "Inter", sans-serif;
        font-weight: 400;
        border-bottom: 1px solid #b8b8b8;
    }

    .mob-ilan-baslik span {
        white-space: normal;
        font-family: "Inter", sans-serif;
        font-weight: 650;
        color: #4d4d4d;
    }

    /* Sabit profil alanı ve navbar'ın altında kalan içerik için üst boşluk */
    .mob-content-offset {
        margin-top: 180px;
    }

    .mob-ilan-ozet {
        background-color: #f5f5f5;
        padding: 15px;
        border-radius: 10px;
        color: #555555;
        margin-top: -10px;
    }

    .mob-ilan-ozet-item {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #b8b8b8;
    }

    .mob-ilan-ozet-item:last-child {
        border-bottom: none;
    }

    .ozet-label {
        font-size: 14px;
        color: #333333;
        font-family: "Inter", sans-serif;
        font-weight: 600px;
    }

    .ozet-value {
        font-size: 14px;
        font-weight: 500;
    }
}