/* ==============================================
   Responsive Queries for Occasor Footer
   Handles layout changes (Stacking) for mobile devices.
   Visual styles are inherited from footer.css
   ============================================== */

@media only screen and (max-width: 767px) {
    /* --- Stacked Layout for Footer Widgets --- */
    .footer-top .widget-section .row {
        display: block; /* Stack everything vertically */
    }

    /* All Columns Full Width & Spaced */
    .footer-top .col-sm-12, .footer-column {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 20px 15px 0 15px !important; /* Top padding for breathing room */
        margin-bottom: 40px !important; /* Spacing between stacked widgets */
        padding-bottom: 0;
        border-bottom: none;
    }

    /* Remove margin from last item to match bottom */
    .footer-top .col-sm-12:last-child {
        margin-bottom: 0;
    }

    /* Ensure specific padding/margin overrides for widgets */
    .footer-widget {
        text-align: left !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Ensure social box has spacing on mobile if needed */
    .social-box {
        margin-bottom: 20px;
    }
}
