/* ================================================== */
/* 1. КНОПКА-ТРИГГЕР ВЫЗОВА ЧАТА (КРУГЛАЯ В УГЛУ)     */
/* ================================================== */
#madina-chat-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #770000;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}
#madina-chat-trigger:hover { 
    transform: scale(1.1); 
    background-color: #990000;
}

/* ================================================== */
/* 2. ОСНОВНОЕ ОКНО ЧАТА (ДЕФОЛТ ДЛЯ ПК И ДЕСКТОПА)   */
/* ================================================== */
#madina-chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    height: 500px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

/* ================================================== */
/* 3. ШАПКА ЧАТА И ПРОФИЛЬ КОНСУЛЬТАНТА               */
/* ================================================== */
.madina-chat-header {
    background-color: #770000;
    color: #ffffff;
    padding: 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.madina-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-image: url('madina-avatar.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 12px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.madina-profile-info { 
    flex-grow: 1; 
}
.madina-name { 
    font-weight: bold; 
    font-size: 15px; 
    letter-spacing: 0.3px; 
}
.madina-status { 
    font-size: 12px; 
    color: #ffb3b3; 
}

/* ================================================== */
/* 4. ОБЛАСТЬ СООБЩЕНИЙ (ПЕРЕПИСКА)                   */
/* ================================================== */
.madina-chat-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #fcf8f8;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Сообщения (Бабблы) */
.madina-msg {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.madina-msg.client {
    background-color: #f0e6e6;
    color: #333333;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    border: 1px solid #e1d2d2;
}
.madina-msg.bot {
    background-color: #770000;
    color: #ffffff;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

/* Картинки товаров внутри бабблов */
.madina-chat-img {
    max-width: 100%; 
    border-radius: 8px; 
    margin-top: 8px; 
    display: block; 
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.2s ease;
}
.madina-chat-img:hover {
    transform: scale(1.02);
}

/* ================================================== */
/* 5. ИНТЕРАКТИВНЫЕ КНОПКИ-ССЫЛКИ И СЕЛЕКТОР ЯЗЫКА     */
/* ================================================== */
.madina-chat-link {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold;
    display: inline-block;
    margin: 4px 2px;
    padding: 5px 12px;
    background-color: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    font-size: 13px;
    letter-spacing: 0.2px;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.madina-chat-link:hover {
    background-color: #ffffff !important;
    color: #770000 !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.madina-msg.client .madina-chat-link {
    color: #770000 !important;
    background-color: rgba(119, 0, 0, 0.08);
    border: 1px solid rgba(119, 0, 0, 0.2);
}
.madina-msg.client .madina-chat-link:hover {
    background-color: #770000 !important;
    color: #ffffff !important;
}

/* Блок выбора языка при старте */
#madina-lang-selector button {
    border: 2px solid #770000 !important;
    color: #770000 !important;
    background-color: #ffffff !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
#madina-lang-selector button:hover {
    background-color: #770000 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* ================================================== */
/* 6. НИЖНЯЯ ПАНЕЛЬ ВВОДА СООБЩЕНИЙ                   */
/* ================================================== */
.madina-chat-input-area {
    display: flex;
    padding: 10px;
    background-color: #ffffff;
    border-top: 1px solid #eeeeee;
    align-items: center;
}
#madina-input-field {
    flex-grow: 1;
    border: 1px solid #cccccc;
    border-radius: 20px;
    padding: 8px 14px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.2s ease;
}
#madina-input-field:focus:not(:disabled) {
    border-color: #770000;
}
#madina-input-field:disabled {
    background-color: #f5f5f5;
    color: #999999;
    cursor: not-allowed;
    border-color: #e0e0e0;
}

#madina-send-btn {
    background: none;
    border: none;
    color: #770000;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s ease;
}
#madina-send-btn:hover:not(:disabled) {
    color: #990000;
}
#madina-send-btn:disabled {
    color: #cccccc;
    cursor: not-allowed;
}

/* ================================================== */
/* 7. ПОЛНОЭКРАННЫЙ ЛАЙТБОКС (ПРОСМОТР КАРТИНКИ)      */
/* ================================================== */
#madina-image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
}
#madina-image-modal.active {
    display: flex;
    opacity: 1;
}
#madina-modal-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.25s ease-in-out;
}
#madina-image-modal.active #madina-modal-img {
    transform: scale(1);
}

/* ================================================== */
/* 8. АДАПТИВНОСТЬ ПОД МОБИЛЬНЫЕ УСТРОЙСТВА           */
/* ================================================== */
@media screen and (max-width: 480px) {
    #madina-chat-trigger {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    #madina-chat-window {
        bottom: 80px;
        right: 10px;
        left: 10px;
        width: auto;
        height: calc(100vh - 100px);
        max-height: 550px;
        border-radius: 12px;
    }
    
    .madina-msg {
        max-width: 85%; 
        padding: 8px 12px;
        font-size: 13px;
    }
}