
/* Ensure the floating cart appears above other elements */
.z-50[data-v-f2ae3679] {
    z-index: 50;
}

/* Smooth animations */
.transition-all[data-v-f2ae3679] {
    transition-property: all;
}

/* Custom scrollbar for preview */
.max-h-64[data-v-f2ae3679]::-webkit-scrollbar {
    width: 4px;
}
.max-h-64[data-v-f2ae3679]::-webkit-scrollbar-track {
    background: transparent;
}
.max-h-64[data-v-f2ae3679]::-webkit-scrollbar-thumb {
    background-color: rgba(156, 163, 175, 0.5);
    border-radius: 2px;
}
.max-h-64[data-v-f2ae3679]::-webkit-scrollbar-thumb:hover {
    background-color: rgba(156, 163, 175, 0.7);
}

.support-chat-widget[data-v-0e120776] {
    position: fixed;
    bottom: 100px;
    right: 32px;
    z-index: 1000;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.chat-toggle-btn[data-v-0e120776] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}
.chat-toggle-btn[data-v-0e120776]:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}
.chat-toggle-btn.has-unread[data-v-0e120776] {
    animation: pulse-0e120776 2s infinite;
}
.unread-badge[data-v-0e120776] {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}
.chat-window[data-v-0e120776] {
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.chat-header[data-v-0e120776] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-info[data-v-0e120776] {
    flex: 1;
}
.chat-title[data-v-0e120776] {
    font-weight: 600;
    font-size: 16px;
}
.chat-status[data-v-0e120776] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    opacity: 0.9;
}
.status-indicator[data-v-0e120776] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ed573;
}
.status-indicator.offline[data-v-0e120776] {
    background: #ff4757;
}
.chat-actions[data-v-0e120776] {
    display: flex;
    gap: 8px;
}
.btn-minimize[data-v-0e120776],
.btn-close[data-v-0e120776] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-minimize[data-v-0e120776]:hover,
.btn-close[data-v-0e120776]:hover {
    background: rgba(255, 255, 255, 0.3);
}
.messages-container[data-v-0e120776] {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
}
.loading-messages[data-v-0e120776] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 40px 20px;
    color: #6c757d;
}
.loading-spinner[data-v-0e120776] {
    width: 30px;
    height: 30px;
    border: 3px solid #e9ecef;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin-0e120776 1s linear infinite;
}
.welcome-message[data-v-0e120776] {
    text-align: center;
    padding: 20px;
    color: #6c757d;
}
.welcome-content h4[data-v-0e120776] {
    color: #495057;
    margin: 10px 0 5px 0;
}
.welcome-content p[data-v-0e120776] {
    margin-bottom: 20px;
}
.quick-actions[data-v-0e120776] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.quick-action-btn[data-v-0e120776] {
    background: white;
    border: 1px solid #dee2e6;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}
.quick-action-btn[data-v-0e120776]:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}
.message[data-v-0e120776] {
    margin-bottom: 15px;
}
.message-sent .message-content[data-v-0e120776] {
    background: #667eea;
    color: white;
    margin-left: 20%;
    border-radius: 18px 18px 4px 18px;
}
.message-received .message-content[data-v-0e120776] {
    background: white;
    color: #333;
    margin-right: 20%;
    border-radius: 18px 18px 18px 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.message-system .message-content[data-v-0e120776] {
    background: #e9ecef;
    color: #6c757d;
    text-align: center;
    border-radius: 12px;
    font-size: 13px;
}
.message-content[data-v-0e120776] {
    padding: 12px 16px;
    max-width: 100%;
    word-wrap: break-word;
}
.message-text[data-v-0e120776] {
    margin-bottom: 4px;
}
.message-meta[data-v-0e120776] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    opacity: 0.7;
}
.message-status.read[data-v-0e120776] {
    color: #2ed573;
}
.typing-indicator[data-v-0e120776] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    color: #6c757d;
    font-size: 14px;
}
.typing-dots[data-v-0e120776] {
    display: flex;
    gap: 4px;
}
.typing-dots span[data-v-0e120776] {
    width: 6px;
    height: 6px;
    background: #6c757d;
    border-radius: 50%;
    animation: typing-0e120776 1.5s infinite;
}
.typing-dots span[data-v-0e120776]:nth-child(2) {
    animation-delay: 0.3s;
}
.typing-dots span[data-v-0e120776]:nth-child(3) {
    animation-delay: 0.6s;
}
.message-input-area[data-v-0e120776] {
    padding: 15px;
    background: white;
    border-top: 1px solid #dee2e6;
}
.message-form[data-v-0e120776] {
    display: flex;
    gap: 10px;
}
.input-wrapper[data-v-0e120776] {
    flex: 1;
    display: flex;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 8px 15px;
    border: 1px solid #dee2e6;
}
.input-wrapper input[data-v-0e120776] {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 14px;
}
.emoji-btn[data-v-0e120776],
.attach-btn[data-v-0e120776] {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    margin-left: 5px;
    transition: color 0.2s;
}
.emoji-btn[data-v-0e120776]:hover,
.attach-btn[data-v-0e120776]:hover {
    color: #667eea;
}
.send-btn[data-v-0e120776] {
    background: #667eea;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}
.send-btn[data-v-0e120776]:hover:not(:disabled) {
    background: #5a6fd8;
    transform: scale(1.05);
}
.send-btn[data-v-0e120776]:disabled {
    background: #dee2e6;
    cursor: not-allowed;
}
@keyframes pulse-0e120776 {
0%,
    100% {
        transform: scale(1);
}
50% {
        transform: scale(1.05);
}
}
@keyframes spin-0e120776 {
0% {
        transform: rotate(0deg);
}
100% {
        transform: rotate(360deg);
}
}
@keyframes typing-0e120776 {
0%,
    60%,
    100% {
        opacity: 0.3;
}
30% {
        opacity: 1;
}
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
.support-chat-widget[data-v-0e120776] {
        bottom: 10px;
        right: 10px;
}
.chat-window[data-v-0e120776] {
        width: calc(100vw - 20px);
        height: calc(100vh - 100px);
}
}
