/* Additional responsive fixes for mobile devices */

/* Fix for products-showcase-container on very small screens */
@media screen and (max-width: 380px) {
    .products-showcase-container {
        background-size: contain;
        background-position: center top;
        min-height: auto !important;
        padding: 8px !important;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    
    .product-logo-item {
        min-height: 60px !important;
        padding: 8px 4px !important;
    }
    
    .product-logo {
        width: 24px !important;
        height: 24px !important;
    }
    
    .product-name {
        font-size: 10px !important;
    }
}

/* Fix for horizontal scrolling on mobile */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Force px-64 class to adapt on mobile */
@media screen and (max-width: 768px) {
    .px-64 {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .py-64 {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }
}

@media screen and (max-width: 480px) {
    .px-64 {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .py-64 {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }
}