/* =====================================================
   MOBILE
===================================================== */

@media (max-width:1024px){

    /* =====================================================
       HEADER
    ===================================================== */

    /* Piilota slogan */
    .pickup-slogan{
        display:none !important;
    }

    /* Piilota kuvakaruselli */
    .slideshow-container{
        display:none !important;
    }

    /* Piilota logo mobiilissa */
    .wp-block-column:first-child{
        display:none !important;
    }

    /* Headerin paddingit */
    .wc-blocks-pattern-header,
    .wp-block-group.alignfull{
        padding-top:12px !important;
        padding-bottom:12px !important;
    }

    /* Poista WordPressin root padding */
    .wp-site-blocks{
        --wp--style--root--padding-left:0;
        --wp--style--root--padding-right:0;
    }

    /* =====================================================
       NAVIGATION
    ===================================================== */

    /* Piilota navigaation tekstit */
    .nav-text{
        display:none !important;
    }

    /* Ikonien koko */
    .nav-icon{
        width:30px !important;
        height:30px !important;
    }

    /* Navigaation asettelu */
    .wp-block-column.has-small-font-size{
        display:flex !important;
justify-content:flex-end !important;    }

    .paja-nav{
        justify-content:center !important;
        gap:18px !important;
    }

    /* =====================================================
       FLOATING MINI CART
    ===================================================== */

    .wc-block-mini-cart{

        position:fixed !important;

        right:18px;
        bottom:18px;

        z-index:99999;

        width:56px;
        height:56px;

        display:flex;
        align-items:center;
        justify-content:center;

        background:#111;
        border:2px solid #ffeb3b;
        border-radius:50%;

        box-shadow:0 6px 18px rgba(0,0,0,.45);

        transition:transform .2s ease;

    }

    .wc-block-mini-cart:hover{
        transform:scale(1.08);
    }

    /* =====================================================
       BUILDER
    ===================================================== */

    /* Piilota builderin progress bar */
    #build-progress{
        display:none !important;
    }

    /* Siirrä builder hieman alemmas */
    #pickup-configurator{
        padding-top:20px;
    }

}

@media (max-width:1024px){

    .floating-home{

        position:fixed;

        left:18px;
        bottom:18px;

        width:56px;
        height:56px;

        display:flex;
        align-items:center;
        justify-content:center;

        background:#111;
        border:2px solid #ffeb3b;
        border-radius:50%;

        z-index:99999;

        box-shadow:0 6px 18px rgba(0,0,0,.45);

    }

    .floating-home img{

        width:60px;
        height:auto;

    }

}

@media (min-width:1025px){

    .floating-home{
        display:none;
    }

}

