/* ============================================================
   SURYAPOWER - Main Stylesheet
   Design: Industrial Solar / Electric - Orange & Dark theme
   ============================================================ */

:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-light: #fed7aa;
  --secondary: #1e293b;
  --dark: #0f172a;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: all .2s; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* CONTAINER */
.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

/* TOP BAR */
.topbar { background: var(--dark); color: #94a3b8; font-size: .8rem; padding: 6px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.topbar span { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: 16px; }
.topbar-right a { color: #94a3b8; }
.topbar-right a:hover { color: var(--primary); }

/* NAVBAR */
.navbar { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 1000; }
.nav-inner { display: flex; align-items: center; gap: 20px; padding: 14px 16px; }

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-icon { width: 38px; height: 38px; background: linear-gradient(135deg,#f97316,#ea580c); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; }
.brand-text { font-family: 'Sora', sans-serif; font-size: 1.25rem; color: var(--dark); letter-spacing: -.5px; }
.brand-text strong { color: var(--primary); }

.search-bar { flex: 1; max-width: 600px; }
.search-bar form { display: flex; background: var(--bg); border: 2px solid var(--border); border-radius: 8px; overflow: hidden; transition: border-color .2s; }
.search-bar form:focus-within { border-color: var(--primary); }
.search-bar input { flex: 1; border: none; background: transparent; padding: 10px 14px; font-family: inherit; font-size: .9rem; outline: none; }
.search-bar button { background: var(--primary); color: #fff; border: none; padding: 10px 18px; cursor: pointer; font-size: 1rem; transition: background .2s; }
.search-bar button:hover { background: var(--primary-dark); }

.nav-actions { display: flex; gap: 8px; flex-shrink: 0; }
.nav-btn { position: relative; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 8px; color: var(--text-muted); font-size: 1.1rem; transition: all .2s; }
.nav-btn:hover { background: var(--bg); color: var(--primary); }
.badge { position: absolute; top: -4px; right: -4px; background: var(--danger); color: #fff; border-radius: 999px; font-size: .65rem; font-weight: 700; min-width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

.cat-nav { background: var(--secondary); overflow-x: auto; }
.cat-nav .container { display: flex; gap: 0; }
.cat-nav a { color: #cbd5e1; font-size: .82rem; font-weight: 500; padding: 10px 14px; white-space: nowrap; border-bottom: 2px solid transparent; transition: all .2s; }
.cat-nav a:hover, .cat-nav a.active { color: var(--primary); border-bottom-color: var(--primary); background: rgba(249,115,22,.08); }

/* HERO BANNER */
.hero { background: linear-gradient(135deg, var(--dark) 0%, #1e293b 50%, #0f172a 100%); padding: 60px 0; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 70%); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,.15); color: var(--primary); border: 1px solid rgba(249,115,22,.3); border-radius: 999px; padding: 6px 14px; font-size: .8rem; font-weight: 600; margin-bottom: 16px; }
.hero h1 { font-family: 'Sora', sans-serif; font-size: 2.6rem; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.hero h1 span { color: var(--primary); }
.hero p { color: #94a3b8; font-size: 1rem; margin-bottom: 28px; max-width: 420px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-family: inherit; font-size: .9rem; font-weight: 600; cursor: pointer; border: none; transition: all .2s; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,.35); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.3); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sm { padding: 8px 16px; font-size: .82rem; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #1e293b; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #dc2626; }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #16a34a; }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

.hero-stats { display: flex; gap: 24px; margin-top: 32px; }
.stat { text-align: center; }
.stat-num { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: .75rem; color: #64748b; }

.hero-image { display: flex; align-items: center; justify-content: center; }
.hero-card-stack { position: relative; }
.hero-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 20px; backdrop-filter: blur(10px); }

/* SECTION */
.section { padding: 52px 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.section-title { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.section-title span { color: var(--primary); }
.section-link { color: var(--primary); font-size: .88rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.section-link:hover { text-decoration: underline; }

/* CATEGORY CARDS */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
.cat-card { background: #fff; border: 2px solid var(--border); border-radius: var(--radius); padding: 18px 12px; text-align: center; transition: all .2s; cursor: pointer; }
.cat-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.cat-card .icon { width: 44px; height: 44px; background: linear-gradient(135deg, #fff7ed, #fed7aa); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; margin: 0 auto 8px; }
.cat-card .name { font-size: .78rem; font-weight: 600; color: var(--text); line-height: 1.3; }

/* PRODUCT GRID */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .2s; position: relative; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--primary); }
.product-img { position: relative; aspect-ratio: 1; overflow: hidden; background: #f8fafc; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge { position: absolute; top: 10px; left: 10px; background: var(--danger); color: #fff; font-size: .7rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.product-badge.new { background: var(--success); }
.product-wish { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; background: rgba(255,255,255,.9); border-radius: 999px; display: flex; align-items: center; justify-content: center; color: #cbd5e1; font-size: .85rem; cursor: pointer; transition: all .2s; }
.product-wish:hover, .product-wish.active { color: var(--danger); }
.product-body { padding: 12px; }
.product-name { font-size: .85rem; font-weight: 600; color: var(--text); line-height: 1.35; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-brand { font-size: .75rem; color: var(--text-muted); margin-bottom: 8px; }
.product-price { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.product-price-before { font-size: .75rem; color: var(--text-muted); text-decoration: line-through; }
.product-meta { display: flex; justify-content: space-between; align-items: center; font-size: .72rem; color: var(--text-muted); margin-top: 8px; }
.product-rating { color: #f59e0b; font-weight: 600; }
.product-cart-btn { display: block; width: 100%; padding: 8px; background: var(--primary); color: #fff; text-align: center; font-size: .82rem; font-weight: 600; border: none; cursor: pointer; transition: background .2s; margin-top: 10px; border-radius: 6px; }
.product-cart-btn:hover { background: var(--primary-dark); }

/* PRODUCT DETAIL */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.product-gallery { position: sticky; top: 80px; }
.main-img { aspect-ratio: 1; border-radius: 12px; overflow: hidden; border: 2px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.main-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.thumb-list { display: flex; gap: 8px; flex-wrap: wrap; }
.thumb { width: 70px; height: 70px; border: 2px solid var(--border); border-radius: 8px; overflow: hidden; cursor: pointer; transition: border-color .2s; }
.thumb:hover, .thumb.active { border-color: var(--primary); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info h1 { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: .88rem; }
.stars { color: #f59e0b; }
.price-section { background: linear-gradient(135deg, #fff7ed, #fff); border: 2px solid #fed7aa; border-radius: 10px; padding: 16px; margin-bottom: 20px; }
.price-main { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; color: var(--primary); }
.price-old { font-size: .9rem; color: var(--text-muted); text-decoration: line-through; margin-top: 4px; }
.discount-badge { display: inline-block; background: var(--danger); color: #fff; font-size: .75rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-left: 10px; }
.qty-section { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.qty-label { font-size: .9rem; font-weight: 600; color: var(--text-muted); }
.qty-control { display: flex; align-items: center; gap: 0; border: 2px solid var(--border); border-radius: 8px; overflow: hidden; }
.qty-btn { width: 38px; height: 38px; background: #f8fafc; border: none; cursor: pointer; font-size: 1.1rem; color: var(--text); transition: background .2s; }
.qty-btn:hover { background: #e2e8f0; }
.qty-input { width: 60px; height: 38px; border: none; text-align: center; font-family: inherit; font-size: .95rem; font-weight: 600; outline: none; }
.action-btns { display: flex; gap: 12px; margin-bottom: 24px; }

/* SPEC TABLE */
.spec-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 10px 12px; }
.spec-table td:first-child { font-weight: 600; color: var(--text-muted); width: 40%; background: #f8fafc; }

/* CART */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { background: var(--bg); padding: 12px 16px; text-align: left; font-size: .82rem; font-weight: 600; color: var(--text-muted); border-bottom: 2px solid var(--border); }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-info { display: flex; align-items: center; gap: 14px; }
.cart-item-img { width: 70px; height: 70px; border-radius: 8px; object-fit: cover; border: 1px solid var(--border); }
.cart-item-name { font-size: .88rem; font-weight: 600; margin-bottom: 4px; }
.cart-item-sku { font-size: .75rem; color: var(--text-muted); }

/* ORDER SUMMARY */
.order-summary { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; position: sticky; top: 80px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: .9rem; border-bottom: 1px solid var(--border); }
.summary-row:last-child { border-bottom: none; }
.summary-total { font-size: 1.1rem; font-weight: 700; color: var(--primary); }

/* FORMS */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control { width: 100%; padding: 10px 14px; border: 2px solid var(--border); border-radius: 8px; font-family: inherit; font-size: .9rem; color: var(--text); background: #fff; transition: border-color .2s; outline: none; }
.form-control:focus { border-color: var(--primary); }
.form-control.is-invalid { border-color: var(--danger); }
.form-text { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }

/* CARD */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.card-header { padding: 18px 20px; border-bottom: 1px solid var(--border); }
.card-title { font-size: 1rem; font-weight: 700; color: var(--dark); }
.card-body { padding: 20px; }

/* ALERTS */
.alert { padding: 14px 18px; border-radius: 8px; font-size: .88rem; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; position: relative; }
.alert-success { background: #dcfce7; border: 1px solid #86efac; color: #15803d; }
.alert-danger { background: #fee2e2; border: 1px solid #fca5a5; color: #dc2626; }
.alert-warning { background: #fef9c3; border: 1px solid #fde047; color: #854d0e; }
.alert-info { background: #dbeafe; border: 1px solid #93c5fd; color: #1d4ed8; }
.alert-close { position: absolute; right: 12px; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: inherit; opacity: .7; }
.alert-close:hover { opacity: 1; }

/* TABLE */
.table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.table th { background: var(--bg); padding: 10px 14px; text-align: left; font-weight: 600; color: var(--text-muted); border-bottom: 2px solid var(--border); }
.table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.table tbody tr:hover { background: #f8fafc; }
.table-responsive { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }

/* STATUS BADGES */
.status { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 999px; font-size: .75rem; font-weight: 600; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-processing { background: #dbeafe; color: #1e40af; }
.status-shipped { background: #ede9fe; color: #6d28d9; }
.status-delivered { background: #d1fae5; color: #065f46; }
.status-completed { background: #dcfce7; color: #15803d; }
.status-cancelled { background: #fee2e2; color: #991b1b; }
.status-paid { background: #dcfce7; color: #15803d; }
.status-unpaid { background: #fef9c3; color: #854d0e; }

/* PAGINATION */
.pagination { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; justify-content: center; margin-top: 32px; }
.page-btn { min-width: 36px; height: 36px; padding: 0 10px; border: 2px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all .2s; background: #fff; }
.page-btn:hover, .page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* BREADCRUMB */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--border); }

/* UTILITY */
.mt-1 { margin-top: 6px; } .mt-2 { margin-top: 12px; } .mt-3 { margin-top: 20px; } .mt-4 { margin-top: 28px; }
.mb-1 { margin-bottom: 6px; } .mb-2 { margin-bottom: 12px; } .mb-3 { margin-bottom: 20px; } .mb-4 { margin-bottom: 28px; }
.text-center { text-align: center; } .text-right { text-align: right; }
.text-primary { color: var(--primary); } .text-muted { color: var(--text-muted); } .text-success { color: var(--success); } .text-danger { color: var(--danger); }
.fw-bold { font-weight: 700; } .fw-600 { font-weight: 600; }
.d-flex { display: flex; } .align-center { align-items: center; } .gap-2 { gap: 12px; }
.hidden { display: none; }
.text-sm { font-size: .82rem; }
.w-100 { width: 100%; }

/* FOOTER */
.footer { background: var(--dark); color: #94a3b8; margin-top: 60px; }
.footer-top { padding: 48px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 32px; }
.footer-col h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 16px; }
.footer-col p { font-size: .85rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a { font-size: .85rem; color: #94a3b8; display: block; padding: 4px 0; }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #94a3b8; transition: all .2s; }
.social-links a:hover { background: var(--primary); color: #fff; }
.pay-badge { background: rgba(255,255,255,.1); color: #e2e8f0; font-size: .72rem; font-weight: 700; padding: 4px 8px; border-radius: 4px; margin: 2px; display: inline-block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; text-align: center; font-size: .82rem; }

/* SELLER SIDEBAR */
.seller-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; min-height: calc(100vh - 200px); }
.seller-sidebar { background: var(--dark); border-radius: var(--radius); padding: 20px; height: fit-content; position: sticky; top: 80px; }
.sidebar-logo { display: flex; align-items: center; gap: 10px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 20px; }
.sidebar-logo span { color: #fff; font-weight: 700; font-size: .95rem; }
.sidebar-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; color: #94a3b8; font-size: .88rem; font-weight: 500; margin-bottom: 4px; transition: all .2s; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(249,115,22,.15); color: var(--primary); }
.sidebar-nav a i { width: 18px; text-align: center; }
.sidebar-section { font-size: .72rem; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 1px; padding: 14px 12px 6px; }

/* STAT CARDS */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--primary); }
.stat-card .icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 12px; }
.stat-card .value { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.stat-card .label { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }

/* RESI / PRINT */
@media print {
  .no-print { display: none !important; }
  body { background: #fff; }
  .resi-box { border: 2px solid #000; }
}
.resi-box { max-width: 400px; border: 2px dashed #333; padding: 20px; font-family: 'Courier New', monospace; font-size: .82rem; }
.resi-header { text-align: center; border-bottom: 2px solid #333; padding-bottom: 12px; margin-bottom: 12px; }
.resi-row { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px dotted #ccc; }
.barcode-placeholder { background: #000; color: #fff; text-align: center; padding: 8px; font-size: .7rem; letter-spacing: 3px; margin: 12px 0; }

/* EMPTY STATE */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state i { font-size: 4rem; color: var(--border); margin-bottom: 16px; }
.empty-state h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); font-size: .9rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .seller-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .nav-inner { gap: 10px; }
  .cat-nav a { padding: 8px 10px; font-size: .78rem; }
  .form-row { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== SELLER DASHBOARD EXTRAS ===== */
.seller-topbar { display:flex; justify-content:space-between; align-items:center; margin-bottom:24px; }
.seller-topbar h1 { font-size:1.3rem; font-weight:700; margin:0; display:flex; align-items:center; gap:10px; }
.seller-card { background:#fff; border-radius:12px; padding:24px; box-shadow:0 1px 4px rgba(0,0,0,.07); margin-bottom:20px; }
.seller-main { padding:24px; flex:1; overflow-x:hidden; }
.data-table { width:100%; border-collapse:collapse; font-size:14px; }
.data-table th { background:#f8f9fa; padding:10px 12px; text-align:left; font-weight:600; border-bottom:2px solid #eee; }
.data-table td { padding:10px 12px; border-bottom:1px solid #f0f0f0; vertical-align:middle; }
.data-table tbody tr:hover { background:#fafafa; }
.btn-icon { padding:6px 8px; border-radius:6px; background:#f5f5f5; color:#555; text-decoration:none; display:inline-flex; align-items:center; }
.btn-icon:hover { background:#eee; }
.pagination { display:flex; gap:6px; flex-wrap:wrap; }
.pagination a { padding:6px 12px; border:1px solid #ddd; border-radius:6px; color:#555; text-decoration:none; font-size:13px; }
.pagination a.active, .pagination a:hover { background:var(--primary); color:#fff; border-color:var(--primary); }
.nav-badge { background:#ef4444; color:#fff; border-radius:20px; padding:1px 7px; font-size:11px; margin-left:auto; }
.table-responsive { overflow-x:auto; }
.alert-success { background:#d1fae5; color:#065f46; border:1px solid #6ee7b7; padding:12px 16px; border-radius:8px; margin-bottom:16px; }
.seller-sidebar { background:#0f172a; width:240px; min-height:100vh; flex-shrink:0; }
.seller-nav { padding:12px 10px; }
.seller-nav-link { display:flex; align-items:center; gap:10px; padding:9px 12px; border-radius:8px; color:#94a3b8; font-size:.85rem; font-weight:500; margin-bottom:2px; transition:all .2s; text-decoration:none; }
.seller-nav-link:hover, .seller-nav-link.active { background:rgba(249,115,22,.15); color:#f97316; }
.seller-nav-link i { width:16px; text-align:center; }
