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

.js-header-card{

display:flex;

align-items:center;

gap:30px;

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

margin-bottom:30px;

}

.js-avatar img{

border-radius:50%;

border:5px solid #f1f1f1;

}

.js-user-info{

flex:1;

}

.js-user-info h2{

margin:0;

font-size:30px;

font-weight:700;

}

.js-user-info p{

margin:8px 0;

color:#666;

}

.js-badge{

background:#FFD700;

padding:5px 12px;

font-size:13px;

border-radius:30px;

margin-left:12px;

}

.progress-bar{

height:10px;

background:#ececec;

border-radius:30px;

overflow:hidden;

margin-top:15px;

margin-bottom:10px;

}

.progress-bar span{

display:block;

height:100%;

background:#2ecc71;

}

.profile-buttons{

margin-top:20px;

}

.profile-buttons a{

display:inline-block;

padding:12px 22px;

border-radius:8px;

text-decoration:none;

margin-right:10px;

font-weight:600;

}

.edit-profile{

background:#0d6efd;

color:#fff;

}

.logout{

background:#dc3545;

color:#fff;

}

.js-dashboard-layout{

display:grid;

grid-template-columns:300px 1fr;

gap:30px;

align-items:start;

}

@media(max-width:992px){

.js-dashboard-layout{

grid-template-columns:1fr;

}

}

/* ===========================
STATISTICS
=========================== */

.js-stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

margin:30px 0;

}

.js-stat-card{

background:#fff;

padding:25px;

border-radius:18px;

text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.js-stat-card:hover{

transform:translateY(-6px);

}

.stat-icon{

font-size:34px;

margin-bottom:10px;

}

.stat-number{

font-size:32px;

font-weight:700;

}

.stat-title{

margin-top:8px;

color:#777;

}

@media(max-width:992px){

.js-stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.js-stats-grid{

grid-template-columns:1fr;

}

}

/*======================================
ORDER PROGRESS
======================================*/

.js-order-progress{

margin-top:35px;

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.js-order-progress h3{

margin-bottom:25px;

font-size:24px;

font-weight:700;

}

.js-order-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

}

.order-box{

padding:25px;

border-radius:15px;

text-align:center;

color:#fff;

}

.pending{

background:#ff9800;

}

.processing{

background:#2196f3;

}

.completed{

background:#4caf50;

}

.cancelled{

background:#e53935;

}

.count{

display:block;

font-size:34px;

font-weight:700;

margin-bottom:8px;

}

/*=========================================
SHIPMENT TRACKING
=========================================*/

.js-shipment-card{

background:#fff;

margin-top:30px;

padding:30px;

border-radius:20px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.shipment-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:25px;

}

.shipment-header h3{

margin:0;

font-size:24px;

}

.shipment-header a{

text-decoration:none;

font-weight:600;

}

.shipment-empty{

text-align:center;

padding:40px 20px;

}

.shipment-icon{

font-size:64px;

margin-bottom:15px;

}

.shipment-empty h4{

margin-bottom:10px;

}

.shipment-empty p{

color:#777;

}

/*==========================================
RECENT ORDERS
==========================================*/

.js-orders-card{

background:#fff;

margin-top:30px;

padding:30px;

border-radius:20px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.orders-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:20px;

}

.orders-header h3{

margin:0;

font-size:24px;

}

.order-row{

display:grid;

grid-template-columns:1fr 1fr 1fr auto;

gap:15px;

padding:18px 0;

border-bottom:1px solid #eee;

align-items:center;

}

.order-row:last-child{

border-bottom:none;

}

.order-row a{

color:#d71920;

font-weight:600;

text-decoration:none;

}

/*==========================================
SELLER DASHBOARD
==========================================*/

.js-seller-card{

margin-top:30px;

background:linear-gradient(135deg,#d71920,#ff5b5b);

color:#fff;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 12px 30px rgba(215,25,32,.25);

}

.seller-icon{

font-size:60px;

margin-bottom:15px;

}

.js-seller-card h3{

color:#fff;

margin-bottom:12px;

}

.js-seller-card p{

opacity:.95;

margin-bottom:25px;

}

.seller-button{

display:inline-block;

background:#fff;

color:#d71920;

padding:12px 28px;

border-radius:10px;

font-weight:700;

text-decoration:none;

transition:.3s;

}

.seller-button:hover{

background:#f5f5f5;

color:#b31217;

}