/* LASTO — Featured Products dark-mode outer section cleanup
   Removes only the outer section box/background in dark mode.
   Product cards and all light-mode styling remain unchanged. */
html[data-site-theme="dark"] #featured-products.featured-products{
    background:transparent!important;
    border-color:transparent!important;
    box-shadow:none!important;
}

/* Prevent any inherited outer section surface from reappearing on mobile. */
@media (max-width:760px){
    html[data-site-theme="dark"] main > #featured-products.featured-products{
        background:transparent!important;
        border:0!important;
        box-shadow:none!important;
    }
}
