/**
 * SEO & Mobile Optimization CSS
 */

/* Mobile Font Size & Spacing */
@media only screen and (max-width: 767px) {
    body {
        font-size: 16px !important;
    }
    
    p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    .product-item .title {
        font-size: 16px !important;
    }

    .product-details-title {
        font-size: 22px !important;
    }

    /* Larger Buttons for Mobile */
    .btn, .product-action-btn, .header-action-btn, .footer-area a {
        min-height: 48px; /* Standard for mobile touch targets */
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /* Spacing for mobile readability */
    .section-space {
        padding: 40px 0 !important;
    }
    
    .row > * {
        margin-bottom: 15px;
    }

    /* Sticky WhatsApp Adjustments for Mobile */
    .sticky-whatsapp {
        bottom: 20px;
        left: 20px;
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    /* Ensure no horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
    }
}

/* Accessibility */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Scroll improvements */
html {
    scroll-behavior: smooth;
}
