/* Smooth hide behavior (mobile) */
@media (max-width: 768px){
/* Give the bar a smooth transition */
.art-widget,
.art-widget__wrapper,
.cv-floating-widget{
transition: opacity .2s ease, transform .2s ease, visibility .2s ease !important;
}
/* When chat is open: hide the footer floating bar */
html.ab-open .art-widget,
html.ab-open .art-widget__wrapper,
html.ab-open .cv-floating-widget{
opacity: 0 !important;
visibility: hidden !important;
pointer-events: none !important;
transform: translateY(120%) !important; /* slides down out */
}
}