

/* Start:/local/templates/marketplace/template_styles.css?17845468431548*/
/* ==========================
   Core
   ========================== */

@import url("/local/templates/marketplace/assets/css/core/variables.css");
@import url("/local/templates/marketplace/assets/css/core/reset.css");
@import url("/local/templates/marketplace/assets/css/core/layout.css");
@import url("/local/templates/marketplace/assets/css/core/base.css");
@import url("/local/templates/marketplace/assets/css/core/buttons.css");
@import url("/local/templates/marketplace/assets/css/core/forms.css");

/* ==========================
   Layout
   ========================== */

@import url("/local/templates/marketplace/assets/css/layout/header.css");
@import url("/local/templates/marketplace/assets/css/layout/footer.css");

/* ==========================
   Components
   ========================== */

@import url("/local/templates/marketplace/assets/css/components/accounts.css");
@import url("/local/templates/marketplace/assets/css/components/alerts.css");
@import url("/local/templates/marketplace/assets/css/components/badges.css");
@import url("/local/templates/marketplace/assets/css/components/cards.css");
@import url("/local/templates/marketplace/assets/css/components/cart.css");
@import url("/local/templates/marketplace/assets/css/components/catalog.css");
@import url("/local/templates/marketplace/assets/css/components/checkout.css");
@import url("/local/templates/marketplace/assets/css/components/dashboard.css");
@import url("/local/templates/marketplace/assets/css/components/filter.css");
@import url("/local/templates/marketplace/assets/css/components/moderation.css");
@import url("/local/templates/marketplace/assets/css/components/pagination.css");
@import url("/local/templates/marketplace/assets/css/components/product-card.css");
@import url("/local/templates/marketplace/assets/css/components/product.css");
@import url("/local/templates/marketplace/assets/css/components/responsive.css");
@import url("/local/templates/marketplace/assets/css/components/seller-card.css");
@import url("/local/templates/marketplace/assets/css/components/tables.css");

/* ==========================
   Pages
   ========================== */

@import url("/local/templates/marketplace/assets/css/pages/about.css");
@import url("/local/templates/marketplace/assets/css/pages/product.css");
/* End */


/* Start:/local/templates/marketplace/assets/css/seller.css?17842840514943*/
.seller-layout{
    display:flex;
    gap:30px;
    margin:30px 0 50px;
}

.seller-sidebar{
    width:270px;
    flex-shrink:0;
    background:#fff;
    border-radius:20px;
    padding:24px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    height:fit-content;
}

.seller-sidebar__title{
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    color:#1c1c1c;
}

.seller-menu{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.seller-menu a{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#333;
    padding:14px 18px;
    border-radius:14px;
    transition:.2s;
    font-weight:500;
}

.seller-menu a:hover{
    background:#f5f7fa;
}

.seller-menu a.active{
    background:#005BFF;
    color:#fff;
}

.seller-content{
    flex:1;
}

.seller-page-title{
    font-size:34px;
    margin-bottom:25px;
    font-weight:700;
}

.seller-box{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    margin-bottom:30px;
}

.seller-welcome{
    background:linear-gradient(135deg,#005BFF,#007dff);
    color:#fff;
    border-radius:20px;
    padding:35px;
    margin-bottom:30px;
}

.seller-welcome h2{
    margin:0 0 15px;
}

.seller-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:30px;
}

.seller-card{
    background:#fff;
    border-radius:18px;
    padding:28px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.seller-card__value{
    font-size:34px;
    font-weight:700;
    margin-bottom:8px;
}

.seller-card__title{
    color:#666;
}

.seller-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.seller-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:12px;
    background:#005BFF;
    color:#fff;
    text-decoration:none;
    border:none;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.2s;
}

.seller-button:hover{
    background:#0049cc;
    color:#fff;
}

.seller-button-light{
    background:#eef3ff;
    color:#005BFF;
}

.seller-button-light:hover{
    background:#dce7ff;
}

.seller-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.seller-table{
    width:100%;
    border-collapse:collapse;
}

.seller-table th{
    background:#f8f9fb;
    text-align:left;
    padding:16px;
    font-size:14px;
}

.seller-table td{
    padding:18px 16px;
    border-top:1px solid #ececec;
}

.seller-empty{
    text-align:center;
    padding:60px !important;
    color:#666;
}

.seller-form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.seller-form-group{
    margin-bottom:22px;
}

.seller-form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.seller-input{
    width:100%;
    height:48px;
    border:1px solid #dcdcdc;
    border-radius:12px;
    padding:0 16px;
    font-size:15px;
    box-sizing:border-box;
}

.seller-textarea{
    width:100%;
    border:1px solid #dcdcdc;
    border-radius:12px;
    padding:15px;
    resize:vertical;
    font-size:15px;
    box-sizing:border-box;
}

.seller-list{
    margin:15px 0;
    padding-left:22px;
}

.seller-list li{
    margin-bottom:12px;
}

@media(max-width:1100px){

    .seller-layout{
        flex-direction:column;
    }

    .seller-sidebar{
        width:100%;
    }

    .seller-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .seller-form-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:700px){

    .seller-stats{
        grid-template-columns:1fr;
    }

    .seller-toolbar{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

}

.seller-page-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.seller-page-title{
    margin:0;
}

.seller-logout-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 22px;
    background:#ef4444;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-weight:600;
    transition:.25s;
}

.seller-logout-button:hover{
    background:#dc2626;
    color:#fff;
}

.seller-box label{
    display:block;
    margin-bottom:20px;
    font-weight:600;
}

.seller-box input,
.seller-box select,
.seller-box textarea{
    display:block;
    width:100%;
    margin-top:8px;
    box-sizing:border-box;
}
.seller-box input,
.seller-box select,
.seller-box textarea{
    width:100%;
    margin-top:8px;
    padding:14px 16px;
    font-size:16px;
    color:#1f2937;

    background:#f8fafc;
    border:1px solid #d1d5db;
    border-radius:12px;

    transition:all .2s ease;
    box-sizing:border-box;

    outline:none;
}
.seller-box label{
    display:block;
    margin-bottom:22px;
    font-size:15px;
    font-weight:600;
    color:#1f2937;
}
/* End */
/* /local/templates/marketplace/template_styles.css?17845468431548 */
/* /local/templates/marketplace/assets/css/seller.css?17842840514943 */
