.wc-gemini-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    justify-content: space-between;
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Arsenal', sans-serif;
}

.wc-gemini-chat-button {
    width: 60px;
    height: 60px;
    background: #193F35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(25, 63, 53, 0.3);
    border: 1px solid #193F35;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    font-weight: 700;
}

.wc-gemini-chat-button:hover {
    transform: scale(1.1);
    background: #152f27;
}

.wc-gemini-welcome-message {
    color: #193f36;
    font-weight: bold;
    margin: 0 0 5px 0;
	background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    white-space: nowrap;
}

#wc-gemini-chat {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    max-height: 80vh;
    background: white;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    z-index: 10001;
    border: 1px solid #193F35;
    overflow: auto;
}

#wc-gemini-chat.active {
    display: flex;
}

.wcgc-header {
    background: #193F35;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-family: 'Arsenal', sans-serif;
}

.wcgc-header h3 {
    margin: 0;
    color: white;
    font-size: 16px;
}

.wcgc-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcgc-messages {
    flex: 1;
    min-height: 0;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f8f9fa;
}

.wcgc-msg {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 0;
    line-height: 1.4;
    font-size: 14px;
    word-wrap: break-word;
    border: 1px solid transparent;
}

.wcgc-msg.bot {
    background: white;
    align-self: flex-start;
    border-color: #e0e0e0;
    color: #193F35;
}

.wcgc-msg.user {
    background: #193F35;
    color: white;
    align-self: flex-end;
    border-color: #193F35;
}

.wcgc-controls {
    display: flex;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid #193F35;
    background: white;
}

#wcgc-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #193F35;
    outline: none;
    font-size: 14px;
}

#wcgc-send {
    padding: 10px 15px;
    border: 1px solid #193F35;
    background: white;
    cursor: pointer;
    font-weight: 700;
}

#wcgc-send:hover {
    background: #193F35;
    color: white;
}

@media (max-width: 480px) {
    #wc-gemini-chat {
        width: calc(100vw - 40px);
        height: 60vh;
        right: 20px;
        bottom: 80px;
    }

    .wc-gemini-chat-widget {
        right: 15px;
        bottom: 15px;
    }

    .wcgc-msg {
        max-width: 90%;
    }
}

.wcgc-contact-form {
    display: none;
    gap: 10px;
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    border-top: 1px solid #193F35;
    flex-direction: column !important;
}

.wcgc-contact-form[style*="display: block"] {
    display: flex !important;
}

.wcgc-contact-form input {
    border: 2px solid #193F35;
    padding: 5px;
}

.wcgc-contact-form button {
    background-color: #193F35;
    color: white;
    padding: 10px;
    font-weight: bold;
}