/* Mobile featured-products slider: two cards per view, stepped auto-advance.
   Only styles the track that featuredSlider.js creates on phones; without JS,
   or on >=768px screens, the default grid markup is untouched. */
@media (max-width: 767px) {
    .js-featured-slider.featured-slider-active {
        overflow: hidden;
        touch-action: pan-y;
    }

    .featured-slider-track {
        display: flex;
        flex-wrap: nowrap;
        will-change: transform;
    }

    .featured-slider-track > * {
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%;
        float: none;
    }
}
