/* ==================================================
   FONT – MONTSERRAT
================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

#businessxbot-root {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    font-family: 'Montserrat', sans-serif;
}

/* ==================================================
   CTA – POPTÁVKA + OSMÍK
================================================== */

#businessxbot-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

#businessxbot-label {
    background: #000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    border: 1px solid #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

#businessxbot-button {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #A26541;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    transition: 0.25s ease;
}

#businessxbot-button:hover {
    transform: scale(1.05);
}

#businessxbot-button .bx_label {
    color: #fff;
    font-weight: 600;
    font-size: 14px;     /* o bod větší */
    letter-spacing: 0.5px;
}

/* ==================================================
   CHAT PANEL
================================================== */

#businessxbot-panel {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 350px;
    height: 520px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: 0.3s ease;
}

#businessxbot-panel[aria-hidden="true"] {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

/* ==================================================
   HEADER
================================================== */

.bx_header {
    background: #A26541;
    color: #fff;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bx_title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* Vycentrovaný křížek */

#bx_close {
    background: rgba(0,0,0,0.25);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    transition: 0.2s ease;
}

#bx_close:hover {
    background: rgba(0,0,0,0.4);
}

/* ==================================================
   MESSAGES
================================================== */

.bx_messages {
    flex: 1;
    padding: 18px;
    overflow-y: auto;
    background: #f4f4f4;
}

.bx_msg {
    margin-bottom: 12px;
    padding: 12px 15px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 85%;
}

.bx_msg.bot {
    background: #e7e7e7;
    color: #000;
}

.bx_msg.user {
    background: #000;
    color: #fff;
    margin-left: auto;
}

/* ==================================================
   TLAČÍTKA SLUŽEB
================================================== */

.bx_services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.bx_service {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-color: #A26541 !important;
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 8px 15px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; !important;
    font-weight: 600;
    letter-spacing: 0px;    
    text-align: left;
    transition: .25s ease;
}

.bx_service:hover {
    background-color: #2E2E2E !important;
    color: #fff;
}

.bx_service:active {
    transform: scale(.98);
}

/* ==================================================
   INPUT AREA
================================================== */

.bx_input {
    padding: 14px;
    display: flex;
    gap: 10px;
    background: #fff;
    border-top: 1px solid #eee;
}

.bx_input input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #CCCCCC;
    font-size: 14px !important;   /* o bod menší */
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.bx_input input::placeholder {
    font-size: 14px;      /* lehce větší */
    font-weight: 500;     /* jemně výraznější */
    color: #555;          /* tmavší šedá */
}

/* TLAČÍTKO */

#bx_send {
    background: #A26541;
    color: #fff;
    border: none;
    padding: 0 22px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: 0.25s ease;
}

#bx_send:hover {
    background: #000;
}

/* ==================================================
   SCROLLBAR
================================================== */

.bx_messages::-webkit-scrollbar {
    width: 6px;
}

.bx_messages::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* ==================================================
   MOBIL
================================================== */

@media (max-width:480px){

    #businessxbot-root{
        right:15px;
        bottom:15px;
    }

    #businessxbot-panel{
        width:calc(100vw - 30px);
        height:70vh;
        right:0;
    }

    .bx_service{
        width:100%;
    }

}

#businessxbot-panel .bx_services .bx_service{
    font-size:13px !important;
    font-family:'Montserrat',sans-serif !important;
    font-weight:600 !important;
    letter-spacing:0 !important;
    padding:8px 14px !important;
    line-height:1.2 !important;
}