/* Support Widget Premium Styles */

.support-widget-container {
    position: fixed;
    bottom: 30px;
    z-index: 9999;
}

.support-toggle-btn {
    display: none;
}

.support-chat-window {
    display: none;
    position: absolute;
    bottom: 80px;
    width: 350px;
    max-width: calc(100vw - 40px);
    height: 450px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #e2e8f0;
}

.support-chat-header {
    background: #0f172a;
    color: #fff;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-chat-title {
    margin: 0;
    font-size: 1rem;
}

.support-chat-close {
    cursor: pointer;
    opacity: 0.7;
}

.support-chat-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: #f8fafc;
}

.support-msg-bubble {
    background: #e2e8f0;
    padding: 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    max-width: 85%;
}

.support-guest-prompt {
    text-align: center;
    padding: 2rem;
    color: #64748b;
}

.support-guest-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-login-btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 10px;
    background-color: var(--accent);
}

.support-chat-footer {
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
}

.support-reply-form {
    display: flex;
    gap: 0.5rem;
}

.support-msg-input {
    flex-grow: 1;
    border: 1px solid #cbd5e1;
    padding: 0.6rem;
    border-radius: 8px;
    outline: none;
    font-size: 0.9rem;
}

.support-send-btn {
    background: var(--accent);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}
