/* ── Scoped reset: neutralise theme/page-builder overrides ── */
/* :where() keeps specificity at (0,0,0) so widget rules always win */
:where(.hlc-chatbot-container) *,
:where(.hlc-chatbot-container) *::before,
:where(.hlc-chatbot-container) *::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

:where(.hlc-chatbot-container) button {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    line-height: 1;
}

:where(.hlc-chatbot-container) input,
:where(.hlc-chatbot-container) textarea {
    all: unset;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    display: block;
    width: 100%;
}

:where(.hlc-chatbot-container) img {
    max-width: 100%;
    height: auto;
    display: block;
    border: none;
    outline: none;
    box-shadow: none;
}

:where(.hlc-chatbot-container) a {
    color: inherit;
    text-decoration: none;
}

:where(.hlc-chatbot-container) ul,
:where(.hlc-chatbot-container) ol,
:where(.hlc-chatbot-container) li {
    list-style: none;
    margin: 0;
    padding: 0;
}

:where(.hlc-chatbot-container) p {
    margin: 0;
    padding: 0;
}

/* ─────────────────────────────────────────────────────────── */

.hlc-chatbot-container {
    --hlc-header-bg: #7dbc2a;
    --hlc-header-text: #ffffff;
    --hlc-chat-bg: #f5f5f5;
    --hlc-bot-bg: #ececec;
    --hlc-bot-text: #111827;
    --hlc-user-bg: #2563eb;
    --hlc-user-text: #ffffff;
    --hlc-input-border: #8dc83f;
    --hlc-button-bg: #7dbc2a;
    --hlc-bubble-bg: #7dbc2a;
    --hlc-close-btn: #EF4444;
    --hlc-min-btn: #F59E0B;
    --hlc-widget-padding: 10px;
    --hlc-message-padding: 10px;
    /* !important on structural props so Elementor/theme global rules cannot override */
    position: fixed !important;
    right: var(--hlc-pos-right, 16px) !important;
    bottom: var(--hlc-pos-bottom, 16px) !important;
    left: var(--hlc-pos-left, auto) !important;
    top: var(--hlc-pos-top, auto) !important;
    z-index: 999999 !important;
    font-family: Arial, sans-serif !important;
    direction: rtl !important;
}

.hlc-chat-input-error{
    color:red;
}

.hlc-chatbot-widget {
    position: relative;
    width: 390px;
    border: 1px solid var(--hlc-header-bg);
    border-radius: 4px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.hlc-launcher-btn {
    background: var(--hlc-bubble-bg) !important;
    border: 0 !important;
    color: #fff !important;
    height: 52px !important;
    padding: 0 20px 0 16px !important;
    gap: 8px !important;
    border-radius: 999px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    direction: ltr !important;
    position: relative !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.22), 0 8px 28px rgba(0,0,0,0.14);
    transition: transform 300ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 300ms ease;
}

.hlc-launcher-btn svg {
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.28));
}

.hlc-launcher-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hlc-launcher-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.7);
    box-shadow: 0 2px 6px rgba(0,0,0,0.22);
}

.hlc-launcher-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
    animation: hlcLivePulse 2s ease-out infinite;
}

.hlc-launcher-label {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
}

.hlc-launcher-label:empty {
    display: none;
}

.hlc-launcher-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: hlcPulse 2.4s ease-out infinite;
    background: var(--hlc-bubble-bg);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

@keyframes hlcPulse {
    0%   { transform: scale(1);    opacity: 0.55; }
    70%  { transform: scale(1.7);  opacity: 0; }
    100% { transform: scale(1.7);  opacity: 0; }
}

.hlc-minimized .hlc-chatbot-widget {
    display: none;
}

.hlc-minimized .hlc-launcher-btn {
    display: inline-flex;
}

.hlc-chatbot-container:not(.hlc-minimized) .hlc-launcher-btn {
    display: none;
}

.hlc-chat-header {
    background: var(--hlc-header-bg);
    color: var(--hlc-header-text);
    padding: 14px 16px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.hlc-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.hlc-header-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hlc-chat-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.hlc-chat-tagline {
    font-size: 13px;
    opacity: 0.9;
}

.hlc-header-avatar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hlc-avatar-frame {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #ffffff;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    position: relative;
}

.hlc-live-dot {
    display: none;
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
    animation: hlcLivePulse 2s ease-out infinite;
}

.hlc-chatbot-container:not(.hlc-minimized) .hlc-live-dot {
    display: block;
}

@keyframes hlcLivePulse {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
    70%  { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hlc-avatar-frame img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.hlc-agent-name {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.hlc-header-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.hlc-header-btn {
    border: none !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 12px !important;
    height: 30px !important;
    min-width: 36px !important;
    transition: opacity 150ms ease, transform 100ms ease;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -1px 0 rgba(0, 0, 0, 0.18),
        0 2px 6px rgba(0, 0, 0, 0.18);
}

.hlc-header-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.hlc-header-btn:active {
    transform: translateY(0);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.14);
}

#hlc-min-btn,
.hlc-min-preview {
    background: var(--hlc-min-btn, #F59E0B) !important;
}

#hlc-close-btn,
.hlc-close-preview {
    background: var(--hlc-close-btn, #EF4444) !important;
}

.hlc-header-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 18px 12px;
    background: var(--hlc-chat-bg);
    min-height: 20px;
}

.hlc-header-brand:not(:has(img[src])) {
    display: none;
}

#hlc-org-logo,
.hlc-header-brand img {
    max-width: 180px;
    max-height: 50px;
    object-fit: contain;
    background: transparent;
}

.hlc-msg-agent-label {
    color: var(--hlc-header-bg);
    font-size: 11px;
    margin-bottom: 4px;
    text-align: right;
}

.hlc-msg-content {
    white-space: pre-wrap;
}

.hlc-connecting-line {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.18);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    margin-top: 6px;
    display: inline-flex;
    width: fit-content;
}

.hlc-chat-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    background: var(--hlc-chat-bg);
    position: relative;
    padding-bottom: 56px;
}

.hlc-accessibility-toggle {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: #2563EB;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow:
        0 4px 10px rgba(37, 99, 235, 0.45),
        0 2px 4px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.hlc-accessibility-toggle:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 16px rgba(37, 99, 235, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hlc-accessibility-toggle span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hlc-chat-input-row {
    padding: var(--hlc-widget-padding);
    background: transparent;
    padding-right: 60px;
}

.hlc-accessibility-panel {
    display: grid;
    gap: 8px;
}

.hlc-accessibility-panel[hidden] {
    display: none;
}

.hlc-accessibility-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    color: #111827;
    text-align: left;
}

.hlc-accessibility-option-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    font-size: 14px;
}

.hlc-accessibility-option-label {
    font-size: 14px;
    font-weight: 600;
}

.hlc-accessibility-larger-text .hlc-msg,
.hlc-accessibility-larger-text .hlc-chat-input-row input,
.hlc-accessibility-larger-text .hlc-chat-input-row textarea,
.hlc-accessibility-larger-text .hlc-accessibility-option-label,
.hlc-accessibility-larger-text .hlc-chat-title,
.hlc-accessibility-larger-text .hlc-chat-tagline {
    font-size: 16px !important;
}

.hlc-accessibility-high-contrast .hlc-chat-header {
    background: #111827;
}

.hlc-accessibility-high-contrast .hlc-msg-bot {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

.hlc-accessibility-high-contrast .hlc-msg-user {
    background: #ffffff;
    color: #000000;
}

.hlc-accessibility-high-contrast .hlc-chat-input-row,
.hlc-accessibility-high-contrast .hlc-chat-footer,
.hlc-accessibility-high-contrast .hlc-chat-messages {
    background: #000000;
    color: #ffffff;
}

.hlc-accessibility-screen-reader .hlc-msg-agent-label::before {
    content: "נציג: ";
}

.hlc-chat-messages {
    height: 285px;
    overflow-y: auto;
    padding: 10px;
    background: var(--hlc-chat-bg);
    scrollbar-width: thin;
    scrollbar-color: #8fb6ff #e8eefc;
}

.hlc-chat-messages::-webkit-scrollbar {
    width: 9px;
}

.hlc-chat-messages::-webkit-scrollbar-track {
    background: #e8eefc;
    border-radius: 999px;
}

.hlc-chat-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7aa6ff 0%, #5b8af8 100%);
    border-radius: 999px;
    border: 2px solid #e8eefc;
}

.hlc-msg {
    max-width: 85%;
    margin-bottom: 10px;
    padding: var(--hlc-message-padding) calc(var(--hlc-message-padding) + 2px);
    border-radius: 13px;
    font-size: 14px;
    line-height: 1.4;
}

.hlc-msg-bot {
    background: #ffffff;
    border: none;
    color: var(--hlc-bot-text);
    margin-left: auto;
    text-align: right;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hlc-msg-user {
    background: var(--hlc-user-bg);
    color: var(--hlc-user-text);
    margin-right: auto;
    text-align: right;
}

.hlc-msg-bot-meta {
    background: transparent;
    color: #64748b;
    font-size: 12px;
    padding-left: 2px;
}

.hlc-msg-user-label,
.hlc-msg-agent-label {
    font-size: 11px;
    color: var(--hlc-header-bg);
    margin-bottom: 4px;
    text-align: right;
}

.hlc-chat-input-row {
    padding: var(--hlc-widget-padding);
    background: transparent;
}

.hlc-inline-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.hlc-inline-form input {
    color: #111827 !important;
    flex: 1 !important;
    padding: 10px 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    background: #f5f6f7 !important;
    outline: none !important;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.hlc-inline-form input:focus {
    border-color: var(--hlc-input-border) !important;
    box-shadow: 0 0 0 3px rgba(125, 188, 42, 0.12) !important;
    background: #ffffff !important;
}

.hlc-inline-form input::placeholder {
    color: #ababab!important;
    opacity: 1;
}

.hlc-inline-form button,
.hlc-contact-form button {
    border: 0 !important;
    border-radius: 999px !important;
    padding: 10px 20px !important;
    background: var(--hlc-button-bg) !important;
    color: #ffffff !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.hlc-contact-form {
    display: grid;
    gap: 8px;
}

.hlc-contact-form input,
.hlc-contact-form textarea {
    width: 100%;
    padding: 9px 10px;
    border: 1px solid #b6d98a;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.hlc-contact-form textarea {
    min-height: 70px;
    resize: vertical;
}

.hlc-contact-form input::placeholder,
.hlc-contact-form textarea::placeholder {
    color: #ababab!important;
    opacity: 1;
}
.hlc-inline-form input::placeholder,
.hlc-inline-form textarea::placeholder {
    color: #ababab!important;
    opacity: 1;
}
.hlc-status {
    color: #475569;
    font-size: 13px;
}

.hlc-field-error {
    color: #b91c1c;
    font-size: 12px;
    margin-top: 6px;
    text-align: right;
}

.hlc-success-popup {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 12px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #86efac;
    background: linear-gradient(135deg, #ecfdf3 0%, #d1fae5 100%);
    animation: hlcPopupIn 420ms ease-out both;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.2);
}

.hlc-success-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    animation: hlcIconPop 520ms ease-out both;
}

.hlc-success-icon {
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
}

.hlc-success-content {
    color: #14532d;
}

.hlc-success-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.hlc-success-message {
    font-size: 13px;
    line-height: 1.35;
}

.hlc-success-sparkle {
    position: absolute;
    top: 6px;
    left: 8px;
    font-size: 14px;
    opacity: 0;
    animation: hlcSparkle 1200ms ease-out 150ms;
}

@keyframes hlcPopupIn {
    0% {
        transform: translateY(10px) scale(0.96);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.hlc-yesno-row {
    display: flex;
    gap: 10px;
    margin: 8px 0 4px;
    justify-content: flex-start;
}

.hlc-yesno-btn {
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.12s;
}

.hlc-yesno-btn:hover {
    opacity: 0.85;
    transform: scale(1.04);
}

.hlc-yesno-yes {
    background: var(--hlc-button-bg, #7dbc2a);
    color: var(--hlc-header-text, #fff);
}

.hlc-yesno-no {
    background: #e5e7eb;
    color: #374151;
}

@keyframes hlcIconPop {
    0% {
        transform: scale(0.35) rotate(-20deg);
    }
    70% {
        transform: scale(1.14) rotate(4deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes hlcSparkle {
    0% {
        transform: translateY(6px) scale(0.3);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translateY(-12px) scale(1.1);
        opacity: 0;
    }
}

/* ============================================================
   GLASS 3D EFFECT
   ============================================================ */

/* Widget — deep layered shadow + top-edge highlight */
.hlc-chatbot-widget {
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.10),
        0 20px 48px rgba(0, 0, 0, 0.14),
        0 40px 80px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
    transform: translateZ(0);
    will-change: transform;
}

/* Header — glass shine overlay */
.hlc-chat-header {
    position: relative;
    overflow: visible;
    border-top-left-radius: 19px !important;
    border-top-right-radius: 19px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.hlc-chat-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        155deg,
        rgba(255, 255, 255, 0.22) 0%,
        rgba(255, 255, 255, 0.06) 45%,
        rgba(0, 0, 0, 0.06) 100%
    );
    pointer-events: none;
    z-index: 1;
    border-top-left-radius: 19px;
    border-top-right-radius: 19px;
}

/* Avatar — glass ring + deep shadow */
.hlc-avatar-frame {
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.20),
        0 0 0 2px rgba(255, 255, 255, 0.75),
        inset 0 1px 0 rgba(255, 255, 255, 1) !important;
    background: rgba(255, 255, 255, 0.95) !important;
}

/* Connecting line — frosted glass pill */
.hlc-connecting-line {
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Bot bubble — clean white card */
.hlc-msg-bot {
    background: #ffffff !important;
    border: none !important;
    border-radius: 16px !important;
    box-shadow:
        0 1px 4px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.08);
}

/* User bubble — glass with top shine */
.hlc-msg-user {
    border: 1px solid rgba(255, 255, 255, 0.20) !important;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    position: relative;
    overflow: hidden;
}

.hlc-msg-user::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    border-radius: inherit;
}

/* Footer */
.hlc-chat-footer {
    background: var(--hlc-chat-bg) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.07) !important;
}

/* Input — frosted glass pill */
.hlc-inline-form input {
     color: #111827 !important;
    background: rgba(245, 246, 247, 0.95) !important;
    border: 1px solid rgba(0, 0, 0, 0.09) !important;
    border-radius: 999px !important;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.hlc-inline-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 1) !important;
    border-color: var(--hlc-input-border) !important;
    box-shadow:
        inset 0 1px 3px rgba(0, 0, 0, 0.04),
        0 0 0 3px rgba(125, 188, 42, 0.12);
}

/* Send button — pill */
.hlc-inline-form button {
    border-radius: 999px !important;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.12) !important;
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.hlc-inline-form button:hover {
    transform: translateY(-1px);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.12) !important;
}

/* Launcher — modern FAB */
.hlc-launcher-btn {
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.22),
        0 8px 28px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        inset 0 -2px 0 rgba(0, 0, 0, 0.14) !important;
    overflow: visible !important;
}

.hlc-launcher-btn:hover {
    transform: scale(1.12) translateY(-3px) !important;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.26),
        0 16px 44px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        inset 0 -2px 0 rgba(0, 0, 0, 0.14) !important;
}

.hlc-launcher-btn:active {
    transform: scale(0.96) !important;
    transition-duration: 120ms !important;
}

@media (max-width: 480px) {
    .hlc-chatbot-container {
        right: 8px;
        left: 8px;
        bottom: 8px;
    }

    .hlc-chatbot-widget {
        width: 100%;
    }
}
