/* =================== VISITOR CHAT STYLES (النسخة النهائية الكاملة) =================== */

.visitor-chat-widget {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    font-family: 'Cairo', sans-serif;
}

/* حاوية الإشعارات الجديدة التي تظهر بجانب الأيقونة */
.visitor-chat-widget .notifications-container {
    position: absolute;
    bottom: 8px; /* لتكون على نفس مستوى أيقونة الشات */
    left: 75px;  /* تبدأ بعد الأيقونة بمسافة */
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    white-space: nowrap;
    cursor: pointer;
    pointer-events: none;
}

.visitor-chat-widget .notifications-container.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* التنسيق الموحد للفقاعات */
.visitor-chat-widget .notification-bubble {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* تنسيق رسالة "اطلب الآن" */
.visitor-chat-widget .chat-prompt-message {
    background-color: var(--secondary-color, #A7C957);
    color: var(--dark-bg, #2C3E50);
}

/* تنسيق إشعار رسالة الأدمن */
.visitor-chat-widget .chat-notification-bubble {
    width: 280px;
    max-width: calc(100vw - 120px);
    background: linear-gradient(135deg, #0d6efd, #0d54b5);
    color: white;
    font-size: 15px;
    line-height: 1.6;
}

.chat-notification-bubble .sender-name {
    font-weight: 700; display: flex; align-items: center; gap: 8px;
    margin-bottom: 5px; font-size: 16px;
}
.chat-notification-bubble .sender-name i { font-size: 18px; }

.chat-notification-bubble .message-content {
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* تنسيقات أيقونة الشات ونافذة المحادثة */
.visitor-chat-widget .chat-toggle-button {
    position: relative; background-color: var(--primary-color, #6A994E);
    color: white; width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s, background-color 0.3s;
    z-index: 2;
}

.visitor-chat-widget .chat-toggle-button:hover { transform: scale(1.1); }
.visitor-chat-widget .chat-toggle-button .icon-close { display: none; }

.visitor-chat-widget .chat-notification-badge {
    position: absolute; top: -2px; right: -2px; background-color: #dc3545;
    color: white; width: 22px; height: 22px; border-radius: 50%;
    font-size: 12px; font-weight: bold; display: flex;
    align-items: center; justify-content: center; border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.visitor-chat-widget .chat-window {
    position: absolute; bottom: 80px; left: 0; width: 350px;
    max-width: 90vw; background-color: white; border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15); display: flex; flex-direction: column;
    overflow: hidden; opacity: 0; transform: translateY(20px);
    pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease;
}

.visitor-chat-widget.open .chat-window { opacity: 1; transform: translateY(0); pointer-events: auto; }
.visitor-chat-widget.open .chat-toggle-button { background-color: var(--dark-bg); }
.visitor-chat-widget.open .chat-toggle-button .icon-open { display: none; }
.visitor-chat-widget.open .chat-toggle-button .icon-close { display: block; }
.visitor-chat-widget.open .notifications-container { opacity: 0; pointer-events: none; }

/* تنسيقات داخل نافذة الشات (Header, Body, Footer) */
.visitor-chat-widget .chat-header { background-color: var(--dark-bg, #2C3E50); color: white; padding: 20px; text-align: right; flex-shrink: 0; }
.visitor-chat-widget .chat-header h3 { margin: 0 0 5px 0; font-size: 18px; }
.visitor-chat-widget .chat-header p { margin: 0; font-size: 14px; opacity: 0.9; }
.visitor-chat-widget .chat-body { flex-grow: 1; padding: 15px; overflow-y: auto; height: 350px; background-color: #f9f9f9; display: flex; flex-direction: column; }
.visitor-chat-widget .chat-footer { padding: 0; background-color: #fff; border-top: 1px solid #eee; flex-shrink: 0; }

/* تنسيقات الرسائل داخل الشات */
.visitor-chat-widget .message-container { display: flex; flex-direction: column; margin-bottom: 12px; max-width: 85%; }
.visitor-chat-widget .message-bubble { padding: 10px 15px; border-radius: 18px; word-wrap: break-word; line-height: 1.5; font-size: 14px; }
.visitor-chat-widget .message-container.visitor { align-self: flex-end; }
.visitor-chat-widget .message-container.visitor .message-bubble { background-color: var(--primary-color, #6A994E); color: white; border-bottom-right-radius: 4px; }
.visitor-chat-widget .message-container.admin { align-self: flex-start; }
.visitor-chat-widget .message-container.admin .message-bubble { background-color: #e9ecef; color: #333; border-bottom-left-radius: 4px; }