/* ================================================
   22 Haider Salim - AI Chatbot v5 - Premium Design
   ================================================ */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;600;700;800&display=swap');

/* ---- Reset ---- */
#hs-chatbot *, #hs-chatbot *::before, #hs-chatbot *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: none;
}

:root {
    --hs-primary: #8B1A1A;
    --hs-primary-light: #A52525;
    --hs-primary-glow: rgba(139, 26, 26, 0.4);
    --hs-gold: #C9A96E;
    --hs-gold-light: #D4B87A;
    --hs-bg: #0A0A0C;
    --hs-surface: #131316;
    --hs-surface-2: #1A1A1F;
    --hs-surface-3: #222228;
    --hs-border: rgba(255,255,255,0.06);
    --hs-text: #E8E8ED;
    --hs-text-dim: #8E8E99;
    --hs-text-muted: #55555F;
    --hs-radius: 20px;
    --hs-font: 'Tajawal', -apple-system, sans-serif;
}

/* ============================================
   TRIGGER BUTTON
   ============================================ */
#hs-chatbot .hs-trigger {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--hs-primary), var(--hs-primary-light));
    color: #fff;
    border-radius: 50%;
    z-index: 99999;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--hs-primary-glow), 0 2px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: var(--hs-font);
    border: none;
}
#hs-chatbot .hs-trigger:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px var(--hs-primary-glow), 0 4px 12px rgba(0,0,0,0.4);
}
#hs-chatbot .hs-trigger:active {
    transform: scale(0.92);
}
#hs-chatbot .hs-trigger.hs-active {
    background: var(--hs-surface-2);
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
    width: 48px;
    height: 48px;
}
#hs-chatbot .hs-trigger.hs-active .hs-trigger__icon--chat { display: none; }
#hs-chatbot .hs-trigger.hs-active .hs-trigger__icon--close { display: block; }
#hs-chatbot .hs-trigger.hs-active .hs-trigger__pulse,
#hs-chatbot .hs-trigger.hs-active .hs-trigger__badge { display: none; }

/* Pulse */
#hs-chatbot .hs-trigger__pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--hs-primary);
    animation: hsPulse 2.8s ease-out infinite;
    pointer-events: none;
    background: transparent;
}
@keyframes hsPulse {
    0% { transform: scale(0.95); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Badge */
#hs-chatbot .hs-trigger__badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    background: var(--hs-gold);
    color: #1a1a1a;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border: 2px solid var(--hs-bg);
    font-family: sans-serif;
    box-shadow: 0 2px 8px rgba(201, 169, 110, 0.4);
}
#hs-chatbot .hs-trigger__badge.hs-hidden { display: none; }

/* ============================================
   CHAT WINDOW
   ============================================ */
#hs-chatbot .hs-window {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 400px;
    height: 640px;
    max-height: calc(100vh - 120px);
    background: var(--hs-bg);
    border-radius: var(--hs-radius);
    box-shadow: 0 25px 80px rgba(0,0,0,0.65), 0 0 0 1px var(--hs-border);
    flex-direction: column;
    z-index: 999999;
    overflow: hidden;
    font-family: var(--hs-font);
    direction: rtl;
    display: none;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    /* Fix: ensure flex children respect container height */
    min-height: 0;
}
#hs-chatbot .hs-window.hs-open {
    display: flex;
    animation: hsOpen 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
#hs-chatbot .hs-window.hs-closing {
    display: flex;
    animation: hsClose 0.25s ease-in forwards;
}
@keyframes hsOpen {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hsClose {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(20px) scale(0.95); }
}

/* ============================================
   HEADER
   ============================================ */
#hs-chatbot .hs-header {
    background: linear-gradient(180deg, rgba(139, 26, 26, 0.15) 0%, var(--hs-bg) 100%);
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--hs-border);
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
    z-index: 2;
}
#hs-chatbot .hs-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.25), transparent);
}
#hs-chatbot .hs-header__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
#hs-chatbot .hs-header__avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--hs-primary), var(--hs-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 2px 10px var(--hs-primary-glow);
}
#hs-chatbot .hs-header__online {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #22C55E;
    border-radius: 50%;
    border: 2.5px solid var(--hs-bg);
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}
#hs-chatbot .hs-header__name {
    font-weight: 700;
    font-size: 16px;
    color: var(--hs-text);
    letter-spacing: -0.3px;
}
#hs-chatbot .hs-header__status {
    font-size: 12px;
    color: var(--hs-text-dim);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 1px;
}
#hs-chatbot .hs-header__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22C55E;
    flex-shrink: 0;
}
#hs-chatbot .hs-header__close {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(255,255,255,0.05);
    color: var(--hs-text-dim);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.2s;
    border: none;
    outline: none;
}
#hs-chatbot .hs-header__close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--hs-text);
}
#hs-chatbot .hs-header__close:active {
    background: var(--hs-primary);
    color: #fff;
    transform: scale(0.9);
}

/* ============================================
   WELCOME SCREEN
   ============================================ */
#hs-chatbot .hs-welcome {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
#hs-chatbot .hs-welcome__content {
    text-align: center;
    max-width: 320px;
}
#hs-chatbot .hs-welcome__logo {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--hs-primary), var(--hs-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 8px 32px var(--hs-primary-glow);
    font-family: var(--hs-font);
}
#hs-chatbot .hs-welcome__title {
    font-size: 22px;
    font-weight: 800;
    color: var(--hs-text);
    margin-bottom: 8px;
}
#hs-chatbot .hs-welcome__desc {
    font-size: 14px;
    color: var(--hs-text-dim);
    line-height: 1.7;
    margin-bottom: 24px;
}
#hs-chatbot .hs-welcome__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#hs-chatbot .hs-welcome__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    background: var(--hs-surface);
    color: var(--hs-text);
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--hs-border);
    font-family: var(--hs-font);
    direction: rtl;
    text-align: right;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}
#hs-chatbot .hs-welcome__btn svg {
    flex-shrink: 0;
    color: var(--hs-gold);
}
#hs-chatbot .hs-welcome__btn:hover {
    background: var(--hs-surface-2);
    border-color: rgba(201, 169, 110, 0.2);
    transform: translateX(-2px);
}
#hs-chatbot .hs-welcome__btn:active {
    transform: scale(0.97);
    background: var(--hs-surface-3);
}

/* ============================================
   CHAT BODY
   ============================================ */
#hs-chatbot .hs-body {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--hs-bg);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--hs-surface-3) transparent;
    touch-action: pan-y;
}
#hs-chatbot .hs-body::-webkit-scrollbar { width: 3px; }
#hs-chatbot .hs-body::-webkit-scrollbar-track { background: transparent; }
#hs-chatbot .hs-body::-webkit-scrollbar-thumb { background: var(--hs-surface-3); border-radius: 3px; }

/* Date separator */
#hs-chatbot .hs-date-sep {
    text-align: center;
    padding: 12px 0 8px;
    font-size: 11px;
    color: var(--hs-text-muted);
    position: relative;
    flex-shrink: 0;
}
#hs-chatbot .hs-date-sep span {
    background: var(--hs-bg);
    padding: 0 12px;
    position: relative;
    z-index: 1;
}
#hs-chatbot .hs-date-sep::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--hs-border);
}

/* ============================================
   MESSAGES
   ============================================ */
#hs-chatbot .hs-msg {
    max-width: 82%;
    padding: 11px 15px;
    font-size: 14.5px;
    line-height: 1.75;
    word-break: break-word;
    animation: hsMsgIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: block;
    font-family: var(--hs-font);
    flex-shrink: 0;
}
@keyframes hsMsgIn {
    from { opacity: 0; transform: translateY(10px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Bot */
#hs-chatbot .hs-msg--bot {
    background: var(--hs-surface);
    color: var(--hs-text);
    border-radius: 4px 18px 18px 18px;
    align-self: flex-start;
    border: 1px solid var(--hs-border);
}

/* User */
#hs-chatbot .hs-msg--user {
    background: linear-gradient(135deg, var(--hs-primary), var(--hs-primary-light));
    color: #fff;
    border-radius: 18px 4px 18px 18px;
    align-self: flex-end;
    box-shadow: 0 2px 12px var(--hs-primary-glow);
}

/* Message time */
#hs-chatbot .hs-msg__time {
    font-size: 10px;
    color: var(--hs-text-muted);
    margin-top: 4px;
    display: block;
    opacity: 0.7;
}
#hs-chatbot .hs-msg--user .hs-msg__time {
    color: rgba(255,255,255,0.5);
    text-align: left;
}
#hs-chatbot .hs-msg--bot .hs-msg__time {
    text-align: right;
}

/* Typing */
#hs-chatbot .hs-msg--typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 14px 20px;
    min-width: 65px;
    background: var(--hs-surface);
    border-radius: 4px 18px 18px 18px;
    align-self: flex-start;
    border: 1px solid var(--hs-border);
    flex-shrink: 0;
}
#hs-chatbot .hs-msg--typing span {
    width: 7px;
    height: 7px;
    background: var(--hs-text-muted);
    border-radius: 50%;
    animation: hsDots 1.4s ease-in-out infinite;
    display: inline-block;
}
#hs-chatbot .hs-msg--typing span:nth-child(2) { animation-delay: 0.16s; }
#hs-chatbot .hs-msg--typing span:nth-child(3) { animation-delay: 0.32s; }
@keyframes hsDots {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.25; }
    30% { transform: translateY(-5px); opacity: 0.85; }
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
#hs-chatbot .hs-products {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 6px 2px 10px !important;
    margin: 4px 0 !important;
    scrollbar-width: none;
    animation: hsMsgIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100% !important;
    flex-shrink: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    align-items: stretch !important;
}
#hs-chatbot .hs-products::-webkit-scrollbar { display: none; }

#hs-chatbot .hs-pcard {
    min-width: 155px !important;
    max-width: 155px !important;
    width: 155px !important;
    background: var(--hs-surface) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    text-decoration: none !important;
    color: inherit !important;
    border: 1px solid var(--hs-border) !important;
    display: flex !important;
    flex-direction: column !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    scroll-snap-align: start;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
#hs-chatbot .hs-pcard:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 169, 110, 0.2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
#hs-chatbot .hs-pcard:active {
    transform: scale(0.96);
}

#hs-chatbot .hs-pcard__img {
    width: 100% !important;
    height: 140px !important;
    min-height: 140px !important;
    max-height: 140px !important;
    object-fit: cover !important;
    background: #0d0d0e !important;
    display: block !important;
    border-bottom: 1px solid var(--hs-border) !important;
    flex-shrink: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}
#hs-chatbot .hs-pcard__body {
    padding: 10px 12px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    flex: 1 !important;
    background: var(--hs-surface) !important;
    min-height: 80px !important;
}
#hs-chatbot .hs-pcard__brand {
    font-size: 10px !important;
    color: var(--hs-gold) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    direction: ltr !important;
    text-align: right !important;
    line-height: 1.3 !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}
#hs-chatbot .hs-pcard__name {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: var(--hs-text-dim) !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.5 !important;
    min-height: 30px !important;
    padding: 0 !important;
    margin: 0 !important;
}
#hs-chatbot .hs-pcard__price {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-top: 4px !important;
    direction: ltr !important;
    text-align: right !important;
    line-height: 1.3 !important;
    display: block !important;
    padding: 0 !important;
}
#hs-chatbot .hs-pcard__old {
    text-decoration: line-through !important;
    color: var(--hs-text-muted) !important;
    font-size: 11px !important;
    margin-left: 5px !important;
    font-weight: 400 !important;
}
#hs-chatbot .hs-pcard__stock {
    display: inline-block !important;
    font-size: 10px !important;
    padding: 3px 8px !important;
    border-radius: 8px !important;
    margin-top: 4px !important;
    font-weight: 600 !important;
    width: fit-content !important;
    line-height: 1.3 !important;
}
#hs-chatbot .hs-pcard__stock--in {
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
}
#hs-chatbot .hs-pcard__stock--out {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

/* ============================================
   FOOTER
   ============================================ */
#hs-chatbot .hs-footer {
    border-top: 1px solid var(--hs-border);
    padding: 10px 14px 14px;
    flex-shrink: 0;
    flex-grow: 0;
    background: var(--hs-bg);
    position: relative;
    z-index: 2;
}

/* Suggestions */
#hs-chatbot .hs-suggestions {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 2px 0;
}
#hs-chatbot .hs-suggestions::-webkit-scrollbar { display: none; }
#hs-chatbot .hs-suggestions:empty { display: none; margin: 0; }

#hs-chatbot .hs-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: transparent;
    color: var(--hs-gold);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid rgba(201, 169, 110, 0.2);
    font-family: var(--hs-font);
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.25s;
    flex-shrink: 0;
    text-decoration: none;
}
#hs-chatbot .hs-chip:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: rgba(201, 169, 110, 0.35);
}
#hs-chatbot .hs-chip:active {
    background: var(--hs-gold);
    color: #1a1a1a;
    border-color: var(--hs-gold);
    transform: scale(0.94);
}

/* Input */
#hs-chatbot .hs-input-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
}
#hs-chatbot .hs-input {
    flex: 1;
    min-width: 0;
    background: var(--hs-surface);
    border: 1.5px solid var(--hs-border);
    border-radius: 16px;
    padding: 12px 16px;
    color: var(--hs-text);
    font-family: var(--hs-font);
    font-size: 15px;
    outline: none;
    direction: rtl;
    -webkit-appearance: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}
#hs-chatbot .hs-input:focus {
    border-color: var(--hs-primary);
    box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.12);
}
#hs-chatbot .hs-input::placeholder {
    color: var(--hs-text-muted);
}

/* Send */
#hs-chatbot .hs-send {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--hs-primary), var(--hs-primary-light));
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 10px var(--hs-primary-glow);
    border: none;
    outline: none;
}
#hs-chatbot .hs-send:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 16px var(--hs-primary-glow);
}
#hs-chatbot .hs-send:active {
    transform: scale(0.9);
}
#hs-chatbot .hs-send.hs-disabled {
    opacity: 0.2;
    pointer-events: none;
    box-shadow: none;
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 768px) {
    #hs-chatbot .hs-trigger {
        bottom: 20px;
        right: 16px;
        width: 56px;
        height: 56px;
    }
    #hs-chatbot .hs-trigger.hs-active { display: none; }

    #hs-chatbot .hs-window {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        box-shadow: none;
    }
    #hs-chatbot .hs-window.hs-open {
        animation: hsMobOpen 0.35s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }
    #hs-chatbot .hs-window.hs-closing {
        animation: hsMobClose 0.2s ease-in forwards;
    }
    @keyframes hsMobOpen {
        from { opacity: 1; transform: translateY(100%); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes hsMobClose {
        from { opacity: 1; transform: translateY(0); }
        to { opacity: 1; transform: translateY(100%); }
    }

    #hs-chatbot .hs-header {
        padding: 14px 16px;
        padding-top: max(14px, env(safe-area-inset-top));
    }
    #hs-chatbot .hs-header__avatar {
        width: 40px;
        height: 40px;
        font-size: 13px;
        border-radius: 12px;
    }
    #hs-chatbot .hs-header__name { font-size: 15px; }
    #hs-chatbot .hs-header__close {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
    #hs-chatbot .hs-body {
        padding: 12px;
        gap: 5px;
    }
    #hs-chatbot .hs-msg {
        max-width: 88%;
        padding: 10px 14px;
        font-size: 14.5px;
    }
    #hs-chatbot .hs-products { gap: 9px; padding: 6px 4px 10px; }
    #hs-chatbot .hs-pcard {
        min-width: 145px;
        max-width: 145px;
        width: 145px;
        border-radius: 14px;
    }
    #hs-chatbot .hs-pcard__img { height: 125px; }
    #hs-chatbot .hs-pcard__body { padding: 9px 10px 11px; }
    #hs-chatbot .hs-pcard__name { font-size: 11.5px; min-height: 28px; }
    #hs-chatbot .hs-pcard__price { font-size: 13.5px; }

    #hs-chatbot .hs-footer {
        padding: 10px 12px 12px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
    #hs-chatbot .hs-chip { padding: 8px 14px; font-size: 13px; }
    #hs-chatbot .hs-input { padding: 12px 16px; font-size: 16px; }
    #hs-chatbot .hs-send { width: 44px; height: 44px; min-width: 44px; }

    #hs-chatbot .hs-welcome { padding: 20px 16px; }
    #hs-chatbot .hs-welcome__logo { width: 64px; height: 64px; font-size: 22px; border-radius: 18px; }
    #hs-chatbot .hs-welcome__title { font-size: 20px; }
    #hs-chatbot .hs-welcome__desc { font-size: 13.5px; }
}

@media (max-width: 370px) {
    #hs-chatbot .hs-pcard {
        min-width: 132px;
        max-width: 132px;
        width: 132px;
    }
    #hs-chatbot .hs-pcard__img { height: 110px; }
    #hs-chatbot .hs-chip { font-size: 12px; padding: 7px 12px; }
    #hs-chatbot .hs-msg { font-size: 14px; padding: 10px 12px; }
}
