/*
==================================================
WOWOOOCART RESPONSIVE
==================================================
*/

/* ===========================
TABLET
=========================== */

@media (max-width:992px){

    .wow-container{

        width:95%;
        margin:0 auto;

    }

    .wow-header-middle{

        flex-wrap:wrap;
        gap:15px;

    }

    .wow-navigation{

        overflow-x:auto;

    }

    .wow-shop-content{

        grid-template-columns:repeat(2,1fr);

    }

}

/* ===========================
MOBILE
=========================== */

@media (max-width:768px){

    .wow-topbar{

        display:none;

    }

    .wow-header-middle{

        display:none;

    }

    .wow-mobile-header{

        display:block;

    }

    .wow-shop-content{

        grid-template-columns:1fr;

        gap:20px;

    }

}
/* ===========================
SMALL MOBILE
=========================== */

@media (max-width:480px){

    .wow-container{

        width:94%;

    }

    .wow-page-title{

        font-size:26px;

    }

    .wow-product-card{

        border-radius:10px;

    }

    .wow-product-image img{

        height:180px;

    }

    .wow-product-buttons{

        flex-direction:column;

    }

    .wow-buy-now,
    .wow-product-buttons .button{

        width:100%;

    }

}