/* Hide LiveChat Widget - CSS Trick */
/* This hides the LiveChat widget button without deleting the element */

/* Target the LiveChat button by its aria-label attribute */
button[aria-label="Open LiveChat chat widget"] {
    display: none !important;
}

/* Alternative selector using the class from the element path */
.e1mwfyk10 {
    display: none !important;
}

/* Hide the LiveChat widget container if it exists */
[data-lc-id] {
    display: none !important;
}

/* Hide the noscript fallback link */
noscript {
    display: none !important;
}

/* Hide CONTACT US footer column on all devices */
.footer-column:has(h4:contains("CONTACT US")) {
    display: none !important;
}

/* Alternative selector - target by position or content */
.footer-links .footer-column:nth-child(3) {
    display: none !important;
}

/* Mobile layout - ensure it's hidden */
@media (max-width: 768px) {
    .footer-links .footer-column:nth-child(3) {
        display: none !important;
    }
}

/* Desktop layout - ensure it's hidden */
@media (min-width: 769px) {
    .footer-links .footer-column:nth-child(3) {
        display: none !important;
    }
}
