/* =========================
   Chat indító gomb (CTA pill)
   ========================= */
#climaxpert-chat-launcher {
    position: fixed;
    bottom: 20px;
    right: 20px;

    /* CTA-s "pill" forma – NEM kör */
    width: auto;              /* fontos */
    height: auto;             /* fontos */
    padding: 12px 16px;

    background: #2b2e5b;      /* ClimaXpert kék */
    color: #fff;
    border-radius: 50px;

    display: flex;
    align-items: center;
    gap: 10px;

    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#climaxpert-chat-launcher:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

/* Ikon + szöveg a launcherben */
#climaxpert-chat-launcher .chat-icon {
    font-size: 26px;
    line-height: 1;
}

#climaxpert-chat-launcher .chat-launcher-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

#climaxpert-chat-launcher .chat-launcher-text strong {
    font-size: 14px;
    font-weight: 600;
}

#climaxpert-chat-launcher .chat-launcher-text small {
    font-size: 11px;
    opacity: 0.85;
}

/* Mobilon: csak ikon marad */
@media (max-width: 480px) {
    #climaxpert-chat-launcher {
        padding: 12px 14px;
        border-radius: 999px;
    }
    #climaxpert-chat-launcher .chat-launcher-text {
        display: none;
    }
}

/* =========================
   Chat ablak konténer
   ========================= */
#climaxpert-chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none; /* Alapból rejtve */
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    border: 1px solid #eee;
}

/* Fejléc */
#climaxpert-chat-header {
    background-color: #2b2e5b; /* Sötétkék */
    color: white;
    padding: 15px;
    font-family: sans-serif;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Üzenet terület */
#climaxpert-chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #f8f9fa;
}

/* Üzenet buborékok */
.cm-msg {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-family: sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.cm-user {
    align-self: flex-end;
    background-color: #c66f20;
    color: white;
    border-bottom-right-radius: 2px;
}

.cm-ai {
    align-self: flex-start;
    background-color: #2b2e5b;
    color: white;
    border-bottom-left-radius: 2px;
}

/* Alsó beviteli rész */
#climaxpert-chat-input-area {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

#climaxpert-chat-input-area input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 5px;
    outline: none;
}

#climaxpert-chat-input-area button {
    background-color: #c66f20;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

/* Opcionális chat footer CTA */
.chat-footer-cta {
    font-size: 12px;
    padding: 6px 10px;
    background: #f1f3f5;
    text-align: center;
    color: #333;
}
