/* ==========================================================
   LEVNELUXFERY.CZ - VLASTNÍ ÚPRAVY CSS
   Autor: Edita
   Začátek úprav: 24. 7. 2026
========================================================== */


/* ==========================================================
   01. VÝPIS PRODUKTŮ
========================================================== */


/* ==========================================================
01.001
Mobil – 1 produkt na řádek
========================================================== */

@media (max-width: 767px) {

    .products .product {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

}


/* ==========================================================
01.002
Mobil – zachovat kulaté slevové kolečko
========================================================== */

@media (min-width:321px) and (max-width:767px){

    .columns-mobile-2 .products-block > div .flags-extra{
        width:75px !important;
        min-width:75px !important;
        max-width:75px !important;
    }

    .columns-mobile-2 .products-block > div .flags-extra .flag{
        width:75px !important;
        min-width:75px !important;
        max-width:75px !important;
        height:75px !important;

        display:flex !important;
        flex-direction:column !important;
        justify-content:center !important;
        align-items:center !important;

        border-radius:50% !important;

        margin:0 !important;
        padding:0 !important;
        overflow:hidden !important;
    }

}