body{
    background:#f6f7fb;
    font-family:Arial, sans-serif;
}

.topbar{
    background:#0f1724;
    padding:14px 0;
    color:white;
}

.logo{
    font-size:30px;
    font-weight:800;
}

.logo span{
    color:#ffc107;
}

.marketplace-text{
    font-size:11px;
    letter-spacing:4px;
    font-weight:600;
}

.search-input{
    height:46px;
    border-radius:6px 0 0 6px;
    border:none;
}

.search-btn{
    height:46px;
    min-width:85px;
    border-radius:0 6px 6px 0;
    border:none;
    background:#ffc107;
    font-weight:700;
}

.nav-strip{
    background:#172235;
    color:white;
    padding:10px 0;
}

.nav-strip a{
    color:white;
    text-decoration:none;
    margin-right:24px;
    font-size:14px;
}

.section-box{
    background:white;
    border:1px solid #e6e8ee;
    border-radius:10px;
    padding:18px;
    margin-bottom:18px;
}

.product-card{
    border:1px solid #e6e8ee;
    border-radius:8px;
    background:white;
    overflow:hidden;
    height:100%;
    transition:0.2s;
}

.product-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.product-img{
    width:100%;
    height:170px;
    object-fit:cover;
    background:#f8f8f8;
}

.product-body{
    padding:10px;
}

.price{
    color:#e60000;
    font-weight:700;
}

.dashboard-card{
    background:white;
    border:1px solid #e6e8ee;
    border-radius:10px;
    padding:20px;
}

.seller-layout,.admin-layout{
    display:flex;
    min-height:100vh;
}

.seller-sidebar,.admin-sidebar{
    width:255px;
    background:#0f1724;
    color:white;
    padding:22px;
    position:fixed;
    height:100vh;
}

.seller-sidebar a,.admin-sidebar a{
    display:block;
    color:white;
    text-decoration:none;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.seller-sidebar a:hover,.admin-sidebar a:hover{
    color:#ffc107;
}

.seller-brand,.admin-brand{
    font-size:28px;
    font-weight:800;
}

.seller-brand span,.admin-brand span{
    color:#ffc107;
}

.seller-content,.admin-content{
    margin-left:255px;
    width:calc(100% - 255px);
    padding:25px;
}

.seller-topbar,.admin-topbar{
    background:white;
    padding:18px;
    border-radius:10px;
    border:1px solid #e6e8ee;
    margin-bottom:20px;
}

.product-thumb{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:6px;
}
