/* Make hero span full width when right slider banners are removed */
    .home-section-wrap .home-section-inner {
        display: block !important;               /* cancel any grid/2-column layout */
        grid-template-columns: none !important;  /* if it was a CSS grid */
    }
    .home-section-wrap .home-slider-wrap {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 0 100% !important;               /* if it was flex */
    }
    
/* Featured Categories: keep header stacked and centered on all widths */
    .featured-categories-header {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .featured-categories-header .featured-categories-text {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin-bottom: 16px !important;
    }
    .featured-categories-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 8px;
    }
/* Featured Categories: center the tabs list */
    .featured-categories-header .featured-categories-tabs {
        margin-left: auto !important;   /* override theme */
        margin-right: auto !important;  /* pair with auto to center */
        justify-content: center !important;
        display: flex !important;       /* ensure flex for centering */
        flex-wrap: wrap;                /* allow wrapping on smaller widths */
        gap: 8px;
    }