.listeo-ai-chat-wrapper {
width: 100%;
margin: 0 auto;
}
.listeo-ai-chat-wrapper i {
font-family: "Font Awesome 6 Free" !important;
} .listeo-ai-chat-container {
background: white;
border: 1px solid #e5e5e5;
border-radius: 8px;
display: flex;
flex-direction: column;
position: relative;
height: 100%;
box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
} .listeo-ai-chat-header {
padding: 15px 20px;
border-bottom: 1px solid #e5e5e5;
display: flex;
justify-content: space-between;
align-items: center;
}
.listeo-ai-chat-header-left {
display: flex;
align-items: center;
gap: 10px;
}
.listeo-ai-chat-avatar-wrapper {
position: relative;
flex-shrink: 0;
}
body .listeo-ai-chat-avatar {
width: 32px;
height: 32px;
border-radius: 100px !important;
object-fit: cover;
flex-shrink: 0;
display: block;
}
.listeo-ai-chat-status-dot {
position: absolute;
bottom: -2px;
right: -2px;
width: 8px;
height: 8px;
background: #22c55e;
border-radius: 100px !important;
border: 2px solid #fff;
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
box-sizing: content-box !important;
}
.listeo-ai-chat-title {
font-size: 16px;
font-weight: 600;
color: #333;
} .listeo-ai-chat-menu {
position: relative;
}
.listeo-ai-chat-menu-trigger {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border-radius: 6px;
cursor: pointer;
color: #777;
transition: all 0.15s ease;
}
.listeo-ai-chat-menu-trigger:hover {
background: rgba(0, 0, 0, 0.05);
color: #333;
}
.listeo-ai-chat-menu-trigger[aria-expanded="true"] {
background: rgba(0, 0, 0, 0.05);
color: #333;
}
.listeo-ai-chat-menu-dropdown {
position: absolute;
top: 100%;
margin-top: 5px;
right: 0;
min-width: 150px;
background: #fff;
border: 1px solid #e5e5e5;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 4px;
z-index: 100;
opacity: 0;
visibility: hidden;
transform: scale(0.95) translateY(-4px);
transform-origin: top right;
transition: all 0.15s ease;
}
html[dir="rtl"] .listeo-ai-chat-menu-dropdown {
left: 0 !important;
right: initial !important;
}
.listeo-ai-chat-menu-dropdown[data-state="open"] {
opacity: 1;
visibility: visible;
transform: scale(1) translateY(0);
}
.listeo-ai-chat-menu-item {
display: flex;
align-items: center;
gap: 7px;
padding: 5px 10px;
font-size: 13px;
font-weight: 500;
color: #333;
border-radius: 6px;
cursor: pointer;
transition: background 0.15s ease;
white-space: nowrap;
line-height: 20px;
}
.listeo-ai-chat-menu-item:hover {
background: #f5f5f5;
}
.listeo-ai-chat-menu-item svg {
flex-shrink: 0;
color: #666;
}
.listeo-ai-chat-menu-item:hover svg {
color: #333;
} @media (min-width: 992px) {
.listeo-floating-chat-popup.is-expanded {
width: 600px !important;
max-width: calc(100vw - 45px) !important;
height: 100vh !important;
max-height: calc(100vh - 165px) !important;
}
} .listeo-floating-chat-popup.is-expanded .listeo-ai-chat-expand-btn .icon-expand {
display: none;
}
.listeo-floating-chat-popup.is-expanded .listeo-ai-chat-expand-btn .icon-collapse {
display: inline;
}
.listeo-ai-chat-expand-btn .icon-collapse {
display: none;
} .listeo-floating-chat-popup.is-expanded .listeo-ai-chat-expand-btn .text-expand {
display: none;
}
.listeo-floating-chat-popup.is-expanded .listeo-ai-chat-expand-btn .text-collapse {
display: inline;
}
.listeo-ai-chat-expand-btn .text-collapse {
display: none;
}
@media (max-width: 992px) { .listeo-ai-chat-expand-btn { display: none !important;} } button.listeo-ai-chat-clear-btn {
background: transparent !important;
border: none;
color: #888;
font-size: 12px;
cursor: pointer;
padding: 0 !important;
border-radius: 4px;
transition: all 0.3s ease;
display: flex;
justify-content: center;
min-height: auto !important;
max-height: 16px !important;
max-width: 16px !important;
min-width: auto !important;
}
button.listeo-ai-chat-clear-btn:hover {
color: #333;
transform: rotate(180deg);
}
button.listeo-ai-chat-clear-btn img {
width: auto;
height: auto;
max-width: 12px;
max-height: 12px;
opacity: 0.4;
}
.listeo-ai-chat-send-btn { padding: 0 !important; } .listeo-ai-chat-messages {
flex: 1;
padding: 20px;
overflow-y: auto;
background: #f8f8f8;
display: flex;
flex-direction: column;
gap: 15px;
scroll-behavior: smooth;
} .listeo-ai-chat-message {
line-height: 24px;
display: flex;
width: 100%;
}
.listeo-ai-chat-message-user {
color: var(--ai-chat-primary-color);
background: var(--ai-chat-primary-color-light);
padding: 12px 16px;
border-radius: 8px;
max-width: 80%;
width: fit-content;
margin-left: auto;
}
.listeo-ai-chat-message.listeo-ai-chat-message-system,
.listeo-ai-chat-message-assistant {
color: #444;
background: #f6f6f6;
padding: 12px 16px;
border-radius: 8px;
max-width: 100%;
width: fit-content;
margin-right: auto;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
background: #fff;
} .listeo-ai-chat-message-assistant.has-avatar {
position: relative;
margin-left: 32px;
}
.listeo-ai-chat-message-avatar {
position: absolute;
left: -32px;
top: 0;
width: 24px;
height: 24px;
border-radius: 100px !important;
object-fit: cover;
flex-shrink: 0;
}
.listeo-ai-chat-message-assistant.chat-message-results {
padding: 0;
background: transparent;
box-shadow: none;
}
.listeo-ai-chat-message-system {
color: #666;  }
.listeo-ai-chat-message-label {
font-weight: 600;
margin-bottom: 4px;
font-size: 14px;
}
.listeo-ai-chat-message-content {
line-height: 23px;
font-size: 14px;
word-break: break-word;
}
.listeo-ai-chat-message-content p {
margin: 0 0 15px 0;
font-size: 14px;
line-height: 23px;
}
.listeo-ai-chat-message-content p:last-child {
margin-bottom: 0;
}
.listeo-ai-chat-message-content strong {
font-weight: 600;
color: #222;
}
.listeo-ai-chat-message-content a strong,
.listeo-ai-chat-message-content a {
color: var(--ai-chat-primary-color);
text-decoration: underline;
}
.listeo-ai-chat-message-content a:hover {
color: #1a252f;
}
.listeo-ai-sources-list {
display: flex;
flex-direction: column;
}
.listeo-ai-chat-message-content ol,
.listeo-ai-chat-message-content ul { 
display: flex; 
flex-direction: column; 
gap: 10px;
padding-left: 20px;
margin: 8px 0;
}
.listeo-ai-chat-message-content ol li,
.listeo-ai-chat-message-content ul li{ 
margin: 0;
} .listeo-ai-results-list {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 0;
}
.elementor .listeo-ai-listing-item,
.listeo-ai-listing-item {
background: white;
border-radius: 8px;
border: none;
display: flex;
align-items: stretch;
min-height: 90px;
text-decoration: none !important;
color: inherit;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}
.elementor .listeo-ai-listing-item:hover,
.listeo-ai-listing-item:hover {
box-shadow: 0 2px 8px rgba(0,0,0,0.12);
border-color: #d0d0d0;
}
.listeo-ai-listing-hidden {
display: none;
}
.listeo-ai-listing-thumbnail {
width: 90px;
height: 90px;
flex-shrink: 0;
overflow: hidden;
padding: 12px;
margin-top: 5px;
margin-left: 3px;
}
body .listeo-ai-listing-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 8px;
}
.listeo-ai-listing-details {
flex: 1;
display: flex;
padding: 12px 16px;
padding-left: 0;
align-items: stretch;
gap: 0;
text-decoration: none;
word-break: break-word;
overflow-wrap: break-word;
word-break: break-word;
}
.listeo-ai-listing-title {
margin: 0 0 4px 0;
font-size: 15px !important;
font-weight: 600;
line-height: 20px;
color: #333;
}
body p.listeo-ai-listing-excerpt {
color: #666;
font-size: 13px;
line-height: 1.4;
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
}
.listeo-ai-listing-meta {
display: flex;
gap: 0;
font-size: 13px;
color: #888;
flex-wrap: wrap;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
display: flex;
gap: 0 5px;
}
.listeo-ai-listing-meta span {
display: flex;
align-items: baseline;
gap: 4px;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
}
.listeo-ai-listing-meta i {
width: 12px;
text-align: center;
font-size: 11px;
color: #b4b4b4;
}
.listeo-ai-listing-rating {
color: #f59e0b;
font-weight: 500;
}
.listeo-ai-listing-rating i {
color: #f59e0b !important;
}
.listeo-ai-listing-rating svg {
top: 2px; position: relative;
} .product-price {
font-weight: 600;
color: #333;
font-size: 14px;
display: flex !important;
gap: 0 !important;
}
.product-price .regular-price {
text-decoration: line-through;
color: #888;
font-weight: 400;
margin-right: 6px;
}
.product-price .sale-price {
color: #27ae60;
font-weight: 600;
background-color: #fbf2d1;
color: #8a803e;
padding: 0px 4px;
border-radius: 50px;
}
.stock-status {
font-size: 13px;
font-weight: 500;
padding: 0;
border-radius: 54px;
display: inline-flex;
align-items: center;
gap: 4px;
display: inline-block !important;
margin-bottom: -8px;
}
.stock-status svg { top: 2px; position: relative; }
.stock-status.in-stock {
color: #27ae60; }
.stock-status.in-stock i {
color: #27ae60 !important;
}
.stock-status.out-of-stock {
color: #e74c3c; }
.stock-status.out-of-stock i {
color: #e74c3c !important;
} .listeo-ai-show-more-btn {
display: block;
width: auto;
margin-top: 12px;
padding: 6px 16px;
background: white;
border:none;
color: var(--ai-chat-primary-color);
background: var(--ai-chat-primary-color-light);
border-radius: 8px;
font-size: 14px;
cursor: pointer;
transition: all 0.2s ease;
font-weight: 500;
margin: 0 auto;
margin-top: 15px;
border-radius: 50px;
}
.listeo-ai-show-more-btn:hover {
} .listeo-ai-chat-loader-wrapper {
display: inline-flex;
align-items: center;
gap: 8px;
}
.listeo-ai-chat-typing-dots {
display: flex;
gap: 3px;
align-items: center;
}
.listeo-ai-chat-typing-dots span {
width: 6.2px;
height: 6.2px;
background: #777777;
border-radius: 50%;
opacity: 0.3;
animation: listeoAiChatTypingDot 1.4s infinite backwards;
transform: translateY(0px);
}
.listeo-ai-chat-typing-dots span:nth-child(2) {
animation-delay: 0.2s;
}
.listeo-ai-chat-typing-dots span:nth-child(3) {
animation-delay: 0.4s;
}
@keyframes listeoAiChatTypingDot {
0%, 60%, 100% {
opacity: 0.3;
}
30% {
opacity: 1;
transform: translateY(-3px);
}
}
.listeo-ai-chat-shimmer-text {
font-size: 14px;
display: inline-block;
background: linear-gradient(90deg,
#666 0%,
#666 40%,
#888 48%,
#bbbbbb 52%,
#888 56%,
#666 62%,
#666 100%
);
background-size: 300px 100%;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: listeoAiChatShimmer 3.5s linear infinite;
}
@keyframes listeoAiChatShimmer {
0% {
background-position: -300px 0;
}
100% {
background-position: 300px 0;
}
}
.listeo-ai-chat-loading {
top: 2px;
margin-right: 2px;
position: relative;
display: inline-block;
width: 14px;
height: 14px;
box-sizing: border-box;
background: conic-gradient(
from 90deg at 50% 50%,
rgba(160, 160, 160, 0) 0deg,
rgba(160, 160, 160, 0) 0.04deg,
#707070 360deg
);
border-radius: 50%;
animation: rotate 0.7s infinite linear;
}
.listeo-ai-chat-loading::before {
content: "";
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 10px;
height: 10px;
background: #fff; border-radius: 50%;
}
.listeo-ai-chat-loading::after {
content: "";
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 2px;
height: 2px;
background: #a2a2a2;
border-radius: 50%;
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
div.listeo-ai-chat-message.listeo-ai-chat-message-assistant[id^="loading"] {
background: none;
box-shadow: none;
padding: 0;
font-weight: 500;
color: #666;
margin-left: 0;
}
div.listeo-ai-chat-message.listeo-ai-chat-message-assistant[id^="loading"] .listeo-ai-chat-message-avatar {
display: none;
} .listeo-ai-chat-input-wrapper {
border-top: 1px solid #e5e5e5;
padding: 16px;
display: flex;
gap: 12px;
align-items: center;
position: relative;
}
.listeo-ai-chat-input {
flex: 1;
padding: 12px 15px !important;
border: none !important;
border-radius: 8px;
font-size: 15px !important;
font-family: inherit;
resize: none;
min-height: 48px !important;
min-width: auto  !important;
height: 48px !important;
min-width: auto;
margin-bottom: 0;
box-shadow: none !important;
border-radius: 50px !important;
padding-right: 50px !important;
line-height: 22px !important;
box-sizing: border-box;
}
.listeo-ai-chat-input:not(.elementor-chat-style .listeo-ai-chat-input) {
background: #f5f5f5 !important;
}
.listeo-ai-chat-input {
background: #f5f5f5; 
color: #666 !important;
}
.listeo-ai-chat-input::placeholder {
color: #888 !important
}
body#dark-mode .listeo-ai-chat-input {background: #f5f5f5; color: #555;}
.listeo-ai-chat-input:focus {
outline: none;
border-color: #d0d0d0;
}
.listeo-ai-chat-send-btn {
background: #222;
color: white;
border: none;
cursor: pointer;
font-size: 14px;
flex-shrink: 0;
font-weight: 500;
align-self: stretch;
transition: 0.2s;
right: 24px;
line-height: 24px;
top: 50%;
position: absolute !important;
border-radius: 50px !important;
height: 34px !important;
width: 34px !important;
min-width: 34px !important;
max-width: 34px !important;
max-height: 34px !important;
min-height: 34px !important;
transform: translateY(-50%);
}
.listeo-ai-chat-send-btn img{
width: auto;
height: auto;
min-width: 25px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.listeo-ai-chat-send-btn:hover {
background: #222;
}
.listeo-ai-chat-send-btn:disabled {
background: #555;
cursor: not-allowed;
} .match-badge.best {
font-weight: 600;
font-size: 12px;
padding: 0px 8px;
line-height: 16px;
text-shadow: none;
border-radius: 50px;
background: #00b54d21;
display: flex;
justify-content: center;
align-content: center;
flex-wrap: wrap;
color: #27ae60;
height: 21px;
position: relative;
top: -1px;
display: inline-block;
} .listeo-ai-listing-main {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
min-width: 0;
}
.listeo-ai-listing-sidebar {
flex-shrink: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-end;
gap: 4px;
min-width: 100px;
}
.listeo-ai-listing-sidebar:empty {
display: none;
} .listeo-ai-chat-disabled {
background: #fff3cd;
border-radius: 8px;
padding: 20px;
text-align: center;
color: #856404;
}
.listeo-ai-chat-disabled p { margin: 0} .listeo-ai-listing-item:not(:has(.listeo-ai-listing-thumbnail)) .listeo-ai-listing-details {
padding-left: 16px;
} .listeo-ai-chat-message-listing-action {
display: flex;
flex-direction: column;
align-items: center;
margin: 15px 0;
}
.listeo-ai-listing-context-title {
font-size: 16px;
color: #333;
font-weight: 500;
margin: 0 0 12px 0;
text-align: center;
}
#listing-context-btn { text-align: center;}
.listeo-ai-load-listing-btn {
background: #222;
color: white;
border: none;
border-radius: 24px;
padding: 8px 20px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.listeo-ai-load-listing-btn:hover {
opacity: 0.9;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.listeo-ai-load-listing-btn:active {
transform: scale(0.98);
}
.listeo-ai-load-listing-btn svg {
flex-shrink: 0;
}
.listeo-ai-load-listing-btn.loading {
opacity: 0.7;
cursor: wait;
}
.listeo-ai-load-listing-btn:disabled {
opacity: 0.6;
cursor: not-allowed;
} #product-context-btn {
text-align: center;
justify-content: center;
margin: 15px 0;
}
.listeo-ai-product-context-title {
font-size: 16px;
color: #333;
font-weight: 500;
margin: 0 0 12px 0;
text-align: center;
}
.listeo-ai-load-product-btn {
background: #222;
color: white;
border: none;
border-radius: 24px;
padding: 8px 20px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.listeo-ai-load-product-btn:hover {
opacity: 0.9;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.listeo-ai-load-product-btn:active {
transform: scale(0.98);
}
.listeo-ai-load-product-btn svg {
flex-shrink: 0;
}
.listeo-ai-load-product-btn.loading {
opacity: 0.7;
cursor: wait;
}
.listeo-ai-load-product-btn:disabled {
opacity: 0.6;
cursor: not-allowed;
} .context-loaded-icon {
display: inline-block;
vertical-align: middle;
margin-right: 4px;
color: #222;
} .listeo-ai-popular-searches {
margin-top: 30px;
padding: 0;
}
.popular-searches-header {
font-size: 14px;
font-weight: 600;
color: #333;
margin-bottom: 12px;
}
.popular-searches-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.popular-search-tag {
background: var(--listeo-primary-color-light);
border-radius: 50px;
padding: 5px 13px;
font-size: 13px;
color: var(--listeo-primary-color);
cursor: pointer;
transition: all 0.2s ease;
font-weight: 500;
border: none;
line-height: 22px;
}
.popular-search-tag:hover {
background: var(--listeo-primary-color, #222);
color: white;
border-color: var(--listeo-primary-color, #222);
transform: translateY(-1px);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.popular-search-tag:active {
transform: translateY(0);
} .elementor-chat-style .listeo-ai-chat-wrapper { height: auto !important;}
.elementor-chat-style .listeo-ai-chat-wrapper .listeo-ai-chat-messages {
max-height: 0;
height: 400px;
padding: 0 20px; transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
padding 0.7s cubic-bezier(0.4, 0, 0.2, 1);
flex: none;
display: flex;
flex-direction: column;
gap: 15px;
scroll-behavior: smooth;
}
.elementor-chat-style .listeo-ai-chat-wrapper.expanded .listeo-ai-chat-messages {
max-height: 400px;
padding: 20px;
}
.elementor-chat-style .listeo-ai-chat-container {
border: none;
zoom: 1.12;
position: relative;
}
.elementor-chat-style .listeo-ai-chat-container {border-radius: 10px; transition: 0.3s;}
.elementor-chat-style .listeo-ai-chat-wrapper.expanded .listeo-ai-chat-container {border-radius: 10px;}
.elementor-chat-style .listeo-ai-chat-messages {
background: transparent;
}
.elementor-chat-style .listeo-ai-chat-wrapper.expanded .listeo-ai-chat-messages {
}
.elementor-chat-style .listeo-ai-chat-input {
background: transparent;
}
.elementor-chat-style .listeo-ai-chat-input-wrapper {
border: none;
background: transparent;
border-radius: 10px;
padding: 12px;
}
.elementor-chat-style .listeo-ai-chat-input-wrapper {
}
.elementor-chat-style .listeo-ai-chat-message.listeo-ai-chat-message-system,
.elementor-chat-style .listeo-ai-chat-message-assistant {
box-shadow: none;
background: transparent;
padding: 12px 0;
}
.elementor-chat-style .listeo-ai-chat-avatar-wrapper { display: none; }
.elementor-chat-style .listeo-ai-chat-message-avatar { top: 10px; } .elementor-chat-style .listeo-ai-chat-message-assistant.has-avatar {
margin-left: 32px;
padding-left: 0;
}
.elementor-chat-style .listeo-ai-chat-title {
display: none;
}
.elementor-chat-style .listeo-ai-chat-header {
border: none;
background: transparent;
position: absolute;
width: 20px;
height: 20px;
opacity: 0;transition: 0.3s;z-index: 111;
left: 15px; top: 15px;
display: none;overflow: hidden;padding: 0;
}
.elementor-chat-style .listeo-ai-chat-wrapper.expanded  .listeo-ai-chat-header{
opacity: 1;
display: block;
}
.elementor-chat-style .listeo-ai-chat-message-system { display: none; }
.elementor-chat-style .listeo-ai-chat-message-user {
padding: 8px 15px; border-radius: 30px;
}
.elementor .elementor-chat-style  .listeo-ai-listing-item {
border: 1px solid #e0e0e0;
box-shadow: 0 2px 5px rgba(0,0,0,0.07);
}
.elementor .elementor-chat-style  .listeo-ai-listing-item:hover {
border: 1px solid #ddd;
box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.elementor-chat-style .listeo-ai-chat-menu { position: absolute; top: 0; right: 10px; }
.elementor-chat-style .listeo-ai-chat-quick-buttons {
max-height: 0;
opacity: 0;
overflow: hidden;
padding: 0 15px;
margin: 0;
pointer-events: none;
transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
background: transparent;
}
.elementor-chat-style  .listeo-ai-quick-btn { background-color: #f4f4f4; }
.elementor-chat-style .listeo-ai-chat-wrapper.expanded .listeo-ai-chat-quick-buttons {
max-height: 100px;
opacity: 1;
padding: 0 20px;
padding-top: 15px;
margin-bottom: 0;
pointer-events: auto;
}
.elementor .listeo-ai-listing-item.listeo-ai-listing-item.listeo-ai-listing-hidden { display: none; } .listeo-ai-chat-powered-by {
text-align: center;
font-size: 12px;
color: #888;
background: transparent;
padding: 0;
margin: -10px 0 10px 0;
line-height: 27px;
}
.listeo-ai-chat-powered-by a {
color: var(--ai-chat-primary-color, #0073ee);
text-decoration: none;
font-weight: 600;
transition: color 0.2s ease;
}
.listeo-ai-chat-powered-by a:hover {
color: #111;
} .elementor-chat-style .listeo-ai-chat-powered-by {
background: transparent;
border: none;
padding: 6px 12px;
} .listeo-ai-chat-quick-buttons {
display: flex;
flex-wrap: wrap;
gap: 8px;
padding: 16px 20px;
background: #f8f8f8
}
.listeo-ai-quick-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
background: #ebebeb;
line-height: 20px;
color: #777;
border-radius: 8px;
font-size: 13px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
white-space: nowrap; }
.listeo-ai-quick-btn:hover {
background: var(--ai-chat-primary-color-light, rgba(0, 115, 238, 0.1));
border-color: var(--ai-chat-primary-color, #0073ee);
color: var(--ai-chat-primary-color, #0073ee);
}
.listeo-ai-quick-btn:active {
transform: scale(0.97);
} .listeo-ai-btn-icon {
flex-shrink: 0;
opacity: 0.8;
transition: opacity 0.2s ease, stroke 0.2s ease;
}
.listeo-ai-quick-btn:hover .listeo-ai-btn-icon {
opacity: 1;
stroke: var(--ai-chat-primary-color, #0073ee);
} .listeo-ai-contact-form-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.3);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
z-index: 100;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
box-sizing: border-box;
border-radius: inherit;
}
.listeo-ai-contact-form {
background: #fff;
border-radius: 10px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
width: 100%;
max-width: 340px;
max-height: 100%;
overflow-y: auto;
}
.listeo-ai-contact-form-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 18px 20px;
padding-bottom: 0; }
.listeo-ai-contact-form-header h3 {
margin: 0;
font-size: 16px;
font-weight: 600;
color: #333;
}
.listeo-ai-contact-form-close {
background: none;
border: none;
padding: 6px !important;
cursor: pointer;
transition: background-color 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
width: 28px !important;
height: 28px !important;
background: #f5f5f5;
min-width: auto !important;
min-height: auto !important;
box-sizing: border-box;
}
.listeo-ai-contact-form-close svg {
stroke: #888;
transition: stroke 0.2s ease;
}
.listeo-ai-contact-form-close:hover {
background: #eee;
}
.listeo-ai-contact-form-close:hover svg {
stroke: #333;
}
.listeo-ai-contact-form-body {
padding: 20px;
}
.listeo-ai-contact-form-field {
margin-bottom: 16px;
}
.listeo-ai-contact-form-field label {
display: block;
font-size: 13px;
font-weight: 500;
color: #555;
margin-bottom: 6px;
}
.listeo-ai-contact-form-field label .required {
color: #dc3545;
}
body .listeo-ai-contact-form-field input,
body .listeo-ai-contact-form-field textarea {
width: 100%;
padding: 10px 12px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 14px;
height: 40px;
font-family: inherit;
transition: border-color 0.2s, box-shadow 0.2s;
box-sizing: border-box;
}
.listeo-ai-contact-form-field input:focus,
.listeo-ai-contact-form-field textarea:focus {
outline: none !important;
border-color: var(--ai-chat-primary-color, #0073ee) !important;
box-shadow: 0 0 0 3px var(--ai-chat-primary-color-light, rgba(0, 115, 238, 0.1)) !important;
}
.listeo-ai-contact-form-field textarea {
resize: vertical;
min-height: 80px;
}
.listeo-ai-contact-form-actions {
margin-top: 20px;
}
body .listeo-ai-contact-form-submit {
width: 100%;
padding: 8px 20px !important;
background: var(--ai-chat-primary-color, #0073ee);
color: #fff;
border: none;
border-radius: 8px;
height: 42px !important;
min-height: 42px !important;
line-height: 20px !important;
font-size: 14px !important;
font-weight: 600;
cursor: pointer;
transition: background 0.2s, transform 0.1s;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.listeo-ai-contact-form-submit:hover {
background: color-mix(in srgb, var(--ai-chat-primary-color, #0073ee) 85%, #000);
}
.listeo-ai-contact-form-submit:active {
transform: scale(0.98);
}
.listeo-ai-contact-form-submit:disabled {
opacity: 0.7;
cursor: not-allowed;
}
.listeo-ai-contact-form-submit .button-spinner {
display: flex;
align-items: center;
}
.listeo-ai-contact-form-message {
margin-top: 16px;
padding: 8px 12px;
border-radius: 8px;
font-size: 13px;
text-align: center;
}
.listeo-ai-contact-form-message.success {
background: #d4edda;
color: #155724;
}
.listeo-ai-contact-form-message.error {
background: #f8d7da;
color: #721c24;
} .listeo-ai-chat-image-btn {
position: absolute !important;
left: 24px;
top: 50%;
transform: translateY(-50%);
width: 34px !important;
height: 34px !important;
min-width: 34px !important;
min-height: 34px !important;
max-width: 34px !important;
max-height: 34px !important;
border-radius: 50px !important;
border: none;
background: #fff !important;
color: #888;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
padding: 0 !important;
z-index: 2;
}
.listeo-ai-chat-image-btn:hover {
background: var(--ai-chat-primary-color-light, rgba(0, 115, 238, 0.1)) !important;
border-color: var(--ai-chat-primary-color, #0073ee);
color: var(--ai-chat-primary-color, #0073ee);
}
.listeo-ai-chat-image-btn:hover svg {
stroke: var(--ai-chat-primary-color, #0073ee);
}
.listeo-ai-chat-image-btn svg {
flex-shrink: 0;
transition: stroke 0.2s ease;
} .listeo-ai-chat-image-btn.has-image {
background: var(--ai-chat-primary-color-light, rgba(0, 115, 238, 0.1)) !important;
color: var(--ai-chat-primary-color, #0073ee);
}
.listeo-ai-chat-image-btn.has-image svg {
stroke: var(--ai-chat-primary-color, #0073ee);
} .listeo-ai-chat-image-btn .image-count-badge {
position: absolute;
top: -4px;
right: -4px;
min-width: 16px;
height: 16px;
background: var(--ai-chat-primary-color, #0073ee);
color: #fff;
font-size: 10px;
font-weight: 600;
border-radius: 50%;
display: none;
align-items: center;
justify-content: center;
line-height: 1;
padding: 0 4px;
box-sizing: border-box;
}
.listeo-ai-chat-image-btn.has-image .image-count-badge {
display: flex;
} .listeo-ai-chat-input.has-image-input {
padding-left: 50px !important;
} .listeo-ai-chat-image-preview {
position: relative;
display: inline-block;
margin: 8px 0;
max-width: 150px;
}
.listeo-ai-chat-image-preview img {
max-width: 100%;
max-height: 100px;
border-radius: 8px;
object-fit: cover;
}
.listeo-ai-chat-image-preview-remove {
position: absolute;
top: -8px;
right: -8px;
width: 20px;
height: 20px;
border-radius: 50%;
background: #ff4444;
color: white;
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
line-height: 1;
padding: 0;
}
.listeo-ai-chat-image-preview-remove:hover {
background: #cc0000;
} .listeo-ai-chat-message-user .listeo-ai-chat-user-image {
max-width: 200px;
max-height: 150px;
border-radius: 8px;
margin-bottom: 8px;
display: block;
}
.listeo-ai-chat-message-user .listeo-ai-chat-user-image + .listeo-ai-chat-message-content {
margin-top: 0;
} .listeo-ai-tooltip {
position: fixed;
background: #222;
color: #fff;
padding: 6px 10px;
font-size: 12px;
font-weight: 500;
line-height: 1.3;
border-radius: 8px;
white-space: nowrap;
z-index: 9999999;
pointer-events: none;
opacity: 0;
transform: translateX(-50%) translateY(-4px);
transition: opacity 0.15s ease, transform 0.15s ease;
}
.listeo-ai-tooltip.visible {
opacity: 1;
transform: translateX(-50%) translateY(0);
} .listeo-ai-tooltip::after {
content: '';
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
border-width: 5px;
border-style: solid;
border-color: #222 transparent transparent transparent;
}  .stream-word {
display: inline;
} .streaming-active .stream-word {
display: none;
} .streaming-active .stream-block-hidden {
display: none;
} .streaming-active .stream-word.visible {
display: inline;
animation: streamWordFadeIn 0.15s ease-out forwards;
}
@keyframes streamWordFadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
} .streaming-active .stream-word.trail-1 {
opacity: 0.4;
}
.streaming-active .stream-word.trail-2 {
opacity: 0.55;
}
.streaming-active .stream-word.trail-3 {
opacity: 0.7;
}
.streaming-active .stream-word.trail-4 {
opacity: 0.85;
}
.streaming-active .stream-word.trail-5 {
opacity: 0.95;
}