/* ===========================================
   Genel Ayarlar ve Değişkenler
=========================================== */

/* Mobilde header/footer gizleme */
@media (max-width: 768px) {
  body.no-header-footer .upper-header,
  body.no-header-footer .upper-header-mobile,
  body.no-header-footer .mobile-header-menu,
  body.no-header-footer .lower-header,
  body.no-header-footer footer {
    display: none !important;
  }

  body.no-header-footer {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
}

/* CSS Değişkenleri */
:root {
    --swiper-theme-color: #081134;
}

/* Temel sıfırlamalar ve font ayarı */
* {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body ve genel arka plan */
body {
    background-color: #F7F7F7;
}

/* Header genel arkaplan */
header {
    background-color: #fff;
}



/* ===========================================
   Üst Header Bölümü (Desktop ve Mobile)
=========================================== */

/* Üst header - desktop */
.upper-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    padding-inline: 6%;
    height: 75px;
}

/* Üst header - mobil */
.upper-header-mobile {
    display: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    align-items: center;
    gap: 20px;
    padding-inline: 6%;
    height: 75px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 100000;
}

/* Mobilde header konum seçimi sağa yasla */
.upper-header-mobile .header-location {
    margin-left: auto;
}

/* Header açılır menü toggle ikonu */
.header-toggle {
    font-size: 30px;
    cursor: pointer;
}



/* ===========================================
   Mobil Header Menü ve Aksiyonlar
=========================================== */

/* Mobilde açılır menü paneli */
.mobile-header-menu {
    background-color: white;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100001;
    display: none;
    flex-direction: column;
    overflow-y: scroll;
    padding-bottom: 100px;
}

/* Menü açıkken göster */
.mobile-header-menu.show {
    display: flex;
}

/* Mobil giriş butonu */
.mobile-header-menu .mobile-login a {
    background-color: #FF3F55;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 100px;
    border: 6px solid #fff;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-inline: 20px;
}

.mobile-header-menu .mobile-login a:hover {
    color: #FF3F55;
    background-color: #fff;
}

/* Mobil aksiyon butonları alanı */
.mobile-actions {
    background-color: #EFEFEF;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 80px;
}

.mobile-actions a {
    background-color: #fff;
    display: flex;
    align-items: center;
    padding-inline: 20px;
    height: 46px;
    border-radius: 10px;
    gap: 16px;
    color: black;
    text-decoration: none;
    font-weight: 600;
}



/* ===========================================
   Responsive Ayarlar (Media Queries)
=========================================== */

/* 860px altı için üst header switch */
@media screen and (max-width: 860px) {
    .upper-header {
        display: none;
    }

    .upper-header-mobile {
        display: flex;
    }

 
}



/* ===========================================
   Logo ve Arama Kutusu
=========================================== */

.header-image {
    max-width: 75px;
    height: 100%;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Arama formu */
.header-search {
    background-color: #F7F7F7;
    border-radius: 8px;
    height: 45px;
    padding-inline: 20px;
    width: 500px;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    font-size: 16px;
    border: none;
    outline: none;
}

.header-search button {
    outline: none;
    border: none;
    background-color: transparent;
}

/* Konum seçici */
.header-location select {
    border: 1px solid #e0e0e0;
    height: 45px;
    border-radius: 30px;
    padding: 0 10px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
    cursor: pointer;
    width: 250px;
    max-width: 100%;
}

/* Mobilde konum seçici genişlik küçült */
@media screen and (max-width: 860px) {
    .header-location select {
        width: 150px;
    }
}



/* ===========================================
   Header Aksiyonları (Giriş, Bildirim vb.)
=========================================== */

.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions a {
    color: #929292;
    font-weight: 600;
    font-size: 20px;
}

.header-actions a#header-action-login {
    color: #FF3F55;
    font-size: 16px;
}

.header-actions a:hover {
    text-decoration: none;
    color: #FF3F55;
}

/* Son aksiyon butonu özel stil */
.header-actions a:last-of-type {
    background-color: #FF3F55;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 100px;
    border: 6px solid #fff;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions a:last-child:hover {
    color: #FF3F55;
    background-color: #fff;
}



/* ===========================================
   Alt Header (Alt Menü, Kategoriler)
=========================================== */

.lower-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    padding-inline: 3%;
    height: 50px;
}

.lower-header a {
    text-decoration: none;
    color: #000;
}

.lower-header>a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    white-space: nowrap;
}

.lower-header>a i {
    font-size: 10px;
}

/* Kategori menüsü yatay kaydırmalı */
.header-categories {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
    font-size: 14px;
    max-width: 90vw;
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none; /* IE */
    scrollbar-width: none; /* Firefox */
}

.header-categories::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.header-categories>a {
    white-space: nowrap;
}



/* ===========================================
   Slider (Swiper) Bölümü
=========================================== */

.slider-section .swiper {
    margin-top: 20px;
    border-radius: 10px;
    width: 90vw;
    aspect-ratio: 5 / 1;
}

.slider-section .swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* ===========================================
   İlan Listesi (Grid Yapısı)
=========================================== */

.items-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-inline: 6%;
    margin-top: 30px;
    gap: 20px;
}

/* Responsive grid kolon sayısı */
@media screen and (max-width: 1000px) {
    .items-section {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .items-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 468px) {
    .items-section {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* ===========================================
   İlan Kartları Stilleri
=========================================== */

.item-wrapper .item {
    display: block;
}

.item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
    height: fit-content;
    color: #000;
    text-decoration: none;
}

.item .item-thumbnail {
    padding: 6px;
    border-radius: 4px;
    width: 100%;
    max-height: 200px;
    position: relative;
}

.item .item-thumbnail img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
    max-height: 200px;
    aspect-ratio: 1 / 1;
}

/* Favori butonu stil */
.item-thumbnail .item-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .1s ease-in-out;
    z-index: 1000;
}

/* Promosyon etiketi */
.item-thumbnail .item-promoted-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ee374c;
    color: #fff;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 11px;
}

.item-slider .item-promoted-label {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 300;
    background-color: #ee374c;
    color: #fff;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 11px;
}

/* İlan detay bağlantıları */
.item-details a {
    color: #000;
    text-decoration: none;
}

/* İlan detay içeriği */
.item .item-details {
    padding: 10px 20px;
}

/* Promosyonlu ilan detay stili */
.item-promoted .item-details {
    border-left: 10px solid #FF3F55;
    border-radius: 8px;
    background-color: rgba(255, 63, 85, 0.1);
}

/* Fiyat stili */
.item .item-price {
    font-size: 20px;
    font-weight: 600;
}

/* Başlık stili */
.item .item-title {
    font-weight: 300;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    line-break: anywhere;
}

/* Responsive başlık küçültme ve tarih gizleme */
@media screen and (max-width: 1000px) {
    .item .item-title {
        font-size: 12px;
    }

    .item .item-date {
        display: none;
    }

    .item .item-details {
        padding: 0 10px 10px 10px;
    }
}

/* İlan footer bilgisi */
.item .item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    margin-top: 6px;
    color: #757575;
}


/* ==========================
   Profil Bölümü
========================== */

/* Profil genel container ve detaylar */
.profile-section {
    display: flex;
    gap: 20px;
    padding-inline: 6%;
    margin-top: 30px;
}

/* Profil detay kutusu (sol kısım) */
.profile-section .profile-details {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: fit-content;
}

/* Responsive: 1000px altı profil kutusu full genişlikte ve alt alta */
@media screen and (max-width: 1000px) {
    .profile-section {
        flex-direction: column;
    }

    .profile-section .profile-details {
        flex: 0 0 100%;
        width: 100%;
    }
}

/* Profil kullanıcı bilgisi satırı (avatar + isim) */
.profile-details .profile-user {
    width: 100%;
    gap: 10px;
    display: flex;
    align-items: center;
    padding-inline: 10px;
    padding-block: 12px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Profil avatar resmi */
.profile-details .profile-user img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #efefef;
    object-fit: cover;
}

/* Profil ekstra bilgiler sütunu */
.profile-infos {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    gap: 10px;
}

/* Profil oluşturulma tarihi satırı */
.profile-created-at {
    display: flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

.profile-created-at i {
    font-size: 14px;
}

/* Profil doğrulama bilgileri */
.profile-verifications-wrapper {
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.profile-verifications {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

/* Tek tek doğrulama simgeleri */
.profile-verification {
    background-color: #F7F7F7;
    width: 30px;
    height: 30px;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Profil footer alanı (butonlar vs) */
.profile-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Profil footer butonları */
.profile-footer a {
    display: flex;
    gap: 4px;
    width: 100%;
    background-color: #FF3F55;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    padding-block: 10px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}


/* ==========================
   Profil İlanlar Bölümü (Grid)
========================== */

.profile-products {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Responsive: 900px altı 2 kolon */
@media screen and (max-width: 900px) {
    .profile-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 480px altı da 2 kolon devam */
@media screen and (max-width: 480px) {
    .profile-products {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==========================
   Sayfa Breadcrumb (Gezinti) Alanı
========================== */

.page-breadcrumb {
    width: 100%;
    padding-inline: 6%;
    padding-block: 16px;
}

.page-breadcrumb ul {
    display: flex;
    gap: 10px;
    font-size: 12px;
    font-weight: 300;
    list-style-type: none;
    flex-wrap: wrap;
}

.page-breadcrumb ul li a {
    color: #757575;
    text-decoration: none;
}

.page-breadcrumb ul li {
    display: flex;
    align-items: center;
}

/* Son link siyah renk */
.page-breadcrumb ul li:last-child a {
    color: black;
}

/* Linkler arası ok ikonu */
.page-breadcrumb ul li:not(:last-child):after {
    content: "\F285";
    font-family: 'bootstrap-icons';
    color: #757575;
    padding-left: 4px;
    font-size: 10px;
}



/* ==========================
   İlan Slider / Swiper Bölümü
========================== */

.item-slider .swiper {
    width: 100%;
    height: 100%;
}

.item-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.item-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thumbnail slider */
.item-slider .item-swiper {
    height: 400px;
    width: 100%;
}

.item-slider .item-swiper-thumbnail {
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}

.item-slider .item-swiper-thumbnail .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.item-slider .item-swiper-thumbnail .swiper-slide-thumb-active {
    opacity: 1;
}

.item-swiper-thumbnail .swiper-slide img {
    border-radius: 10px;
}



/* ==========================
   İlan Detay Bölümü
========================== */

.item-section {
    display: flex;
    width: 90vw;
    max-width: 90vw;
    margin-inline: auto;
    gap: 30px;
}

/* Responsive ilan detay alanı */
@media screen and (max-width: 1000px) {
    .item-section {
        flex-direction: column;
    }

    .item-infos-section {
        width: 100%;
        flex: 0 0 100%;
    }
}

.item-infos-section {
    width: 70%;
    flex: 0 0 70%;
}

/* Detay içi gölge, padding, arkaplan */
.item-section .item-details {
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
    padding: 30px;
    border-radius: 14px;
    background-color: #fff;
    margin-top: 30px;
}

/* Detay başlık kısmı */
.item-details-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

/* Sağdaki kısım */
.item-details-header-part:last-child {
    text-align: right;
    color: #757575;
}

/* Fiyat stili */
.item-details-header .item-price {
    font-size: 32px;
    font-weight: bold;
}

/* Tarih stili */
.item-details-header .item-date {
    font-size: 12px;
    margin-top: 10px;
}

/* Özellikler grid */
.item-details-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

/* Özellik tek tek kutular */
.item-details-features .item-feature {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-block: 10px;
    font-size: 14px;
    color: #757575;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item-details-features .item-feature span {
    font-weight: bold;
    color: #000;
}

/* Responsive özellikler tek sütun */
@media screen and (max-width: 768px) {
    .item-details-features {
        grid-template-columns: 1fr;
    }
}

/* Açıklama */
.item-details-description {
    margin-top: 20px;
}

.item-details-description h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.item-details-description p {
    font-size: 14px;
    font-weight: 400;
}



/* ==========================
   İlan Satıcı Bilgileri
========================== */

.item-seller-info {
    width: 100%;
    height: fit-content;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
    padding: 30px;
    border-radius: 14px;
    background-color: #fff;
}

/* Satıcı bilgi başlığı */
.item-seller-info-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Satıcı profil fotoğrafı */
.item-seller-profile {
    position: relative;
}

.item-seller-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

/* Satıcı isim ve detaylar */
.item-seller-title {
    display: flex;
    flex-direction: column;
    font-weight: bold;
}

.item-seller-title span {
    font-weight: 400;
    font-size: 14px;
    color: #757575;
}

/* Satıcı detaylar alanı */
.item-seller-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

/* Satıcı buton satırı */
.item-seller-btn-row {
    display: flex;
    width: 100%;
    gap: 10px;
}

/* İlk buton genişliği */
.item-seller-btn-row>a:first-child {
    flex: 0 0 40%;
}

/* Satıcı butonları genel stil */
.item-seller-details a {
    width: 100%;
    border: 2px solid #FFECEE;
    background-color: #FFECEE;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 6px;
    color: #FF3F55;
    text-decoration: none;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

/* Hover efekti */
.item-seller-details a:hover {
    background-color: #FF3F55;
    color: #FFECEE;
}

/* İkincil buton stili */
.item-seller-details a.item-seller-secondary-btn {
    background-color: #fff;
}

.item-seller-details a.item-seller-secondary-btn:hover {
    background-color: #FFECEE;
    color: #FF3F55;
}

/* Mobilde satıcı butonları grid */
.item-seller-details-mobile {
    margin-top: 0 !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Mobilde ikincil buton genişliği */
.item-seller-details-mobile a.item-seller-secondary-btn {
    width: 140px;
    margin-right: auto;
}



/* ==========================
   Kullanıcı Paneli Bölümü
========================== */

.user-panel-section {
    display: flex;
    gap: 20px;
    padding-inline: 6%;
    margin-top: 30px;
}

/* Responsive user panel: kolonları alt alta */
@media screen and (max-width: 1000px) {
    .user-panel-section {
        flex-direction: column;
    }
}

/* Sidebar genişlik ayarı */
.user-panel-sidebar {
    flex: 0 0 20%;
}

/* User panel içeriği genişlik */
.user-panel-content {
    width: 100%;
}

/* Sidebar menü liste */
.user-panel-sidebar-nav {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
}

/* Sidebar linkler */
.user-panel-sidebar-nav a {
    width: 100%;
    color: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-inline: 16px;
    padding-block: 10px;
    text-decoration: none;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s ease-in-out;
}

/* Hover efekti */
.user-panel-sidebar-nav li a:hover {
    background-color: #eeeeee;
}

/* Aktif link stili */
.user-panel-sidebar-nav li.active a {
    background-color: #FFECEE;
    color: #FF3F55;
}

/* ===============================
   Genel Sayfa Düzeni ve Grid Ayarları
   -------------------------------
   Sayfa genelinde ilanlar, ayarlar gibi ana bölümlerin grid ve flex düzenleri tanımlanır.
================================= */

.ilanlar-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media screen and (max-width: 900px) {
    .ilanlar-page {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .ilanlar-page {
        grid-template-columns: repeat(2, 1fr);
    }
}

.settings-page {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.settings-part {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

/* ===============================
   Ayarlar Sayfası Başlık ve İçerik Bölümleri
   -------------------------------
   Ayarların başlıkları, içerik kutuları, toggle switchler gibi elemanların stilleri.
================================= */

.settings-header {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 17px;
}

.settings-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Toggle switch bölümü */

.settings-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.settings-toggle-label {
    font-weight: 500;
    font-size: 15px;
    display: flex;
    flex-direction: column;
}

.settings-toggle-label span {
    font-weight: 400;
    font-size: 14px;
    color: #757575;
}

.settings-toggle-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 28px;
}

.settings-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.settings-toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.settings-toggle-switch .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.settings-toggle-switch input:checked + .slider {
    background-color: #FF3F55;
}

.settings-toggle-switch input:focus + .slider {
    box-shadow: 0 0 1px #FF3F55;
}

.settings-toggle-switch input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

/* ===============================
   Form Input ve Label Animasyonları
   -------------------------------
   Input alanları odaklandığında veya dolu olduğunda label konumunun değişimi.
================================= */

.settings-input > label {
    bottom: 34px;
    left: 15px;
    position: relative;
    background-color: white;
    padding: 0px 5px 0px 5px;
    font-size: 1.1em;
    transition: 0.2s;
    pointer-events: none;
}

.settings-input .form-control:focus ~ label {
    bottom: 55px;
}

.settings-input .form-control:valid ~ label {
    bottom: 55px;
}

/* Odaklanma efekti input ve select için */

.form-select:focus,
.form-control:focus {
    border-color: #fe8391;
    box-shadow: 0 0 0 .25rem rgba(255, 63, 85, 0.25);
}

/* Dosya yükleme butonunu gizleme */

input::-webkit-file-upload-button {
    display: none;
}

/* ===============================
   Profil Durum Göstergesi ve Resim Konumu
   -------------------------------
   Profil fotoğrafı üzerinde durum göstergesi ve genel stil.
================================= */

.profile-status-indicator {
    display: block;
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #FF3F55;
}

.profile-status-indicator.online {
    background-color: #3fff4f;
}

.profile-image {
    position: relative;
}

/* ===============================
   İlan Verme Bölümü ve Adımlar
   -------------------------------
   İlan verme sayfasındaki adımlar, içerik scroll, görünürlük ve buton stilleri.
================================= */

.ilanver-section {
    background-color: #fff;
    max-width: 600px;
    margin-inline: auto;
    margin-block: 20px;
    border-radius: 10px;
}

.ilanver-step-content {
    max-height: 54dvh;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ilanver-step-content::-webkit-scrollbar {
    display: none;
}

.ilanver-step {
    display: none;
}

.ilanver-step.show {
    display: block;
}

.ilanver-step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.ilanver-step-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ilanver-step-footer button {
    background-color: #FF3F55;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-inline: auto;
}

.ilanver-step-footer button:disabled {
    background-color: #ccc;
    color: #fff;
    cursor: not-allowed;
}

/* ===============================
   İlan Kategorileri ve Genel Layout
   -------------------------------
   Kategori seçimi ve listeleme grid yapıları, padding ve hover efektleri.
================================= */

.ilanver-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 30px;
}

.all-categories {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    padding-block: 30px;
    padding-inline: 10%;
}

/* ===============================
   Detay Sayfası ve Bölümleri
   -------------------------------
   İlan detaylarının, slider'ın, seller info'nun düzeni ve responsive ayarları.
================================= */

/* Burada devam edebiliriz... */

/* ===============================
   Mesajlaşma Bölümü - Footer ve Hızlı Mesaj Butonları
   --------------------------------
   Mesaj gönderme alanı ve önceden tanımlı hızlı mesaj butonlarının stil ayarları.
================================= */

.messages-content-footer-input button {
    background-color: #FF3F55;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.messages-content-footer-quick-messages {
    display: flex;
    width: 100%;
    max-width: 50vw;
    overflow-x: scroll;
    gap: 10px;
    margin-inline: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.messages-content-footer-quick-messages::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 1000px) {
    .messages-content-footer-quick-messages {
        max-width: 66vw;
    }
}

@media screen and (max-width: 600px) {
    .messages-content-footer-quick-messages {
        max-width: 100vw;
    }
}

.messages-content-footer-quick-messages button {
    white-space: nowrap;
    border: 1px solid #FF3F55;
    color: #FF3F55;
    background-color: transparent;
    border-radius: 4px;
    padding: 4px 12px;
    transition: all .2s ease-in-out;
}

.messages-content-footer-quick-messages button:hover {
    background-color: #FF3F55;
    color: #fff;
}

/* ===============================
   Yönetici Paneli - Başlık ve Liste
   --------------------------------
   Admin panelinin üst başlık bölümü, butonları ve liste elemanlarının stilleri.
================================= */

.admin-panel-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-panel-header h1 {
    font-size: 20px;
    font-weight: 600;
}

.admin-panel-header-actions {
    display: flex;
    gap: 6px;
}

.admin-panel-header-action-btn {
    background-color: #FF3F55;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.admin-panel-content {
    margin-top: 20px;
}

.admin-panel-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-panel-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ededed;
    padding: 6px 20px;
    border-radius: 4px;
}

.admin-panel-list-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-panel-list-item-actions a {
    color: #FF3F55;
    font-weight: 600;
    text-decoration: none;
}

.admin-panel-list-item-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    line-break: anywhere;
}

.admin-panel-list-item-title img {
    width: 100%;
    max-width: 600px;
    max-height: 20px;
    transition: all .2s ease-in-out;
}

.admin-panel-list-item:hover .admin-panel-list-item-title img {
    max-height: 100px;
}

/* ===============================
   Kategori Bölümü - Yatay Scroll ve Responsive
   --------------------------------
   Kategori listesinin yatay kaydırma, responsive görünüm ve gizleme/gösterme sınıfları.
================================= */

.categories-section {
    margin-block: 1px;
    display: flex;
    gap: 20px;
    max-width: 100%;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    align-items: flex-start;
}

.categories-section::-webkit-scrollbar {
    display: none;
}

.desktop-only {
    display: flex !important;
}

.mobile-only {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }
}

/* ===============================
   Mesaj Paneli - Genel Düzen
   --------------------------------
   Mesaj paneli, kişiler ve mesaj içeriği bölümlerinin genel flex düzenleri ve responsive ayarlar.
================================= */

.messages-panel {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 70dvh;
    margin-top: 30px;
    margin-inline: 6%;
}

.messages-contacts {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.messages-contacts-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: 80px;
}

.messages-content {
    display: flex;
    flex-direction: column;
    flex: 0 0 60%;
}

@media screen and (max-width: 1000px) {
    .messages-panel {
        flex-direction: column;
        height: 100%;
    }

    .messages-content {
        border-top: 1px solid rgba(0, 0, 0, 0.5);
    }
}

/* ===============================
   Mesajlar - Kişiler Listesi
   --------------------------------
   Mesaj gönderilen kişilerin listesi ve hover/aktif durum stilleri.
================================= */

.messages-contacts-list {
    display: flex;
    flex-direction: column;
}

.messages-contacts-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-inline: 20px;
    padding-block: 10px;
    color: #000;
    text-decoration: none;
}

.messages-contacts-item.active,
.messages-contacts-item:hover {
    background-color: #efefef;
}

/* ===============================
   Mesajlar - Kişi Resmi ve Durum İndikatörü
   --------------------------------
   Profil resmi boyutları ve konumu, çevrimiçi göstergesi gibi detaylar.
================================= */

.messages-contacts-image {
    position: relative;
}

.messages-contacts-image img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #efefef;
}

.messages-contacts-image .messages-contacts-image-profile {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid transparent;
}

/* ===============================
   Mesajlar - Kişi Detayları ve Başlıkları
   --------------------------------
   Kişi detayları ve mesaj başlıklarının görünümü.
================================= */

.messages-contacts-details {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.messages-contacts-title {
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.last-msg-time {
    font-size: 12px;
    color: #757575;
}

.messages-contacts-product-title {
    color: #757575;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.messages-contacts-last-msg {
    font-size: 14px;
}

/* ===============================
   Mesajlar - Sohbet İçeriği ve Scroll
   --------------------------------
   Mesajların gösterildiği bölüm ve scrollbar ayarları.
================================= */

.messages-content-chat {
    height: 100%;
    overflow-y: scroll;
    padding: 10px;
}

/* ===============================
   Mesajlar - Footer ve Gönderim Alanı
   --------------------------------
   Mesaj yazma alanı, gönderme butonları ve responsive düzen.
================================= */

.messages-content-footer {
    display: flex;
    flex-direction: column;
    background-color: white;
}

.messages-content-send-msg {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding-inline: 20px;
}

@media screen and (max-width: 768px) {
    .messages-content-send-msg {
        padding-inline: 4px;
    }
}

.messages-content-send-msg textarea {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding-inline: 20px;
    font-size: 16px;
    padding-block: 10px;
    resize: none;
}

.messages-content-send-msg textarea::placeholder {
    padding-block: 10px;
    padding-left: 10px;
}

.messages-content-send-msg button {
    background-color: #FF3F55;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    white-space: nowrap;
}

.messages-content-send-msg-buttons {
    display: flex;
    gap: 10px;
}

@media screen and (max-width: 768px) {
    .messages-content-send-msg button {
        font-size: 12px;
        padding: 6px 12px;
        gap: 6px;
        flex-direction: column;
    }

    .messages-content-send-msg-buttons {
        gap: 6px;
        flex-direction: column;
    }
}

/* ===============================
   Mesaj Balonları - Gönderen ve Alıcı Tarafı
   --------------------------------
   Kendi mesajların ve diğer kişilerin mesajlarının stil farkları ve silme butonu görünürlüğü.
================================= */

.messages-content-message-me {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    background-color: #FFECEE;
    margin-top: 10px;
    width: fit-content;
    margin-left: auto;
}

.messages-remove-channel {
    margin-left: auto;
}

.remove-channel {
    background-color: transparent;
    outline: none;
    border: none;
}

.messages-content-message-me .remove-message {
    background-color: transparent;
    outline: none;
    border: none;
    display: none;
}

.messages-content-message-me:hover .remove-message {
    display: block;
}

.messages-content-message-other {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    background-color: #f3f0f0;
    margin-top: 10px;
    width: fit-content;
}

/* ===============================
   Mesaj Profil Resimleri
   --------------------------------
   Mesaj balonlarındaki profil fotoğraflarının boyutları ve arkaplanları.
================================= */

.messages-content-message-image img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #efefef;
}

.messages-content-message-image {
    margin-bottom: auto;
}

/* ===============================
   Bakım Modu Sayfası
   --------------------------------
   Site bakım modundayken gösterilecek mesaj ve görsel stilleri.
================================= */

.maintenance {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
    text-align: center;
}

.maintenance-image img {
    width: 100%;
    max-width: 400px;
    max-height: 400px;
}

.maintenance h1 {
    font-size: 50px;
    font-weight: 600;
}

/* ===============================
   Mesajlar - Ürün Başlığı ve Linkler
   --------------------------------
   Mesaj başlığındaki ürün ismi ve linklerin görünümü.
================================= */

.messages-content-header-product-title,
.messages-content-header-product-title a {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #757575 !important;
}

.messages-content-header-title a {
    color: #000;
    text-decoration: none;
}

/* ===============================
   Modal Teklif Seçenekleri
   --------------------------------
   Modal pencere içinde teklif seçenekleri butonları ve seçili durum stilleri.
================================= */

.modal-teklif-secenekleri {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.modal-teklif-secenekleri input {
    display: none;
}

.modal-teklif-secenekleri input:checked + label {
    background-color: #000;
    color: #fff;
}

.modal-teklif-secenekleri label {
    width: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    background-color: rgba(0, 0, 0, .05);
    font-weight: 600;
}

.modal-teklif-secenekleri label span {
    font-size: 12px;
    font-weight: 400;
    color: #757575;
}

.modal-teklif-secenekleri input:checked + label span {
    color: #fff;
}

/* ===============================
   Modal Fiyat Görünümü
   --------------------------------
   Modal içindeki fiyat kutusunun görünümü.
================================= */

.modal-price {
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, .05);
    font-weight: 400;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    gap: 6px;
    border-radius: 30px;
}

.modal-price span {
    font-weight: 600;
}

/* ===============================
   Mesajlaşma - Teklif Mesajı Stili
   --------------------------------
   Teklif mesajları için özel font ve hizalama.
================================= */

.messages-content-message-offer {
    display: flex;
    flex-direction: column;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    padding-inline: 20px;
}

.messages-content-message-offer span {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: -6px;
}

/* ===============================
   Profil Resmi Ayarları
   --------------------------------
   Ayarlar sayfasındaki profil resmi ve input genişliği.
================================= */

.settings-profile-image {
    display: flex;
    align-items: center;
    gap: 10px;
}

.settings-profile-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.settings-profile-image .form-floating {
    width: 100%;
}

/* ===============================
   Mobil İlan Slider
   --------------------------------
   Mobilde ilan görselleri slider düzeni ve responsive ayarları.
================================= */

.mobile-item-slider .swiper {
    width: 100%;
    height: 100%;
}

.mobile-item-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-item-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #2C2C2C;
}

.mobile-item-slider .swiper-slide {
    background-size: cover;
    background-position: center;
}

.mobile-item-slider .item-swiper-mbl {
    height: 360px;
    width: 100%;
}

.mobile-item-slider .swiper-pagination {
    background-color: rgba(0, 0, 0, .2);
    color: white;
    position: absolute;
    right: 20px;
    bottom: 40px;
    margin-left: auto;
    width: fit-content;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 13px;
}

/* ===============================
   Mobil İlan Detayları
   --------------------------------
   Mobilde ilan detaylarının genel görünümü ve tasarım ayarları.
================================= */

.mobile-item-details {
    background-color: #fff;
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
    position: relative;
    z-index: 100;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-item-details .page-breadcrumb {
    padding: 10px 0 !important;
    margin: 0 !important;
}

.mobile-item-details .page-breadcrumb-items {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: scroll;
}

.mobile-item-price {
    font-size: 30px;
    font-weight: 600;
}

.mobile-item-title {
    font-size: 14px;
    font-weight: 400;
}

.mobile-item-subdetails {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 10px;
    font-size: 13px;
}

.mobile-item-detail-title {
    font-size: 15px;
    font-weight: 700;
    margin-top: 16px;
}

.mobile-item-seller-details {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    border-block: 1px solid rgba(0, 0, 0, 0.1);
    padding-block: 10px;
    margin-block: 10px;
    color: #000;
    text-decoration: none;
}

.mobile-item-seller-image img {
    width: 66px;
    height: 66px;
    border-radius: 50%;
}

.mobile-item-seller-title {
    display: flex;
    flex-direction: column;
    font-weight: bold;
}

.mobile-item-seller-title span {
    font-weight: 400;
    font-size: 14px;
    color: #757575;
}

/* ===============================
   Rapor Formları - Ürün ve Üye Raporlama
   --------------------------------
   Ürün ve üye raporlama formlarındaki checkbox ve input stilleri.
================================= */

#reportItem .form-check,
#reportMember .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

#reportItem .form-check-input,
#reportMember .form-check-input {
    width: 20px;
    height: 20px;
}

#reportItem .form-check-label,
#reportMember .form-check-label {
    font-size: 14px;
}

#reportItem .form-control,
#reportMember .form-control {
    font-size: 14px;
}

#reportItem .form-control::placeholder,
#reportMember .form-control::placeholder {
    font-size: 12px;
}

.form-check-input:checked {
    background-color: #ee374c;
    border-color: #ee374c;
}

.form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgba(255, 63, 85, 0.25);
}


/* ===============================
   Kategori Dropdown Menüsü
================================= */
.all-categories-dropdown {
    position: absolute;
    top: 125px;
    left: 6%;
    right: 6%;
    background-color: #fff;
    z-index: 99999;
    display: none;
    border-radius: 14px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border: 1px solid rgba(0, 0, 0, .1);
}

.all-categories-dropdown.show {
    display: flex;
}

.all-categories-list {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    background-color: #F4F4F4;
    padding: 14px 0 14px 14px;
    border-radius: 14px 0 0 14px;
}

.all-categories-list .category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 8px;
    border: 1px solid transparent;
    color: #000;
    text-decoration: none;
}

.all-categories-list .category-item.active,
.all-categories-list .category-item:hover {
    background-color: #fff;
    border-radius: 12px 0 0 12px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-right: 1px solid transparent;
}

.category-item .category-item-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ee374c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-item .category-item-icon img {
    width: 60%;
    height: 60%;
}

/* Kategori içeriği tabları */
.all-categories-categories {
    padding: 20px;
    width: 100%;
}

.category-tab {
    width: 100%;
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 4px 10px;
}

.category-tab.active {
    display: grid;
}

.category-tab a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    padding: 3px 8px;
}

.category-tab a:hover {
    background-color: #F4F4F4;
    border-radius: 10px;
}

.category-filters {
    padding-inline: 14px;
}

/* ===============================
   Footer Bölümü
================================= */
footer {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

footer .footer-bottom {
    background-color: #ee374c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 6%;
    padding-block: 10px;
    color: #fff;
    font-size: 12px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding-inline: 6%;
    padding-block: 20px;
    font-size: 13px;
}

@media screen and (max-width: 500px) {
    footer .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-top .footer-part .footer-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-part .footer-categories {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-part .footer-categories a {
    color: #676767;
    text-decoration: none;
    font-size: 13px;
}

.footer-part .footer-socials {
    display: flex;
    gap: 10px;
    font-size: 20px;
}

.footer-part .footer-socials a {
    color: #000;
    text-decoration: none;
}

/* Footer mobilde gizleniyor */
@media screen and (max-width: 768px) {
    footer {
        display: none;
    }

    body {
        padding-bottom: 120px; /* Footer alanı için boşluk */
    }
}

/* ===============================
   Resim Önizleme Alanı
================================= */
#image_previews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

#image_previews div {
    background-color: #f3f0f0;
    position: relative; /* close-btn için */
}

#image_previews div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#image_previews .close-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #FF3F55;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
}

#image_previews .close-btn#make-primary-image-btn {
    background-color: rgb(240, 153, 14);
    font-size: 10px;
}

/* ===============================
   Giriş Sayfası Butonları
================================= */
.login-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.forgot-password-btn {
    margin-left: auto;
    color: #2C2C2C;
    font-size: 12px;
    text-decoration: none;
}

/* ===============================
   Mobil Alt Menü (Footer)
================================= */
.mobile-footer {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    align-items: center;
    justify-content: space-evenly;
    padding: 14px 10px;
    z-index: 1000000;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, .1);
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.mobile-footer a {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #757575;
    text-align: center;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    gap: 6px;
}

.mobile-footer a.active {
    color: #FF3F55;
}

.mobile-footer a i {
    font-size: 24px;
}

/* Üçüncü buton görünmez */
.mobile-footer a:nth-child(3) i {
    opacity: 0;
}

/* Ortadaki büyük buton */
.mobile-footer .mobile-footer-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF3F55;
    color: #fff;
    border: 10px solid #fff;
    width: 70px;
    height: 70px;
    outline: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* ===============================
   Responsive Mesaj Panelleri
================================= */
@media screen and (max-width: 1000px) {
    .messages-contacts,
    .messages-content {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        bottom: 100px;
        z-index: 100000;
        background: #fff;
    }

    /* Modal açıkken arka plan bulanık */
    .messages-content:has(.modal.show) > *:not(.messages-content-footer),
    .messages-content:has(.modal.show) .messages-content-footer > *:not(.modal) {
        opacity: 0.5;
        filter: blur(2px);
    }
}

/* ===============================
   Header Arama Kutusu ve Sonuçları
================================= */
.header-search {
    position: relative;
}

.search-results {
    display: none;
    position: absolute;
    top: 34px;
    left: 0;
    right: 0;
    background-color: #F7F7F7;
    padding: 10px;
    border-radius: 0 0 10px 10px;
    width: 100%;
    max-width: 100%;
    max-height: 60dvh;
    overflow-y: scroll;
    gap: 10px;
    flex-direction: column;
    z-index: 100000;
}

.lower-header.mobile-only .search-results {
    position: fixed;
    top: 114px;
    left: 6%;
    right: 6%;
}

.header-search:has(input:focus) .search-results {
    display: flex;
}

.search-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #000;
    text-decoration: none;
}

.search-result-category,
.search-result-type {
    color: #757575;
    font-size: 12px;
}

/* ===============================
   İlan Ver Sayfası Kategorileri
================================= */
.ilanver-page .ilanver-categories {
    display: flex;
    max-width: 100%;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    align-items: baseline;
}

.ilanver-page .ilanver-categories::-webkit-scrollbar {
    display: none;
}

/* ===============================
   İlan Slider - Tam Ekran Modu
================================= */
.item-slider.slider-fullscreen .item-swiper {
    position: fixed;
    inset: 0;
    height: 100dvh;
    z-index: 999998;
}

.item-slider.slider-fullscreen .swiper-slide img {
    object-fit: contain;
    background-color: #2C2C2C;
}

.slider-exit-fullscreen {
    display: none;
    z-index: 999999;
    position: fixed;
    top: 0;
    right: 0;
    color: white;
    font-size: 50px;
    cursor: pointer;
}

.item-slider.slider-fullscreen .slider-exit-fullscreen {
    display: block;
}

/* ===============================
   Mobil İlan Slider - Tam Ekran Modu
================================= */
.mobile-item-slider.slider-fullscreen .item-swiper-mbl {
    position: fixed;
    inset: 0;
    height: 100dvh;
    z-index: 999998;
}

.mobile-item-slider.slider-fullscreen .swiper-slide img {
    object-fit: contain;
    background-color: #2C2C2C;
}

.mobile-item-slider.slider-fullscreen .slider-exit-fullscreen {
    display: block;
}

/* ===============================
   İlanlar Aski Rozeti
================================= */
.ilanlar-aski {
    position: relative;
}

.header-actions a span {
    display: none;
}

.ilanlar-aski span {
    display: block !important;
    position: absolute;
    bottom: -10px;
    right: -10px;
    color: rgb(240, 153, 14) !important;
}

/* ===============================
   Takipçi Listesi
================================= */
.followers-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.follower-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    background-color: #f3f0f0;
    color: #000;
    text-decoration: none;
}

.follower-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* ===============================
   Header Mesaj Bildirimi Rozeti
================================= */
#header-action-mesajlar span {
    display: block;
    font-size: 10px;
    top: 4px !important;
}

.messages-contacts-product-title .badge {
    font-size: 10px;
}

/* ===============================
   Ana Sayfa Daha Fazla Göster Butonu
================================= */
.main-show-more-items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

/* ===============================
   Form Checkbox Inline Ayarları
================================= */
.form-check-inline {
    display: inline-block;
    margin-right: 20px; /* Checkboxlar arası boşluk */
    cursor: pointer;  /* Tıklanabilir imleç */
}

input[type="checkbox"] {
    margin-right: 5px; /* Checkbox ile label arası boşluk */
}

/* ===============================
   Buton Konteyneri ve Genel Buton Ayarları
================================= */
.button-container {
    display: flex;
    gap: 15px;  /* Butonlar arası mesafe */
}

button {
    cursor: pointer;
}

/* ===============================
   Kategori Bölümü - Yatay Scroll ve Stil
================================= */
.categories-section {
    padding: 1px 0;
    overflow-x: auto;
    background: transparent; /* Beyaz arka plan kaldırıldı */
    border: none; /* Kenarlık kaldırıldı */
}

.category-scroll-container {
    display: flex;
    scroll-snap-type: x mandatory;
    gap: 8px;
    padding: 8px 10px;
    -webkit-overflow-scrolling: touch;
}

.ilanver-category {
    flex: 0 0 auto;
    width: 70px;
    text-align: center;
    text-decoration: none;
    color: #333;
    scroll-snap-align: start;
    transition: transform 0.2s ease;
}

.ilanver-category:hover {
    transform: scale(1.05);
}

.ilanver-category-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0px auto;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ilanver-category-icon img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.ilanver-category-title {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===============================
   Responsive Kullanıcı Paneli Rozetleri
================================= */
@media (max-width: 767.98px) {
    .user-panel-sidebar-nav li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .user-panel-sidebar-nav li a .badge {
        margin-left: 0.5rem;
        font-size: 0.75rem;
        min-width: 20px;
        text-align: center;
    }
}

/* ===============================
   Güvenilir Satıcı Rozeti
================================= */
.trusted-seller-badge {
    display: inline-block;
    margin-top: 4px;
    padding: 4px 8px;
    font-size: 13px;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    line-height: 1.4;
    background-color: #28a745;
}

/* ===============================
   Dropdown Scrollbar Stil
================================= */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

/* ===============================
   Mobil Eylem Rozetleri
================================= */
.mobile-actions .badge {
    font-size: 0.7rem;
    padding: 2px 6px;
    vertical-align: middle;
}

/* ===============================
   Tema - Gün/Night Modu
================================= */
body.day {
  background-color: #ffffff;
  color: #222222;
}

body.night {
  background-color: #121212;
  color: #eee;
}

/* Link renkleri */
body.day a {
  color: #0066cc;
}

body.night a {
  color: #80b3ff;
}

body.day a:hover, body.day a:focus {
  color: #004999;
  text-decoration: underline;
}

body.night a:hover, body.night a:focus {
  color: #a8d0ff;
  text-decoration: underline;
}

/* ===============================
   Ortak Sayfa Yapısı
================================= */
header, main, footer {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 15px;
}

/* Border ve renkler */
body.day header, body.day footer {
  border-color: #ccc;
}

body.night header, body.night footer {
  border-color: #444;
  color: #aaa;
}

/* Sayfa bölümleri */
header {
  border-bottom: 1px solid;
  padding-bottom: 10px;
}

footer {
  border-top: 1px solid;
  padding-top: 10px;
  font-size: 13px;
  text-align: center;
}