/*
==================================================
WOWOOOCART DOKAN
==================================================
*/

/* ===========================
STORE PAGE
=========================== */

.wow-vendor-store{

    padding:60px 0;

    background:#f8fafc;

}

.wow-vendor-header{

    background:#ffffff;

    border-radius:14px;

    padding:30px;

    margin-bottom:30px;

    box-shadow:0 5px 20px rgba(0,0,0,.06);

}

.wow-vendor-content{

    display:grid;

    grid-template-columns:1fr;

    gap:30px;

}

/* ===========================
DASHBOARD
=========================== */

.wow-vendor-dashboard{

    padding:60px 0;

    background:#f8fafc;

}

.wow-dashboard-wrapper{

    display:grid;

    grid-template-columns:260px 1fr;

    gap:30px;

}

.wow-dashboard-sidebar{

    background:#ffffff;

    border-radius:14px;

    padding:25px;

    box-shadow:0 5px 20px rgba(0,0,0,.06);

}

.wow-dashboard-content{

    background:#ffffff;

    border-radius:14px;

    padding:30px;

    box-shadow:0 5px 20px rgba(0,0,0,.06);

}
/* ===========================
VENDOR REGISTER
=========================== */

.wow-vendor-register{

    padding:60px 0;

    background:#f8fafc;

}

.wow-register-wrapper,

.wow-vendor-product-wrapper{

    background:#ffffff;

    border-radius:14px;

    padding:30px;

    box-shadow:0 5px 20px rgba(0,0,0,.06);

}

/* ===========================
RESPONSIVE
=========================== */

@media (max-width:992px){

    .wow-dashboard-wrapper{

        grid-template-columns:1fr;

    }

}