/* Header Spacing Fix - Fixed Header with Scrollable Content */

/* Mobile - no fixed header */
body {
    padding-top: 0;
    margin: 0;
}



/* Desktop - fixed header with scrollable content */
@media (min-width: 769px) {

    /* Main content area should start below fixed header */
    .mobile_div {
        /* position: relative; */
        overflow: visible !important;
    }

    /* Category nav scrolls with content */
    .desktop-category-nav {
        margin-top: 0;
        margin-bottom: 0;
        position: relative;
        background: white;
        overflow: visible !important;
    }

    /* Slider comes right after categories */
    .slider-container {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        position: relative !important;
        clear: both;
        display: block !important;
        overflow: visible !important;
    }

    /* Products and other content */
    .product_main_div {
        margin-top: 20px !important;
        position: relative;
    }

    /* Ensure top_div (mobile categories) is hidden */
    .top_div {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .mobile_div {

        /* Larger header space */
    }
}