.chatbot-widget,
.chatbot-widget *,
.chatbot-widget *::before,
.chatbot-widget *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    /* font: inherit; */
    vertical-align: baseline;
    background: transparent;
    color: inherit;
    text-decoration: none;
    list-style: none;
    outline: none;
}
/* Chatbot widget container - completely isolated */
.chatbot-widget {
    font-family: 'Manrope' !important;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2147483647;
}
/* New Chat Button */
.chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #0d0d0e 0%, #1a1a1b 100%);
    border: 2px solid #20c997;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(32, 201, 151, 0.3), 0 0 20px rgba(32, 201, 151, 0.1);
    z-index: 2147483647;
    transition: all 0.3s ease;
    animation: chatbot-pulse 2s infinite;
    pointer-events: auto;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    color: #20c997;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    min-width: 120px;
}
.chat-btn:hover,
.chat-btn:active {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(#20c997, 0.5), 0 0 30px rgba(#20c997, 0.2);
    border-color: #20c997;
}
.chat-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
}
/* Center SVG vertically with text inside the chat button */
.chat-btn .chat-icon {
    display: block;
    align-self: center;
    margin-top: -3px; /* slight optical centering */
}
/* Force chat trigger SVG to brand green */
.chat-icon path { fill: #20c997 !important; }
.chat-btn--hidden {
    display: none !important;
}
@keyframes chatbot-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}
/* Chat Container */
.chatbot-widget__container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: min(30%, 500px); /* 30% of screen but never more than 500px */
    height: calc(100vh - 40px);
    background: #0d0d0e;
    border: 1px solid rgba(#20c997, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(#20c997, 0.1);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 2147483647;
    transition: all 0.3s ease;
    pointer-events: auto;
    max-height: calc(100vh - 40px);
}
.chatbot-widget__container--show {
    display: flex;
    animation: chatbot-slideUp 0.3s ease;
}
@keyframes chatbot-slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Chat Header */
.chatbot-widget__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #0d0d0e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
    transition: all 0.3s ease;
}
.chatbot-widget__header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #20c997 50%, transparent 100%);
}
.chatbot-widget__header-icon-img {
    height: 36px;
    width: auto;
    margin-right: 15px;
    object-fit: contain;
    flex-shrink: 0;
}
.chatbot-widget__header-info {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}
.chatbot-widget__header-text {
    min-width: 0;
    flex: 1;
}
.chatbot-widget__header-text h3 {
    margin: 0;
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.2px;
    min-width: 0;
    flex: 1;
}
.chatbot-widget__header-text p {
    font-size: 13px;
    display: flex;
    align-items: center;
    color: rgba(#20c997, 0.9);
    font-style: normal;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}
.chatbot-widget__brand-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
    vertical-align: middle;
    flex-shrink: 0;
    filter: brightness(1.2);
}
.chatbot-widget__controls {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.chatbot-widget__control-btn {
    border: none;
    color: rgba(255, 255, 255, 0.7);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    background: rgba(32, 201, 151, 0.1);
}
.chatbot-widget__control-btn:hover,
.chatbot-widget__control-btn:active {
    background: rgba(255, 255, 255, 0.2);
    color: #20c997;
    transform: scale(1.1);
}
.chatbot-widget__control-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
/* Chat Messages */
.chatbot-widget__messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    min-height: 0; /* Allow flex shrinking */
}
.chatbot-widget__messages::-webkit-scrollbar {
    width: 6px;
}
.chatbot-widget__messages::-webkit-scrollbar-track {
    background: rgba(32, 201, 151, 0.05);
    border-radius: 3px;
}
.chatbot-widget__messages::-webkit-scrollbar-thumb {
    background: rgba(32, 201, 151, 0.3);
    border-radius: 3px;
}
.chatbot-widget__messages::-webkit-scrollbar-thumb:hover {
    background: rgba(32, 201, 151, 0.5);
}
.chatbot-widget__message {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-end;
    width: 100%;
    animation: chatbot-fadeIn 0.3s ease;
}
.chatbot-widget__message--user {
    flex-direction: row-reverse; /* bubble then avatar visually */
    margin-left: auto;
}
.chatbot-widget__message--bot {
    justify-content: flex-start; /* bot on left */
    flex-direction: row;         /* avatar then bubble */
    margin-right: auto;
}
@keyframes chatbot-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.chatbot-widget__message-content {
    max-width: 80%;
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    font-weight: 400;
}
.chatbot-widget__message--user .chatbot-widget__message-content {
    background: linear-gradient(135deg, #20c997 0%, #20c997 100%);
    color: #ffffff;
    border-bottom-right-radius: 6px; /* tail on right */
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(#20c997, 0.3);
}
.chatbot-widget__message--bot .chatbot-widget__message-content {
    background: #1a1a1b;
    color: #ffffff;
    border: 1px solid rgba(#20c997, 0.2);
    border-bottom-left-radius: 6px; /* tail on left */
    box-shadow: 0 4px 12px rgba(#20c997, 0.3);
}
/* Chat message links */
.chatbot-widget .chatbot-widget__message-content a {
    color: #20c997 !important;
    text-decoration: underline;
}
.chatbot-widget .chatbot-widget__message-content a:visited,
.chatbot-widget .chatbot-widget__message-content a:active,
.chatbot-widget .chatbot-widget__message-content a:focus,
.chatbot-widget .chatbot-widget__message-content a:hover {
    color: #20c997 !important;
    text-decoration: underline;
}
/* Scoped typography inside message content (avoid global clashes) */
.chatbot-widget .chatbot-widget__message-content h1,
.chatbot-widget .chatbot-widget__message-content h2,
.chatbot-widget .chatbot-widget__message-content h3,
.chatbot-widget .chatbot-widget__message-content h4,
.chatbot-widget .chatbot-widget__message-content h5,
.chatbot-widget .chatbot-widget__message-content h6 {
    color: #ffffff !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
}
.chatbot-widget .chatbot-widget__message-content h1 { font-size: 1.5rem !important; }
.chatbot-widget .chatbot-widget__message-content h2 { font-size: 1.35rem !important; }
.chatbot-widget .chatbot-widget__message-content h3 { font-size: 1.2rem !important; }
.chatbot-widget .chatbot-widget__message-content h4 { font-size: 1.1rem !important; }
.chatbot-widget .chatbot-widget__message-content h5 { font-size: 1rem !important; }
.chatbot-widget .chatbot-widget__message-content h6 { font-size: 0.95rem !important; }

.chatbot-widget .chatbot-widget__message-content p,
.chatbot-widget .chatbot-widget__message-content span,
.chatbot-widget .chatbot-widget__message-content li {
    color: #ffffff !important;
    font-size: 13.2px !important;
    margin-bottom : 13px;
}

.chatbot-widget .chatbot-widget__message-content ul,
.chatbot-widget .chatbot-widget__message-content ol {
    padding-left: 18px !important;
    margin: 8px 0 !important;
}
.chatbot-widget .chatbot-widget__message-content ul { list-style: disc inside !important; }
.chatbot-widget .chatbot-widget__message-content ol { list-style: decimal inside !important; }

.chatbot-widget .chatbot-widget__message-content strong { font-weight: 700 !important; }
.chatbot-widget .chatbot-widget__message-content em { font-style: italic !important; }

.chatbot-widget .chatbot-widget__message-content code {
    font-family: 'Manrope' !important;
    background: rgba(32, 201, 151, 0.12) !important;
    border: 1px solid rgba(32, 201, 151, 0.3) !important;
    padding: 2px 6px !important;
    border-radius: 6px !important;
    color: #e6f9f2 !important;
}
.chatbot-widget .chatbot-widget__message-content pre {
    white-space: pre-wrap !important;
    word-wrap: break-word !important;
    background: #121213 !important;
    border: 1px solid rgba(32, 201, 151, 0.2) !important;
    border-radius: 8px !important;
    padding: 10px 12px !important;
    overflow-x: auto !important;
}

.chatbot-widget .chatbot-widget__message-content img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    display: inline-block !important;
}

.chatbot-widget .chatbot-widget__message-content hr {
    border: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, rgba(32, 201, 151, 0.3) 50%, transparent 100%) !important;
    margin: 10px 0 !important;
}
/* Typing Indicator */
.chatbot-widget__typing {
    display: none;
    justify-content: flex-start;  /* bot typing on left */
    flex-direction: row;          /* avatar then bubble */
    margin-bottom: 15px;
    padding: 0 20px;
    align-items: center;
}
.chatbot-widget__typing--show {
    display: flex;
    animation: chatbot-fadeIn 0.3s ease;
}
.chatbot-widget__typing-content {
    background: #1a1a1b;
    border: 1px solid rgba(#20c997, 0.2);
    border-radius: 20px;
    border-bottom-left-radius: 6px; /* left side bubble */
    padding: 14px 18px;
    box-shadow: 0 4px 12px rgba(#20c997, 0.3);
    margin-left: 8px;
}
.chatbot-widget__typing-dots {
    display: flex;
    gap: 4px;
}
.chatbot-widget__typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #20c997;
    animation: chatbot-typing 1.4s infinite ease-in-out;
}
.chatbot-widget__typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}
.chatbot-widget__typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes chatbot-typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}
/* Chat Input */
.chatbot-widget__input-area {
    padding: 20px;
    background: #0d0d0e;
    border-top: 1px solid rgba(32, 201, 151, 0.15);
    flex-shrink: 0;
    position: relative;
}
.chatbot-widget__input-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #20c997 50%, transparent 100%);
}

/* --- UPDATED INPUT & SCROLLBAR STYLES --- */
.chatbot-widget__input-group {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(#20c997, 0.3);
    border: 1px solid rgba(#20c997, 0.3);
    background: #1a1a1b;
}
.chatbot-widget__input {
    flex: 1 1 0;
    min-width: 0;
    resize: none;
    overflow-y: auto;
    min-height: 48px;
    max-height: 112px;
    line-height: 1.45;
    /* font-family: inherit; */
    font-family: 'Manrope' !important;
    padding: 14px 18px;
    padding-right: 48px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    white-space: pre-wrap;
    word-break: break-word;
    box-sizing: border-box;
}

/* Custom dark minimal scrollbar for input/textarea */
.chatbot-widget__input::-webkit-scrollbar {
    width: 6px;
    background: #18181b;
}
.chatbot-widget__input::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 6px;
}
.chatbot-widget__input::-webkit-scrollbar-track {
    background: #18181b;
    border-radius: 6px;
}
/* For Firefox */
.chatbot-widget__input {
    scrollbar-width: thin;
    scrollbar-color: #333 #18181b;
}

.chatbot-widget__input:focus {
    outline: none;
}
.chatbot-widget__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.chatbot-widget__send-btn {
    background: linear-gradient(135deg, #20c997 0%, #20c997 100%);
    border: none;
    color: #0d0d0e;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    font-weight: 600;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 25px;
    height: 40px;
    z-index: 2;
}
.chatbot-widget__send-btn.circular {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    right: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chatbot-widget__send-btn:hover:not(:disabled),
.chatbot-widget__send-btn:active:not(:disabled) {
    background: linear-gradient(135deg, #20c997 0%, #20c997 100%);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(#20c997, 0.4);
}
.chatbot-widget__send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}
.chatbot-widget__send-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
/* Welcome Header */
.chatbot-widget__welcome {
    background: #0d0d0e;
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(32, 201, 151, 0.15);
    flex-shrink: 0;
    position: relative;
}
.chatbot-widget__welcome::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(#20c997, 0.3) 50%, transparent 100%);
}
.chatbot-widget__welcome-header {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.2;
    letter-spacing: 0.2px;
}
.chatbot-widget__welcome-subtext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}
/* Confirmation Modal */
.chatbot-widget__modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 20px;
    backdrop-filter: blur(2px);
}
.chatbot-widget__modal-overlay--show {
    display: flex;
    animation: chatbot-modalFadeIn 0.2s ease;
}
.chatbot-widget__modal {
    background: #1a1a1b;
    border: 2px solid rgba(#20c997, 0.3);
    border-radius: 15px;
    padding: 25px;
    max-width: 280px;
    width: calc(100% - 40px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(#20c997, 0.1);
    position: relative;
}
.chatbot-widget__modal-icon {
    text-align: center;
    margin-bottom: 15px;
}
.chatbot-widget__modal-icon span {
    font-size: 32px;
    color: #20c997;
    display: inline-block;
    animation: chatbot-modalPulse 1s ease-in-out infinite;
}
.chatbot-widget__modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.3;
}
.chatbot-widget__modal-message {
    font-size: 13px;
    color: rgba(#20c997, 0.9);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}
.chatbot-widget__modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.chatbot-widget__modal-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.chatbot-widget__modal-btn--confirm {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: 1px solid #dc3545;
}
.chatbot-widget__modal-btn--confirm:hover,
.chatbot-widget__modal-btn--confirm:active {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}
.chatbot-widget__modal-btn--cancel {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(#20c997, 0.3);
}
.chatbot-widget__modal-btn--cancel:hover,
.chatbot-widget__modal-btn--cancel:active {
    background: rgba(#20c997, 0.1);
    border-color: #20c997;
    color: #20c997;
    transform: translateY(-1px);
}
@keyframes chatbot-modalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes chatbot-modalPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
/* Tablet Styles (768px and below) */
@media (max-width: 768px) {
    .chatbot-widget__container {
        width: calc(100vw - 30px);
        right: 15px;
        max-width: 400px;
    }
    .chat-btn {
        right: 20px;
        bottom: 20px;
        padding: 12px 18px;
        font-size: 13px;
    }
}
/* Mobile Styles (576px and below) */
@media (max-width: 576px) {
    .chatbot-widget__container {
        width: calc(100vw - 20px);
        height: calc(100vh - 40px);
        right: 10px;
        bottom: 10px;
        border-radius: 15px;
        max-height: calc(100vh - 40px);
    }
    .chat-btn {
        right: 15px;
        bottom: 15px;
        padding: 10px 15px;
        font-size: 12px;
        min-width: 100px;
        border-radius: 20px;
    }
    .chat-icon {
        width: 18px;
        height: 18px;
    }
    .chatbot-widget__header {
        padding: 12px 15px;
        min-height: 55px;
    }
    .chatbot-widget__header-icon-img {
        height: 28px;
        width: auto;
        margin-right: 10px;
    }
    .chatbot-widget__header-text p {
        font-size: 11px;
    }
    .chatbot-widget__brand-logo {
        width: 12px;
        height: 12px;
    }
    .chatbot-widget__controls {
        gap: 6px;
    }
    .chatbot-widget__control-btn {
        width: 28px;
        height: 28px;
    }
    .chatbot-widget__control-icon {
        width: 12px;
        height: 12px;
    }
    .chatbot-widget__welcome {
        padding: 10px 12px;
    }
    .chatbot-widget__welcome-header {
        font-size: 13px;
    }
    .chatbot-widget__welcome-subtext {
        font-size: 10px;
    }
    .chatbot-widget__messages {
        padding: 15px;
    }
    .chatbot-widget__message-content {
        max-width: 85%;
        font-size: 13px;
        padding: 10px 14px;
    }
    .chatbot-widget__input-area {
        padding: 12px 15px;
    }
    .chatbot-widget__input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 10px 14px;
        padding-right: 48px; /* Maintain change for button overlap */
    }
    .chatbot-widget__send-btn {
        padding: 10px 16px;
        height: 36px;
    }
    .chatbot-widget__send-icon {
        width: 16px;
        height: 16px;
    }
    .chatbot-widget__typing {
        padding: 0 15px;
    }
}
/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
    .chatbot-widget__container {
        width: calc(100vw - 10px);
        right: 5px;
        bottom: 5px;
        height: calc(100vh - 20px);
    }
    .chat-btn {
        right: 10px;
        bottom: 10px;
        padding: 8px 12px;
        font-size: 11px;
        min-width: 90px;
        border-radius: 18px;
    }
    .chat-icon {
        width: 16px;
        height: 16px;
    }
    .chatbot-widget__header {
        padding: 10px 12px;
    }
    .chatbot-widget__header-icon-img {
        height: 26px;
        width: auto;
        margin-right: 8px;
    }
    .chatbot-widget__header-text h3 {
        font-size: 13px;
    }
    .chatbot-widget__header-text p {
        font-size: 10px;
    }
    .chatbot-widget__messages {
        padding: 12px;
    }
    .chatbot-widget__input-area {
        padding: 10px 12px;
    }
    .chatbot-widget__send-btn {
        padding: 8px 14px;
        height: 34px;
    }
}
/* Landscape mobile adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .chatbot-widget__container {
        height: calc(100vh - 20px);
        bottom: 10px;
    }
    .chatbot-widget__header {
        padding: 8px 15px;
        min-height: 50px;
    }
    .chatbot-widget__welcome {
        padding: 8px 12px;
    }
    .chatbot-widget__messages {
        padding: 12px;
    }
    .chatbot-widget__input-area {
        padding: 8px 15px;
    }
    .chat-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
}
/* Very short landscape screens */
@media (max-height: 400px) and (orientation: landscape) {
    .chatbot-widget__header {
        padding: 6px 12px;
        min-height: 45px;
    }
    .chatbot-widget__header-text h3 {
        font-size: 13px;
    }
    .chatbot-widget__header-text p {
        font-size: 10px;
    }
    .chatbot-widget__welcome {
        padding: 6px 10px;
    }
    .chatbot-widget__messages {
        padding: 10px;
    }
    .chatbot-widget__message-content {
        font-size: 12px;
        padding: 8px 12px;
    }
    .chatbot-widget__input-area {
        padding: 6px 12px;
    }
    .chat-btn {
        padding: 6px 10px;
        font-size: 10px;
        min-width: 80px;
    }
}

/* Full-screen overlay */

/* Show state */
.chat-intro-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* Message box */
.chat-intro-content {
    background: #1a1a1b;
    color: #20c997;
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border: 2px solid rgba(#20c997,0.4);
    animation: pulseBox 1.2s ease-in-out infinite alternate;
}

@keyframes pulseBox {
    from { box-shadow: 0 0 20px rgba(#20c997,0.4); }
    to   { box-shadow: 0 0 40px rgba(#20c997,0.7); }
}
@keyframes bounceArrow {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-10px); }
}