/* 
 * ANDES CHATBOT PRO - STABLE LAYOUT 2026
 * Fix: Restoring height and cleaning input/button structure
 */

.andes-chatbot-pro { 
   position: fixed !important; 
   right: 24px !important; 
   bottom: 24px !important; 
   width: 680px !important; 
   height: 700px !important; 
   max-width: calc(100vw - 32px) !important; 
   max-height: calc(100vh - 48px) !important; 
   display: flex !important; 
   flex-direction: row !important; 
   overflow: hidden !important; 
   border-radius: 16px !important; 
   border: 1px solid rgba(60, 90, 40, 0.12) !important;
   z-index: 999999 !important; 
   background: #fff !important;
   box-shadow: 0 18px 50px rgba(51,99,34,.14), 0 0 0 1px rgba(255,255,255,.45) inset !important;
}

#andes-chatbot-pro * { box-sizing: border-box; }

/* Launcher */
.andes-chat-launcher { 
   position: fixed !important; 
   right: 28px !important; 
   bottom: 28px !important; 
   z-index: 999999 !important; 
   width: 60px !important;
   height: 60px !important; 
   padding: 0 !important; 
   border: none !important; 
   border-radius: 50% !important; 
   background: #65893b !important; 
   color: #fff !important; 
   display: none !important; 
   align-items: center !important; 
   justify-content: center !important;
   box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important; 
   cursor: pointer !important; 
   transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease !important;
} 
.andes-chat-launcher:hover {
   transform: translateY(-5px) scale(1.05) !important;
   background-color: #3e7220 !important;
   box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
}

.andes-chat-launcher svg {
   width: 26px !important;
   height: 26px !important;
   stroke: #fff !important;
}


/* Ocultar botón go to top de Porto para no competir con el chatbot */
#scroll-to-top,
.scroll-to-top,
#totop,
.porto-scroll-to-top,
.scroll-to-top-btn {
    display: none !important;
}


body.andes-chat-closed .andes-chatbot-pro { 
   display: none !important; 
} 

body.andes-chat-closed .andes-chat-launcher { 
   display: inline-flex !important; 
} 

body:not(.andes-chat-closed) .andes-chat-launcher { 
   display: none !important; 
} 

.andes-chatbot-pro.is-closed { width: auto !important; height: auto !important; min-height: 0 !important; }
.andes-chatbot-pro.is-closed .andes-chatbot-launcher { display: flex !important; }
.andes-chatbot-pro.is-closed .andes-chatbot-window { display: none !important; }

/* Main Window */
.andes-chatbot-window {
    width: 100%; height: 100%; display: flex; flex-direction: row; overflow: hidden; pointer-events: auto;
}

/* Sidebar */
.andes-chat-sidebar { 
   width: 220px !important; 
   flex: 0 0 220px !important; 
   background: #ffffff !important;
   border-right: 1px solid #edf1ea; 
   display: flex; 
   flex-direction: column; 
   padding: 16px 14px !important;
   gap: 22px !important;
}
.andes-sidebar-header { flex: 0 0 auto; }
.andes-chat-brand { font-size: 17px !important; line-height: 1.2 !important; font-weight: 700 !important; color: #245b35 !important; display: flex; align-items: center; gap: 10px; }
.andes-chat-menu { display: flex; flex-direction: column; gap: 10px; flex: 1; justify-content: flex-start; padding-top: 2px; }
.andes-menu-item {
    background: #fff !important; border: 1px solid #e3eadc !important; height: 48px !important; border-radius: 12px !important;
    padding: 0 12px !important; font-size: 14px !important; line-height: 1.2 !important; font-weight: 600 !important; color: #245b35 !important;
    cursor: pointer; display: flex; align-items: center; gap: 12px; transition: all 0.2s; text-align: left;
}
.andes-menu-item.is-active { background: #fbfdf8 !important; color: #245b35 !important; border-color: #d8dfd2 !important; }
.andes-menu-item:hover,
.andes-menu-item:focus-visible {
    background: #f0f7f1 !important;
    border-color: #245b35 !important;
    color: #245b35 !important;
}
.andes-sidebar-footer {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.andes-chat-catalog-btn {
    height: 46px !important; border-radius: 12px !important; border: 1px solid #d8dfd2 !important;
    padding: 0 14px !important; font-size: 14px !important; font-weight: 700 !important; color: #245b35 !important;
    display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 10px; text-decoration: none;
    background: #f8fbf6 !important;
}
.andes-sidebar-note { font-size: 12px; color: #98a39a; text-align: center; line-height: 1.45; margin: 0; padding: 0 6px; }

/* Main Area */
.andes-chat-main { 
   flex: 1 1 auto !important; 
   min-width: 0 !important; 
   height: 100% !important; 
   display: flex !important; 
   flex-direction: column !important; 
   overflow: hidden !important; 
   background: #f9f9ff !important;
}

.andes-chatbot-body {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    min-height: 0 !important;
}

/* Header */
.andes-chatbot-pro .andes-chat-header { 
   height: 72px !important; 
   min-height: 72px !important; 
   flex: 0 0 72px !important; 
   padding: 12px 16px !important; 
   background: #3f7a34 !important; 
   display: flex !important; 
   align-items: center !important; 
   justify-content: space-between !important; 
   overflow: hidden !important; 
   color: #fff;
}

.andes-chatbot-pro .andes-chat-header-left { 
   display: flex !important; 
   align-items: center !important; 
   gap: 12px !important; 
   min-width: 0 !important; 
   height: 48px !important; 
} 

.andes-chatbot-pro .andes-chat-avatar { 
   width: 44px !important; 
   height: 44px !important; 
   min-width: 44px !important; 
   max-width: 44px !important; 
   border-radius: 999px !important; 
   overflow: hidden !important; 
   position: relative !important; 
   flex: 0 0 44px !important; 
} 

.andes-chatbot-pro .andes-chat-avatar img, 
.andes-chatbot-pro .andes-chat-avatar svg { 
   width: 44px !important; 
   height: 44px !important; 
   display: block !important; 
   object-fit: cover !important; 
} 

.andes-chatbot-pro .andes-chat-title-wrap { 
   display: flex !important; 
   flex-direction: column !important; 
   justify-content: center !important; 
   gap: 2px !important; 
   min-width: 0 !important; 
} 

.andes-chatbot-pro .andes-chat-title { 
   font-size: 18px !important; 
   line-height: 21px !important; 
   font-weight: 800 !important; 
   color: #fff !important; 
   margin: 0 !important; 
   padding: 0 !important; 
} 

.andes-chatbot-pro .andes-chat-status { 
   font-size: 13px !important; 
   line-height: 16px !important; 
   font-weight: 500 !important; 
   color: rgba(255,255,255,.82) !important; 
   margin: 0 !important; 
   padding: 0 !important; 
} 

.andes-chatbot-pro .andes-chat-header-actions { 
   display: flex !important; 
   align-items: center !important; 
   gap: 10px !important; 
   height: 40px !important; 
} 

.andes-chatbot-pro .andes-chat-header-actions button { 
   width: 36px !important; 
   height: 36px !important; 
   min-width: 36px !important; 
   min-height: 36px !important; 
   border-radius: 999px !important; 
   border: none !important; 
   background: rgba(255,255,255,.12) !important; 
   color: #fff !important; 
   display: inline-flex !important; 
   align-items: center !important; 
   justify-content: center !important; 
   padding: 0 !important; 
} 
.andes-chatbot-pro .andes-chat-header-actions button svg,
.andes-chatbot-pro .andes-chat-header-actions button svg path {
   width: 18px !important;
   height: 18px !important;
   color: #fff !important;
   fill: #fff !important;
   stroke: #fff !important;
}

/* Messages Body */
.andes-chat-messages { 
   flex: 1 1 auto !important; 
   min-height: 0 !important; 
   overflow-y: auto !important; 
   padding: 20px 22px 16px !important;
   display: flex; 
   flex-direction: column; 
   gap: 14px;
}
.andes-msg-row { display: flex; align-items: flex-start; gap: 10px; max-width: 90%; }
.andes-msg-row-user { align-self: flex-end; flex-direction: row-reverse; }
.andes-msg-wrapper { display: flex; flex-direction: column; gap: 4px; max-width: 78%; }
.andes-msg { padding: 12px 16px; border-radius: 14px; font-size: 14px; line-height: 1.45; }
.andes-msg-bot { background: #ffffff; color: #2d3748; border: 1px solid #d8dfd2; }
.andes-msg-user { background: #d8efcf; color: #1a3a24; }
.andes-msg-time { font-size: 10px; color: #a0aec0; }

.andes-chatbot-pro .andes-chatbot-quick-wrapper {
   padding: 10px 22px 14px !important;
   background: #f9f9ff !important;
   flex: 0 0 auto !important;
   border-top: 1px solid rgba(0,0,0,0.03);
}

.andes-chatbot-pro .andes-quick-label {
   font-size: 11px !important;
   font-weight: 700 !important;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   color: #a0aec0;
   margin-bottom: 8px;
}

.andes-chatbot-pro .andes-chatbot-quick { 
   margin-top: 0 !important; 
   padding: 0 !important; 
   display: flex !important; 
   flex-wrap: wrap !important; 
   gap: 10px 12px !important;
   align-items: center !important;
   justify-content: flex-start !important;
}

.andes-quick-btn { 
   background: #ffffff; 
   border: 1px solid #d8dfd2; 
   border-radius: 20px; 
   padding: 8px 14px; 
   font-size: 13px; 
   font-weight: 600; 
   color: #4a5568; 
   cursor: pointer; 
   transition: all 0.2s;
   box-shadow: 0 2px 4px rgba(0,0,0,0.02);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   line-height: 1.2;
   min-height: 34px;
}

.andes-quick-btn:hover {
   border-color: #245b35;
   color: #245b35;
   background: #f0f7f1;
}

/* Recommender Internal Styles - Refined 2026 */
.andes-reco-container {
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #edf1ea;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    margin-bottom: 10px;
    animation: andesFadeIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes andesFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.andes-reco-title { font-size: 19px; font-weight: 800; color: #245b35; margin-bottom: 4px; }
.andes-reco-subtitle { font-size: 14px; color: #718096; margin-bottom: 25px; line-height: 1.4; }
.andes-reco-question { font-size: 16px; font-weight: 700; color: #2d3748; margin-bottom: 20px; }

.andes-reco-step-body {
    padding: 5px 0;
}

.andes-reco-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.andes-reco-card {
    background: #ffffff;
    border: 1.5px solid #edf1ea;
    border-radius: 16px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}
.andes-reco-card:hover { 
    border-color: #245b35; 
    background: #f0f7f1; 
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(36,91,53,0.08);
}
.andes-reco-card-icon { font-size: 28px; }
.andes-reco-card-label { font-size: 14px; font-weight: 700; color: #2d3748; line-height: 1.2; }

.andes-wizard-btn-choice {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid #edf1ea;
    border-radius: 14px;
    background: #fff;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: #4a5568;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.andes-wizard-btn-choice:hover {
    border-color: #245b35;
    background: #f0f7f1;
    color: #245b35;
}

.andes-reco-step-footer { 
    margin-top: 25px; 
    padding-top: 20px;
    border-top: 1px solid #edf1ea;
    display: flex; 
    justify-content: center; 
    align-items: center; 
}
.andes-reco-back { 
    background: none; 
    border: none; 
    color: #a0aec0; 
    font-size: 14px; 
    font-weight: 700; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    gap: 8px;
    transition: color 0.2s;
}
.andes-reco-back:hover { color: #245b35; }

.andes-reco-summary { 
    background: #f0f7f1; 
    border-radius: 16px; 
    padding: 24px; 
    margin-bottom: 20px; 
    border-left: 5px solid #245b35;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.01);
}
.andes-reco-summary-title { 
    font-size: 13px; 
    font-weight: 800; 
    color: #245b35; 
    text-transform: uppercase; 
    margin-bottom: 15px; 
    letter-spacing: 0.8px;
}
.andes-reco-summary-item { 
    font-size: 14px; 
    margin-bottom: 10px; 
    color: #4a5568; 
    display: flex; 
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding-bottom: 6px;
}
.andes-reco-summary-item:last-of-type { border-bottom: none; }
.andes-reco-summary-item strong { color: #2d3748; }

.andes-reco-result-box { 
    margin-top: 20px; 
    padding-top: 20px; 
    border-top: 1px dashed #cbd5e0; 
}
.andes-reco-machine-name { 
    font-size: 18px; 
    font-weight: 800; 
    color: #245b35; 
    margin-bottom: 8px; 
}
.andes-reco-machine-desc { 
    font-size: 14px; 
    color: #4a5568; 
    line-height: 1.6; 
}

.andes-reco-actions { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    margin-top: 25px; 
}
.andes-reco-btn-primary { 
    background: #245b35; 
    color: #fff; 
    border: none; 
    border-radius: 12px; 
    height: 52px; 
    font-weight: 700; 
    font-size: 15px;
    cursor: pointer; 
    transition: all 0.2s; 
    box-shadow: 0 4px 12px rgba(36,91,53,0.15);
}
.andes-reco-btn-primary:hover {
    background: #1a4327;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(36,91,53,0.2);
}
.andes-reco-btn-secondary { 
    background: #25D366; 
    color: #fff !important; 
    border: none; 
    border-radius: 12px; 
    height: 52px; 
    font-weight: 700; 
    font-size: 15px;
    cursor: pointer; 
    transition: all 0.2s; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(37,211,102,0.15);
}
.andes-reco-btn-secondary:hover {
    background: #1ebc57;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(37,211,102,0.2);
}
.andes-reco-btn-view-product {
    height: 52px;
    font-size: 15px;
    font-weight: 700;
    background: #fff;
    color: #245b35 !important;
    border: 1.5px solid #245b35;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.andes-reco-btn-view-product:hover {
    background: #f0f7f1;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.06);
}
.andes-reco-btn-text { 
    background: none; 
    border: none; 
    color: #718096; 
    font-size: 14px; 
    font-weight: 600;
    text-decoration: underline; 
    cursor: pointer; 
    margin-top: 8px; 
    transition: color 0.2s;
}
.andes-reco-btn-text:hover { color: #245b35; }

/* Hide standard chat elements when in recommender mode */
.andes-chatbot-pro.is-recommender .andes-chat-messages { display: none !important; }
.andes-chatbot-pro.is-recommender .andes-chatbot-quick-wrapper { display: none !important; }
.andes-chatbot-pro.is-recommender .andes-chat-footer { display: none !important; }
.andes-recommender-view { 
    flex: 1; 
    overflow-y: auto; 
    padding: 20px; 
    background: #f9f9ff; 
    display: flex;
    flex-direction: column;
}

/* Footer & Input Refined */
.andes-chat-footer { 
   flex: 0 0 auto !important; 
   background: #fff !important; 
   padding: 12px 20px 16px !important;
   border-top: 1px solid #edf1ea !important; 
   overflow: visible !important;
}

.andes-chat-input-row { min-height: 44px !important; height: auto !important; display: flex !important; align-items: center !important; gap: 10px !important; background: transparent !important; border: none !important; }
.andes-chat-input-shell {
    flex: 1 !important; min-width: 0 !important; height: 46px !important; display: flex !important; align-items: center !important; gap: 10px !important;
    padding: 0 14px !important; border: 1px solid #d8dfd2 !important; border-radius: 999px !important; background: #f9f9ff !important; overflow: hidden !important;
}
.andes-chat-attach { width: 28px !important; height: 28px !important; border: none !important; background: transparent !important; padding: 0 !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; color: #3f7a34; }
.andes-chat-input { flex: 1 !important; min-width: 0 !important; border: none !important; outline: none !important; box-shadow: none !important; background: transparent !important; height: 42px !important; padding: 0 !important; font-size: 15px !important; color: #1e293b; }
.andes-chat-send {
    width: 44px !important; height: 44px !important; min-width: 44px !important; border-radius: 999px !important; border: none !important;
    background: #7eaa4e !important; color: #fff !important; display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.andes-chat-send svg,
.andes-chat-send svg path {
    color: #fff !important;
    fill: #fff !important;
    stroke: #fff !important;
}

/* Actions Grid */
.andes-chat-actions { display: grid !important; grid-template-columns: 1fr !important; gap: 10px !important; margin-top: 12px !important; }
.andes-chat-whatsapp, .andes-chat-quote {
    height: 46px !important; min-height: 46px !important; max-height: 46px !important; border-radius: 12px !important;
    font-size: 15px !important; font-weight: 700 !important; line-height: 1.1 !important; display: inline-flex !important;
    align-items: center !important; justify-content: center !important; gap: 9px !important; padding: 0 14px !important;
    white-space: nowrap !important; overflow: hidden !important; text-decoration: none !important; cursor: pointer !important; transition: all 0.2s ease !important;
}
.andes-chat-whatsapp { background: #25D366 !important; border: 1px solid #25D366 !important; color: #fff !important; }
.andes-chat-quote { background: #fff !important; border: 1px solid #245b35 !important; color: #245b35 !important; }

/* Anti-Iconos Gigantes */
.andes-chatbot-pro svg { width: 18px !important; height: 18px !important; flex: 0 0 18px !important; }
.andes-chat-catalog-btn svg { width: 16px !important; height: 16px !important; flex: 0 0 16px !important; }

/* Minimize State */
.andes-chatbot-pro.is-minimized { height: 68px !important; min-height: 68px !important; width: 420px !important; }
.andes-chatbot-pro.is-minimized .andes-chatbot-body, .andes-chatbot-pro.is-minimized .andes-chat-sidebar { display: none !important; }

@media (max-width: 767px) {
    html,
    body {
        overflow-x: hidden !important;
    }

    body.andes-chat-open {
        overflow: hidden !important;
        touch-action: none;
    }

    .andes-chat-launcher {
        right: 16px !important;
        bottom: 16px !important;
        width: 56px !important;
        height: 56px !important;
        z-index: 1000001 !important;
    }

    .andes-chatbot-pro {
        left: max(12px, env(safe-area-inset-left)) !important;
        right: max(12px, env(safe-area-inset-right)) !important;
        bottom: calc(max(12px, env(safe-area-inset-bottom)) + 72px) !important;
        top: auto !important;
        width: auto !important;
        max-width: calc(100vw - 24px) !important;
        height: auto !important;
        max-height: calc(100dvh - 120px) !important;
        min-height: 520px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        border-radius: 18px !important;
        overflow: hidden !important;
        overscroll-behavior: contain !important;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 18px 42px rgba(23, 42, 29, 0.18) !important;
        z-index: 1000000 !important;
    }

    .andes-chatbot-window {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }

    .andes-chat-sidebar {
        display: none !important;
    }

    .andes-chat-main,
    .andes-chatbot-body {
        width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .andes-chat-header {
        padding: 12px 14px !important;
        min-height: 68px !important;
        flex: 0 0 68px !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 2 !important;
    }

    .andes-chat-header-left {
        gap: 10px !important;
        min-width: 0 !important;
        flex: 1 1 auto !important;
    }

    .andes-chat-title {
        font-size: 17px !important;
        line-height: 1.15 !important;
    }

    .andes-chat-status {
        font-size: 12px !important;
        line-height: 1.2 !important;
    }

    .andes-chat-header-actions {
        gap: 8px !important;
        flex: 0 0 auto !important;
    }

    .andes-chatbot-pro .andes-chatbot-min,
    .andes-chat-header-actions .andes-chatbot-min {
        display: none !important;
    }

    .andes-chatbot-close {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        background: rgba(255, 255, 255, 0.18) !important;
        border: 1px solid rgba(255, 255, 255, 0.22) !important;
    }

    .andes-chatbot-close svg {
        width: 16px !important;
        height: 16px !important;
        color: #fff !important;
        fill: #fff !important;
        stroke: #fff !important;
        stroke-width: 2.5 !important;
    }

    .andes-chat-messages,
    .andes-recommender-view {
        padding: 14px 14px 12px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior: contain !important;
        -webkit-overflow-scrolling: touch;
    }

    .andes-msg-row,
    .andes-msg-wrapper {
        max-width: 100% !important;
    }

    .andes-chatbot-quick-wrapper {
        padding: 10px 14px 14px !important;
    }

    .andes-chat-footer {
        padding: 10px 12px 12px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .andes-chat-input-row {
        height: auto !important;
        align-items: center !important;
        gap: 8px !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
        box-sizing: border-box !important;
    }

    .andes-chat-input-shell {
        min-width: 0 !important;
        height: 42px !important;
        padding: 0 10px !important;
    }

    .andes-chat-input {
        min-width: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        font-size: 14px !important;
    }

    .andes-chat-send {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
    }

    .andes-chatbot-min,
    .andes-chatbot-close,
    .andes-chat-send {
        color: #fff !important;
    }

    .andes-chatbot-min svg,
    .andes-chatbot-close svg {
        color: #fff !important;
        fill: #fff !important;
        stroke: #fff !important;
    }

    .andes-chat-send svg {
        color: #fff !important;
        fill: #fff !important;
        stroke: #fff !important;
    }

    .andes-chat-send svg path {
        fill: #fff !important;
        stroke: #fff !important;
    }

    .andes-chat-actions {
        grid-template-columns: 1fr !important;
    }

    .andes-chat-whatsapp,
    .andes-chat-quote {
        width: calc(100% - 8px) !important;
        height: auto !important;
        min-height: 46px !important;
        margin-left: 4px !important;
        margin-right: 4px !important;
        box-sizing: border-box !important;
        padding: 10px 14px !important;
        white-space: normal !important;
    }

    .andes-reco-container {
        padding: 18px 14px !important;
    }

    .andes-reco-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
}
