/* 💪 FINAL MOBILE CHATBOT POSITION OVERRIDE - NUCLEAR STRENGTH */

/* Ultra-specific selectors with maximum !important power for mobile */
@media screen and (max-width: 768px) {
    /* AI Chat Button - Force it above Add to Cart */
    body #ai-chat-toggle,
    body .ai-chat-toggle,
    body #chatbot-toggle,
    body .chatbot-toggle,
    body .ai-chat-button,
    html body #ai-chat-toggle,
    html body .ai-chat-toggle,
    html body #chatbot-toggle,
    html body .chatbot-toggle {
        bottom: 140px !important;
        right: 20px !important;
        position: fixed !important;
        z-index: 999999 !important;
        display: flex !important;
    }
    
    /* Chat Container - Align with button */
    body #ai-chat-container,
    body .ai-chat-widget,
    html body #ai-chat-container,
    html body .ai-chat-widget {
        bottom: 190px !important;
        right: 15px !important;
        position: fixed !important;
        z-index: 999998 !important;
    }
}

/* Smaller screens - even higher */
@media screen and (max-width: 480px) {
    body #ai-chat-toggle,
    body .ai-chat-toggle,
    body #chatbot-toggle,
    body .chatbot-toggle,
    body .ai-chat-button,
    html body #ai-chat-toggle,
    html body .ai-chat-toggle,
    html body #chatbot-toggle,
    html body .chatbot-toggle {
        bottom: 150px !important;
        right: 15px !important;
    }
    
    body #ai-chat-container,
    body .ai-chat-widget,
    html body #ai-chat-container,
    html body .ai-chat-widget {
        bottom: 200px !important;
        right: 15px !important;
    }
}

/* Landscape - more conservative */
@media screen and (max-width: 768px) and (orientation: landscape) {
    body #ai-chat-toggle,
    body .ai-chat-toggle,
    body #chatbot-toggle,
    body .chatbot-toggle,
    body .ai-chat-button,
    html body #ai-chat-toggle,
    html body .ai-chat-toggle,
    html body #chatbot-toggle,
    html body .chatbot-toggle {
        bottom: 100px !important;
        right: 15px !important;
    }
    
    body #ai-chat-container,
    body .ai-chat-widget,
    html body #ai-chat-container,
    html body .ai-chat-widget {
        bottom: 150px !important;
        right: 15px !important;
    }
}

/* Ensure Add to Cart area is clear */
@media screen and (max-width: 768px) {
    .sticky-add-to-cart,
    .add-to-cart-sticky,
    .sticky-cart,
    .fixed-bottom,
    .cart-sticky {
        z-index: 998 !important;
    }
}
