/* ==========================================
 * PROTEZ MARKET MESAJLAŞMA - MY ACCOUNT CSS
 * ========================================== */

/* Gizleme */
.pm-mesaj-hidden {
    display: none !important;
}

/* Kapsayıcı: Sadece div ve span kullanıldı */
.pm-mesaj-account-container {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 600px;
    max-height: 80vh;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    font-family: inherit; /* Tema fontunu miras al */
}

/* -------------------------------------
 * SOL TARAF: SOHBET LİSTELERİ
 * ------------------------------------- */
.pm-mesaj-account-sidebar {
    width: 320px;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    background: #fdfdfd;
}

.pm-mesaj-account-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}

.pm-mesaj-account-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.pm-mesaj-account-chat-list {
    flex: 1;
    overflow-y: auto;
}

.pm-mesaj-account-empty-state {
    padding: 30px 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.pm-mesaj-account-chat-item {
    display: flex;
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
    align-items: center;
}

.pm-mesaj-account-chat-item:hover,
.pm-mesaj-account-chat-item.pm-mesaj-account-active {
    background-color: #f3f4f6;
}

.pm-mesaj-account-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background: #e5e7eb;
    flex-shrink: 0;
}

.pm-mesaj-account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pm-mesaj-account-chat-details {
    flex: 1;
    min-width: 0;
}

.pm-mesaj-account-chat-name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.pm-mesaj-account-chat-product {
    font-size: 12px;
    color: #0ea5e9;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pm-mesaj-account-chat-excerpt {
    font-size: 13px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* -------------------------------------
 * SAĞ TARAF: AKTİF SOHBET EKRANI
 * ------------------------------------- */
.pm-mesaj-account-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    position: relative;
    min-width: 0; /* responsive fix */
}

.pm-mesaj-account-welcome {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    background: #f9fafb;
    z-index: 10;
}

.pm-mesaj-account-welcome .pm-mesaj-account-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #d1d5db;
}

.pm-mesaj-account-active-chat {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.pm-mesaj-account-chat-header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
}

.pm-mesaj-account-back-btn {
    margin-right: 15px;
    font-size: 14px;
    color: #0ea5e9;
    cursor: pointer;
    font-weight: 500;
}

.pm-mesaj-account-header-info {
    display: flex;
    flex-direction: column;
}

.pm-mesaj-account-header-name {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.pm-mesaj-account-header-product {
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px;
}

/* Mesajlar Alanı */
.pm-mesaj-account-chat-body {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pm-mesaj-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    max-width: 75%;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.pm-mesaj-bubble-customer {
    align-self: flex-end; /* Müşteri (kendi ekranında) sağda */
    background-color: #0ea5e9;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.pm-mesaj-bubble-vendor {
    align-self: flex-start; /* Satıcı (karşı taraf) solda */
    background-color: #fff;
    color: #1f2937;
    border: 1px solid #e5e7eb;
    border-bottom-left-radius: 4px;
}

.pm-mesaj-bubble-attachment {
    max-width: 100%;
    margin-top: 8px;
    border-radius: 8px;
    display: block;
}

.pm-mesaj-bubble-attachment-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: inherit;
    text-decoration: underline;
}

/* Alt Kısım - Mesaj Gönderme */
.pm-mesaj-account-chat-footer {
    padding: 15px 20px;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}

.pm-mesaj-account-input-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pm-mesaj-account-attachment-btn {
    font-size: 22px;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s;
}

.pm-mesaj-account-attachment-btn:hover {
    color: #0ea5e9;
}

.pm-mesaj-account-input-wrapper {
    flex: 1;
    position: relative;
}

.pm-mesaj-account-input {
    width: 100%;
    padding: 12px 18px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 24px !important;
    font-size: 14px !important;
    outline: none !important;
    background: #f9fafb;
    box-sizing: border-box;
    margin: 0 !important;
}

.pm-mesaj-account-input:focus {
    border-color: #0ea5e9 !important;
    background: #fff;
    box-shadow: none !important;
}

.pm-mesaj-account-attachment-preview {
    font-size: 12px;
    color: #6b7280;
    margin-top: 5px;
    padding-left: 10px;
}

.pm-mesaj-account-send-btn {
    background: #0ea5e9 !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer;
    transition: background 0.2s;
}

.pm-mesaj-account-send-btn:hover {
    background: #0284c7 !important;
}

/* Bildirimler */
.pm-mesaj-notice {
    padding: 10px 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 13px;
    background: #fdf2f2;
    color: #e53935;
    border: 1px solid #f9dcdc;
    text-align: center;
}

/* -------------------------------------
 * MOBİL UYUMLULUK
 * ------------------------------------- */
@media (max-width: 768px) {
    .pm-mesaj-account-container {
        flex-direction: column;
        height: 600px;
    }

    .pm-mesaj-account-sidebar {
        width: 100%;
        border-right: none;
        height: 100%;
    }

    /* Mobilde mesaj ekranı açıldığında yan paneli gizle */
    .pm-mesaj-account-container.pm-mobile-active-view .pm-mesaj-account-sidebar {
        display: none;
    }

    .pm-mesaj-account-container.pm-mobile-active-view .pm-mesaj-account-main {
        display: flex;
    }

    .pm-mesaj-account-main {
        display: none; /* Varsayılan olarak listeyi göster, chat kısmını gizle */
        width: 100%;
        height: 100%;
    }

    .pm-mesaj-account-back-btn {
        display: block !important;
    }

    .pm-mesaj-account-welcome {
        display: none; /* Mobilde hoşgeldin ekranı gereksiz */
    }
}
