﻿/**
 * CTA Footer Widget - Mobile Styles
 * Version: 1.0.0
 */

/* Hide Lety.ai floating bubble on mobile too */
iframe[src*="lety.ai"][src*="chatbubble"]:not([src*="/chatbot/embed/"]) {
    display: none !important;
}

div[id*="lety-bubble"],
div[class*="lety-bubble"] {
    display: none !important;
}

button.chat-bubble,
div.chat-bubble:not(iframe),
span.chat-bubble,
a.chat-bubble {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* DO NOT hide the main chat iframe */
iframe[src*="/chatbot/embed/"] {
    display: block !important;
}

@media (max-width: 767px) {
    .cta-footer-widget .cta-btn {
        font-size: 11px;
        padding: 8px 3px;
        height: 60px !important;
    }
    
    .cta-footer-widget .cta-btn-icon,
    .cta-footer-widget .cta-btn svg.cta-btn-icon {
        width: 18px;
        height: 18px;
        margin-bottom: 3px;
    }
    
    /* Adjust separators on mobile */
    .cta-footer-widget .cta-btn {
        border-right-width: 1px;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .cta-footer-widget .cta-btn {
        font-size: 10px;
        padding: 6px 2px;
        height: 55px !important;
    }
    
    .cta-footer-widget .cta-btn-icon,
    .cta-footer-widget .cta-btn svg.cta-btn-icon {
        width: 16px;
        height: 16px;
        margin-bottom: 2px;
    }
}

/* Prevent widget from overlapping content on mobile */
@media (max-width: 767px) {
    body {
        padding-bottom: 60px;
    }
}

