 .tiblock {
     align-items: center;
     display: flex;
     height: 17px;
 }

 .ticontainer .tidot {
     background-color: #64748b;
 }

 .tidot {
     -webkit-animation: mercuryTypingAnimation 1.5s infinite ease-in-out;
     border-radius: 2px;
     display: inline-block;
     height: 8px;
     margin-right: 8px;
     width: 8px;
 }

 @-webkit-keyframes mercuryTypingAnimation {
     0% {
         -webkit-transform: translateY(0px)
     }

     28% {
         -webkit-transform: translateY(-5px)
     }

     44% {
         -webkit-transform: translateY(0px)
     }
 }

 .tidot:nth-child(1) {
     -webkit-animation-delay: 200ms;
 }

 .tidot:nth-child(2) {
     -webkit-animation-delay: 300ms;
 }

 .tidot:nth-child(3) {
     -webkit-animation-delay: 400ms;
 }



 /* Contacts row (WhatsApp-like horizontal list) */
 .contacts-row {
     display: flex;
     gap: 12px;
     align-items: center;
     padding: 12px 6px;
     overflow-x: auto;
     margin: 14px 0;
     -webkit-overflow-scrolling: touch;
 }

 .contact-item {
     min-width: 82px;
     max-width: 110px;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     cursor: pointer;
     padding: 6px;
     border-radius: 10px;
     transition: transform .12s ease, box-shadow .12s ease;
     background: transparent;
 }

 .contact-item:focus,
 .contact-item:hover {
     transform: translateY(-4px);
     box-shadow: 0 8px 18px rgba(2, 6, 23, 0.08);
     background: rgba(0, 0, 0, 0.03);
     outline: none;
 }

 .contact-avatar {
     width: 56px;
     height: 56px;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid rgba(255, 255, 255, 0.9);
     box-shadow: 0 6px 14px rgba(2, 6, 23, 0.06);
     margin-bottom: 6px;
 }

 .contact-name {
     font-size: 13px;
     font-weight: 700;
     color: var(--text);
     line-height: 1.1;
 }

 .contact-sub {
     font-size: 11px;
     color: #6b6f76;
     opacity: 0.9;
 }

 /* Make input bar stretch full width and textarea use remaining space */
 .chatinput-bar {
     width: 100%;
     display: flex;
     gap: 8px;
     align-items: center;
     padding: 12px;
     box-sizing: border-box;
 }

 .chat-input {
     flex: 1 1 auto;
     width: 100%;
     min-height: 46px;
     max-height: 300px;
     resize: none;
 }

 /* ensure send button doesn't constrain layout */
 .btnsubmit {
     flex: 0 0 auto;
     height: 46px;
     width: 46px;
     padding: 6px;
     border-radius: 50%;
 }

 /* ensure chat card content accounts for contacts height on small screens */
 @media (max-width: 720px) {
     .contacts-row {
         gap: 10px;
         margin: 10px 0;
         padding: 8px 4px;
     }

     .contact-avatar {
         width: 48px;
         height: 48px;
     }

     .chat-input {
         min-height: 42px;
     }
 }

 /* Chat layout: center column like GPT, compact like WhatsApp */
 .chat-layout {
     display: flex;
     justify-content: center;
     padding: 20px;
 }

 /* central chat card */
 .container-box.wrap {
     max-width: 980px;
 }

 /* Narrower, centered chat card */
 .chatboxcontent {
     border-radius: 0, 0, 12px, 12px;
     background: #ffffff;
     box-shadow: 0 10px 40px rgba(2, 6, 23, 0.12);
     overflow: hidden;
 }


 /* Avatar */
 .profa .image img,
 .usera .image img {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     object-fit: cover;
     align-self: start;
 }

 /* Assistant bubble: left, slate grey */
 .profa .left {
     background: linear-gradient(135deg, #475569, #334155);
     color: #fff;
     padding: 12px 14px;
     border-radius: 14px;
     position: relative;
     max-width: 78%;
     box-shadow: 0 6px 18px rgba(51, 65, 85, 0.25);
 }

 /* assistant tail */
 .profa .left::after {
     content: "";
     position: absolute;
     left: -8px;
     top: 12px;
     width: 0;
     height: 0;
     border-top: 8px solid transparent;
     border-right: 8px solid #334155;
     border-bottom: 8px solid transparent;
 }

 /* User bubble: right, light grey */
 .usera .right {
     background: #f1f5f9;
     color: #1e293b;
     padding: 10px 14px;
     border-radius: 14px;
     position: relative;
     max-width: 78%;
     justify-self: end;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
 }

 /* user tail */
 .usera .right::after {
     content: "";
     position: absolute;
     right: -8px;
     top: 12px;
     width: 0;
     height: 0;
     border-top: 8px solid transparent;
     border-left: 8px solid #f1f5f9;
     border-bottom: 8px solid transparent;
 }

 /* Metadata: timestamp style */
 .msg-meta {
     margin-top: 6px;
     font-size: 11px;
     opacity: 0.75;
     display: flex;
     justify-content: flex-end;
 }

 /* Input bar: sticky, WhatsApp-like */
 .chatinput-bar {
     display: flex;
     gap: 8px;
     align-items: center;
     padding: 12px;
     border-top: 1px solid rgba(0, 0, 0, 0.06);
     background: #fff;
     position: sticky;
     bottom: 0;
 }

 /* small icon buttons */
 .icon-btn {
     background: transparent;
     border: none;
     font-size: 20px;
     color: #333;
     padding: 6px;
     cursor: pointer;
 }

/* =========================
   Global navbar styling
   ========================= */

.vc-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
}

.vc-navbar {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.vc-navbar-logo {
    height: 72px;
    max-width: 220px;
    object-fit: contain;
}

.vc-nav-link {
    font-weight: 500;
    font-size: 0.96rem;
    letter-spacing: 0.01em;
    color: #0f172a;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    transition: color 0.2s ease, transform 0.15s ease;
}

.vc-nav-link:hover,
.vc-nav-link:focus {
    color: #1d4ed8;
    transform: translateY(-1px);
}

.vc-nav-link.active {
    color: #1d4ed8;
}

.vc-nav-dropdown {
    border-radius: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

.vc-nav-dropdown .dropdown-item {
    font-size: 0.93rem;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
}

.vc-nav-dropdown .dropdown-item:hover {
    background-color: #eff6ff;
}

/* Navbar on mobile */
@media (max-width: 991.98px) {
    .vc-navbar {
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

    .vc-navbar-logo {
        height: 60px;
    }

    .navbar-nav {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .vc-nav-link {
        padding-top: 0.4rem !important;
        padding-bottom: 0.4rem !important;
    }
}

 /* chat textarea */
 .chat-input {
     flex: 1;
     min-height: 44px;
     max-height: 300px;
     resize: none;
     border-radius: 20px;
     border: 1px solid rgba(0, 0, 0, 0.06);
     padding: 10px 14px;
     font-size: 15px;
     line-height: 1.3;
 }

 /* Send button aligned right */
 .btnsubmit {
     height: 44px;
     width: 48px;
     padding: 6px;
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, #475569, #334155);
     border: none;
     box-shadow: 0 8px 20px rgba(51, 65, 85, 0.25);
 }

 /* Responsive */
 @media (max-width: 720px) {
     .container-box.wrap {
         max-width: 94%;
     }

     .scrollable {
         height: 64vh;
         padding: 12px;
     }

     .profa .image img,
     .usera .image img {
         width: 36px;
         height: 36px;
     }
 }

 .chat-section-top {
     background: linear-gradient(135deg, #475569, #334155);
     color: white;
     padding: 15px;
     border-radius: 10px 10px 0 0;

 }

 .name-Header {
     display: inline-block;
     width: auto;

 }

 .intro-img {
     position: relative;
     max-width: 6%;
     display: inline-block;
     border-radius: 100%;
     margin-right: 10px;
 }

 .dropbtn {
     background: linear-gradient(135deg, #475569, #334155);
     font-size: 30px;
     border: none;
     cursor: pointer;
     color: white;
 }

 .dropdown {
     position: relative;
     display: inline-block;
 }

 .dropdown-content {
     display: none;
     position: absolute;
     right: 0;
     background-color: #f9f9f9;
     min-width: 160px;
     box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
     z-index: 1000000000;
     border-radius: 15px;

 }

 .dropdown-content a {
     color: black;
     padding: 12px 16px;
     text-decoration: none;
     display: block;
 }

 .dropdown-content a:hover {
     background-color: #f1f1f1;
 }

 .dropdown:hover .dropdown-content {
     display: block;
 }

 .dropdown:hover .dropbtn {
     background-color: #334155;
 }








 #slick .slick-arrow {
     z-index: 1000;
     margin-top: auto;
     margin-bottom: auto;
 }

 #slick .slick-arrow::before {
     color: rgb(0, 0, 0);
     cursor: pointer;
     font-size: 30px;
     margin-top: auto;
     margin-bottom: auto;
 }

 #slick .slick-prev {
     left: 0;
     margin-top: auto;
     margin-bottom: auto;
     margin-left: auto;
     margin-right: auto;

 }

 #slick .slick-next {
     right: 0;
     margin-top: auto;
     margin-bottom: auto;
     margin-left: auto;
     margin-right: 10px;
     text-align: right;

 }


 #slick .slick-prev::before {
     content: "<svg xmlns=" http: //www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-left-circle" viewBox="0 0 16 16">
         <path fill-rule="evenodd" d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-4.5-.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5z" /> </svg>";

         /*   font-weigth: bold; */
         background: #333;
     border-radius: 100%;

 }

 #slick .slick-next::before {
     content: "<svg xmlns=" http: //www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-right-circle-fill" viewBox="0 0 16 16">
         <path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5z" /> </svg>";

         /*   font-weigth: bold; */
         background: #333;
     border-radius: 100%;
 }



 .suggestion-item {
     display: inline-block;
     margin-right: auto;
     margin-left: auto;

     background-color: #ffffff;

 }

 .chat-section-bottom {
     background-color: #f8f9fa;
     padding: 20px;
 }

 .chatSection {
     height: 100vh;
     margin-top: 40px;
 }

 #inputmessage {
     margin-bottom: 20px;
     border-top: #000000 solid;
     border-radius: 30px;
 }

 #scrollabledivcontent {
     border-bottom-left-radius: 15px;
     border-bottom-right-radius: 15px;
 }

 .page {
     padding-bottom: 200px;
 }

 @media (max-width: 720px) {
     .dropbtn {
         background: linear-gradient(135deg, #475569, #334155);
         border: none;
         cursor: pointer;
         color: white;
         padding: none;
         font-size: medium;
     }

 }

 .brand {
     display: flex;
     align-items: center;
     gap: 10px;
     text-decoration: none;
     color: var(--text);
     font-weight: 700;
     letter-spacing: .2px
 }

 .brand-badge {
     width: 30px;
     height: 30px;
     border-radius: 8px;
     background: linear-gradient(145deg, var(--brand), #2c442b);
     display: grid;
     place-items: center;
     box-shadow: 0 6px 16px rgba(79, 122, 77, .4)
 }

 .brand-badge svg {
     width: 18px;
     height: 18px;
     fill: #fff
 }

 .spacer {
     flex: 1
 }

 .nav a.link {
     color: var(--text);
     text-decoration: none;
     opacity: .9;
     font-weight: 500
 }

 .nav a.link:hover {
     opacity: 1
 }

 .cta {
     background: var(--brand);
     color: #fff;
     border: none;
     padding: 10px 14px;
     border-radius: 999px;
     font-weight: 600;
     cursor: pointer
 }

 .mode {
     background: transparent;
     color: rgba(255, 255, 255, 0.9);
     padding: 2px;
     border-radius: 999px;
     cursor: pointer;
     width: 50px;
 }

 .chat-header .mode:hover {
     color: #fff;
 }


 /* ======= Hero ======= */
 .hero {
     position: relative;
     min-height: 70vh;
     display: grid;
     place-items: center;
     overflow: hidden
 }

 .hero::before {
     content: "";
     position: absolute;
     inset: 0;
     background: url('https://images.unsplash.com/photo-1483721310020-03333e577078?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
     filter: brightness(.45);
 }

 .hero::after {
     content: "";
     position: absolute;
     inset: 0;
     background: radial-gradient(80% 70% at 50% 30%, rgba(79, 122, 77, .45), transparent 60%)
 }

 .hero-content {
     position: relative;
     z-index: 1;
     max-width: 1100px;
     padding: 48px 20px;
     text-align: center
 }

 .eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-size: 12px;
     letter-spacing: .4px;
     text-transform: uppercase;
     background: rgba(255, 255, 255, .08);
     padding: 6px 10px;
     border-radius: 999px;
     border: 1px solid rgba(255, 255, 255, .12)
 }

 .hero h1 {
     font-size: clamp(28px, 5vw, 48px);
     margin: 16px 0 10px
 }

 .hero p {
     max-width: 780px;
     margin: 0 auto;
     color: #d2d8e1
 }

 /* Suggested actions */
 .actions {
     margin-top: 28px;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 14px
 }

 .pill {
     appearance: none;
     border: none;
     cursor: pointer;
     background: #151a20;
     color: #e9eef5;
     border: 1px solid rgba(255, 255, 255, .12);
     padding: 14px 20px;
     border-radius: 999px;
     font-weight: 600
 }

 .pill:hover {
     border-color: rgba(255, 255, 255, .28)
 }


 /* ======= Chat Widget - Professional Design ======= */
 .chat-launch {
     position: fixed;
     right: 24px;
     bottom: 24px;
     z-index: 60;
     border: none;
     border-radius: 16px;
     padding: 14px 20px;
     background: #1e293b;
     color: #fff;
     font-weight: 600;
     font-size: 0.95rem;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 10px;
     box-shadow: 0 4px 20px rgba(30, 41, 59, 0.4);
     transition: transform 0.2s ease, box-shadow 0.2s ease;
 }

 .chat-launch:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 28px rgba(30, 41, 59, 0.45);
 }

 .chat-launch:active {
     transform: translateY(0);
 }

 .chat-launch-text {
     letter-spacing: 0.02em;
 }

 .chat {
     position: fixed;
     right: 24px;
     bottom: 80px;
     width: min(400px, calc(100vw - 48px));
     height: auto;
     max-height: min(560px, 75vh);
     display: none;
     flex-direction: column;
     background: #fff;
     border-radius: 16px;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
     overflow: hidden;
     z-index: 7000;
     border: 1px solid rgba(0, 0, 0, 0.06);
 }

 .chat.open {
     display: flex;
     animation: chatSlideUp 0.25s ease;
 }

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

 .chat-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 16px 18px;
     background: #1e293b;
     color: #fff;
     flex-shrink: 0;
 }

 .chat-header-info {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .chat-avatar {
     width: 44px;
     height: 44px;
     border-radius: 12px;
     object-fit: cover;
     border: 2px solid rgba(255, 255, 255, 0.15);
 }

 .chat-header-text {
     display: flex;
     flex-direction: column;
     gap: 2px;
 }

 .chat-agent-name {
     font-weight: 700;
     font-size: 1rem;
     letter-spacing: 0.01em;
 }

 .chat-agent-brand {
     font-weight: 600;
     font-size: 0.85rem;
     opacity: 0.95;
 }

 .chat-agent-role {
     font-size: 0.75rem;
     opacity: 0.75;
     font-weight: 500;
 }

 .chat-header-actions {
     display: flex;
     align-items: center;
     gap: 4px;
 }

 .chat-header-btn {
     width: 36px;
     height: 36px;
     border: none;
     background: rgba(255, 255, 255, 0.1);
     color: #fff;
     border-radius: 10px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1rem;
     transition: background 0.2s ease;
 }

 .chat-header-btn:hover {
     background: rgba(255, 255, 255, 0.2);
 }

 .chat-body {
     flex: 1 1 auto;
     overflow-y: auto;
     padding: 20px;
     display: flex;
     flex-direction: column;
     gap: 12px;
     min-height: 0;
     background: #f8fafc;
 }

 .chat-body::-webkit-scrollbar {
     width: 6px;
 }

 .chat-body::-webkit-scrollbar-track {
     background: transparent;
 }

 .chat-body::-webkit-scrollbar-thumb {
     background: #cbd5e1;
     border-radius: 3px;
 }

 .chat-body::-webkit-scrollbar-thumb:hover {
     background: #94a3b8;
 }

 .bubble {
     max-width: 85%;
     padding: 12px 16px;
     border-radius: 16px;
     line-height: 1.5;
     font-size: 0.9rem;
     overflow-wrap: break-word;
 }

 .bubble a {
     color: #0d6efd;
     text-decoration: none;
 }

 .bubble a:hover {
     text-decoration: underline;
 }

 .bubble.user {
     align-self: flex-end;
     background: #fff;
     color: #1e293b;
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
     border: 1px solid #e2e8f0;
 }

 .bubble.agent {
     align-self: flex-start;
     background: #eef2ff;
     color: #312e81;
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
     border: 1px solid #c7d2fe;
 }

 .bubble.agent a {
     color: #4338ca;
 }

 .bubble.agent a:hover {
     color: #3730a3;
     text-decoration: underline;
 }

 .chat-typing.bubble.agent {
     background: #eef2ff;
     padding: 16px 20px;
 }

 .chat .chat-input {
     padding: 6px 14px 10px;
     background: #eef2ff;
     border-top: 1px solid #c7d2fe;
     flex-shrink: 0;
     min-height: 0;
     max-height: none;
 }

 .chat-suggest-toggle {
     display: flex;
     align-items: center;
     gap: 5px;
     width: 100%;
     padding: 2px 0 4px;
     border: none;
     background: none;
     color: #4f46e5;
     font-size: 0.75rem;
     font-weight: 500;
     cursor: pointer;
     transition: color 0.2s ease;
 }

 .chat-suggest-toggle:hover {
     color: #3730a3;
 }

 .chat-suggest-toggle i {
     font-size: 0.6rem;
 }

 .suggestion-row {
     margin-bottom: 10px;
 }

 .suggestion-row[hidden] {
     display: none !important;
     margin: 0 !important;
     padding: 0 !important;
     min-height: 0 !important;
     overflow: hidden !important;
 }

 .chat-suggestion-pills {
     display: flex;
     flex-wrap: wrap;
     gap: 6px;
 }

 .chat-suggestion-pill {
     padding: 6px 12px;
     border: 1px solid #a5b4fc;
     background: #fff;
     border-radius: 16px;
     font-size: 0.78rem;
     font-weight: 500;
     color: #4338ca;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .chat-suggestion-pill:hover {
     background: #e0e7ff;
     border-color: #818cf8;
     color: #3730a3;
 }

 .chat-input-wrap {
     display: flex;
     align-items: center;
     gap: 10px;
     background: #fff;
     border: 1px solid #a5b4fc;
     border-radius: 12px;
     padding: 10px 14px;
     transition: border-color 0.2s ease, box-shadow 0.2s ease;
 }

 .chat-input-wrap:focus-within {
     border-color: #6366f1;
     box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
 }

 .chat-input-field {
     flex: 1;
     border: none;
     background: transparent;
     outline: none;
     font-size: 0.95rem;
     color: #1e1b4b;
 }

 .chat-input-field::placeholder {
     color: #6366f1;
     opacity: 0.7;
 }

 .chat-send-btn {
     width: 40px;
     height: 40px;
     border: none;
     background: #4f46e5;
     color: #fff;
     border-radius: 10px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background 0.2s ease, transform 0.15s ease;
 }

 .chat-send-btn:hover {
     background: #4338ca;
 }

 .chat-send-btn:active {
     transform: scale(0.96);
 }

 @media (max-width: 480px) {
     .chat-launch {
         right: 16px;
         bottom: 16px;
         padding: 12px 16px;
         font-size: 0.9rem;
     }
     .chat {
         right: 16px;
         left: 16px;
         bottom: 72px;
         width: auto;
         height: auto;
         max-height: min(520px, 70vh);
     }
     .chat-header {
         padding: 14px 16px;
     }
     .chat-avatar {
         width: 40px;
         height: 40px;
     }
     .chat-agent-name { font-size: 0.95rem; }
     .chat-agent-brand { font-size: 0.8rem; }
     .chat-agent-role { font-size: 0.7rem; }
 }

 /* Legacy support for profa/usera if used elsewhere */
 .intro-img-Chat-Bubble { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; }
 .mode { background: transparent; color: rgba(255,255,255,0.9); padding: 2px; border-radius: 999px; cursor: pointer; width: 50px; }
 .chat-header .mode:hover { color: #fff; }
 .input-wrap { display: flex; align-items: center; gap: 10px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 10px 14px; }
 .field { flex: 1; }
 .field input { width: 100%; background: transparent; border: none; outline: none; font-size: 0.95rem; color: #1e293b; }
 .send { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: #1e293b; border: none; cursor: pointer; color: #fff; }

 /* Mobile full-height improvement */
 @supports (height: 100svh) {
     .hero {
         min-height: 75svh
     }
 }

 /* Footer */
 footer {
     margin-top: 60px;
     border-top: 1px solid rgba(255, 255, 255, .08);
     background: rgba(0, 0, 0, .25)
 }

 .footer-inner {
     max-width: 1100px;
     margin: 0 auto;
     padding: 24px 20px;
     display: flex;
     gap: 16px;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between
 }

 .small {
     color: var(--muted);
     font-size: 13px
 }

 /* Utility */
 .hide {
     display: none
 }

 .chatintro {
     right: 18px;
     bottom: 90px;
     width: min(780px, 94vw);
     display: none;
     flex-direction: column;
     background: #ffffff;
     border: 1px solid #e2e8f0;
     border-radius: 18px;
     box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
 }

 .ChatLoad {
     padding: 16px 20px;
     display: flex;
     flex-direction: column;
     gap: 10px;
     flex-shrink: 0;
     background: #f8fafc;
 }

 .ChatLoad[hidden] {
     display: none !important;
 }

 .clear-form {
     padding: 5px;
     border: #000000 solid 1px;
     border-radius: 15px;
     background-color: #efe9e9;
     z-index: 0;
 }

 .clearbtn {
     width: 100%;
 }

 .btnSuggestDrop {
     width: 100%;
     border: none;
     background: none;
     padding: 8px 0 12px;
     cursor: pointer;
 }

 .suggestion-row {
     display: block;
     margin-bottom: 12px;
 }

 .suggestion-item-bubble,
 .chat-suggestion-pill {
     display: inline-block;
 }

 /* Chat bubble images & listings */
 .chat-body .bubble img {
     max-width: 100%;
     height: auto;
     border-radius: 10px;
     display: block;
     margin: 8px 0;
 }

 .chat-body .bubble img:first-child {
     margin-top: 0;
 }

 .chat-body .bubble .listing-image,
 .chat-body .bubble img.listing-image {
     width: 100%;
     max-width: 180px;
     border-radius: 12px;
     object-fit: cover;
     aspect-ratio: 16/10;
 }

 .chat-body .bubble .listing-btn {
     margin-top: 8px;
     padding: 8px 14px;
     font-size: 0.85rem;
     border-radius: 10px;
 }

 .listing-image {
     width: 30%;
     border-radius: 10px;
 }

 .listing-btn {
     margin-top: 40px;
     color: #000000;
     border-radius: 15px;
     background-color: #f4f4f6;
     padding: 10px;
 }

 @media (max-width: 720px) {
     .listing-image {
         width: 100%;
         border-radius: 10px;
     }
 }

 .btnClearchat {}

 /* POPI & Demo Website Notification */
 .popi-notification {
     background: linear-gradient(135deg, #1e3a5f 0%, #0d47a1 100%);
     color: #fff;
     padding: 12px 20px;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
     z-index: 998;
 }

 .popi-notification.popi-dismissed {
     display: none !important;
 }

 .popi-notification-inner {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 20px;
     flex-wrap: wrap;
 }

 .popi-notification-content {
     flex: 1;
     min-width: 280px;
 }

 .popi-notification-title {
     font-weight: 600;
     font-size: 0.95rem;
 }

 .popi-notification-text {
     font-size: 0.85rem;
     line-height: 1.5;
     opacity: 0.95;
 }

 .popi-notification-btn {
     flex-shrink: 0;
     background: rgba(255, 255, 255, 0.2);
     color: #fff;
     border: 1px solid rgba(255, 255, 255, 0.4);
     padding: 8px 20px;
     border-radius: 8px;
     font-weight: 600;
     font-size: 0.9rem;
     cursor: pointer;
     transition: background 0.2s, border-color 0.2s;
 }

 .popi-notification-btn:hover {
     background: rgba(255, 255, 255, 0.3);
     border-color: rgba(255, 255, 255, 0.6);
     color: #fff;
 }

 @media (max-width: 576px) {
     .popi-notification-inner {
         flex-direction: column;
         align-items: stretch;
         text-align: center;
     }
     .popi-notification-btn {
         align-self: center;
     }
 }