/* Mobile Form Fixes for Touch of Perception */
@media (max-width: 768px) {
    /* Email subscription form fixes */
    input[type="email"],
    input[name*="email"],
    input[placeholder*="Email"],
    input[placeholder*="email"],
    .mc4wp-form input[type="email"],
    .mailchimp-form input[type="email"] {
        width: 100% !important;
        max-width: calc(100% - 20px) !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
        padding: 12px 15px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    /* Form containers */
    .mc4wp-form,
    .mailchimp-form,
    form[action*="mailchimp"],
    form[action*="subscribe"] {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }
    
    /* Footer form specific */
    .l-footer form,
    .l-footer .mc4wp-form {
        width: 100% !important;
        padding: 0 15px !important;
    }
    
    .l-footer input[type="email"] {
        width: calc(100% - 30px) !important;
        max-width: calc(100% - 30px) !important;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    input[type="email"] {
        width: calc(100% - 10px) !important;
        margin: 0 5px !important;
    }
    
    .l-footer {
        padding: 0 10px !important;
    }
    
    .l-footer form {
        padding: 0 5px !important;
    }
}
