/* ===== RATHNA LOGO LOADER ===== */
.rathna-loader-overlay {
  position: fixed; inset: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  transition: opacity 0.4s ease;
}
.rathna-loader-overlay.hidden { opacity: 0; pointer-events: none; }
.rathna-loader-ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(46,125,50,0.15);
  border-top-color: #2e7d32;
  border-right-color: #4caf50;
  animation: rathnaSpin 0.9s linear infinite;
  position: absolute;
}
.rathna-loader-logo {
  width: 52px; height: 52px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(46,125,50,0.2);
  box-shadow: 0 4px 16px rgba(46,125,50,0.2);
  animation: rathnaLogoPulse 1.8s ease-in-out infinite;
}
.rathna-loader-wrap { position: relative; width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
.rathna-loader-text {
  font-size: 0.82rem; font-weight: 700;
  color: var(--green-mid);
  letter-spacing: 0.5px;
  animation: rathnaLogoPulse 1.8s ease-in-out infinite;
}
@keyframes rathnaSpin {
  to { transform: rotate(360deg); }
}
@keyframes rathnaLogoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.96); }
}

/* ===== FALLING DOODLES ===== */
.doodles-bg {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.doodle {
  position: absolute; top: -120px;
  opacity: 0;
  animation: doodleFall linear infinite;
  pointer-events: all;
  cursor: pointer;
}
.doodle svg { display: block; }
.doodle-popup {
  position: fixed;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  pointer-events: none;
  z-index: 10000;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(46,125,50,0.4);
  animation: popupAnim 3s ease forwards;
  transform: translate(-50%, -50%);
}
@keyframes popupAnim {
  0%   { opacity: 0; transform: translate(-50%, -60%) scale(0.7); }
  15%  { opacity: 1; transform: translate(-50%, -70%) scale(1.1); }
  30%  { transform: translate(-50%, -75%) scale(1); }
  80%  { opacity: 1; transform: translate(-50%, -80%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -95%) scale(0.9); }
}
@keyframes doodleFall {
  0%   { transform: translateY(0) rotate(0deg);   opacity: 0; }
  5%   { opacity: 0.35; }
  90%  { opacity: 0.25; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}
.doodle:nth-child(1)  { left:3%;   width:28px; animation-duration:18s; animation-delay:0s;   }
.doodle:nth-child(2)  { left:9%;   width:22px; animation-duration:22s; animation-delay:2s;   }
.doodle:nth-child(3)  { left:16%;  width:32px; animation-duration:16s; animation-delay:4s;   }
.doodle:nth-child(4)  { left:23%;  width:20px; animation-duration:21s; animation-delay:1s;   }
.doodle:nth-child(5)  { left:30%;  width:26px; animation-duration:19s; animation-delay:6s;   }
.doodle:nth-child(6)  { left:38%;  width:30px; animation-duration:15s; animation-delay:3s;   }
.doodle:nth-child(7)  { left:45%;  width:24px; animation-duration:24s; animation-delay:5s;   }
.doodle:nth-child(8)  { left:52%;  width:28px; animation-duration:18s; animation-delay:7s;   }
.doodle:nth-child(9)  { left:59%;  width:20px; animation-duration:21s; animation-delay:2.5s; }
.doodle:nth-child(10) { left:66%;  width:34px; animation-duration:16s; animation-delay:8s;   }
.doodle:nth-child(11) { left:73%;  width:22px; animation-duration:25s; animation-delay:9s;   }
.doodle:nth-child(12) { left:80%;  width:28px; animation-duration:19s; animation-delay:10s;  }

/* Inline mini spinner */
.rathna-spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2.5px solid rgba(46,125,50,0.15);
  border-top-color: var(--green-mid);
  animation: rathnaSpin 0.8s linear infinite;
  flex-shrink: 0;
}
.rathna-spinner.sm { width: 14px; height: 14px; border-width: 2px; }
.rathna-spinner.lg { width: 28px; height: 28px; border-width: 3px; }

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: #1a1a2e; background: #f8fafc; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
input, textarea, select { font-family: inherit; }

:root {
  --green: #1b5e20;
  --green-mid: #2e7d32;
  --green-light: #4caf50;
  --green-pale: #e8f5e9;
  --orange: #e65100;
  --orange-light: #f57c00;
  --border: #e5e7eb;
  --muted: #6b7280;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 6%;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: visible;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green-pale); flex-shrink: 0; }
.brand-name { font-size: 1.55rem; font-weight: 900; color: var(--green-mid); display: block; line-height: 1.1; letter-spacing: -0.5px; }
.brand-sub { font-size: 0.62rem; font-weight: 700; color: var(--orange-light); text-transform: uppercase; letter-spacing: 0.8px; display: block; }
.nav-right { display: flex; gap: 10px; align-items: center; margin-left: auto; flex-shrink: 0; }
.nav-seller { display: flex; gap: 10px; align-items: center; font-size: 0.88rem; font-weight: 700; color: var(--green-mid); margin-left: auto; flex-shrink: 0; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  color: #fff; padding: 10px 22px; border-radius: 25px;
  font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(46,125,50,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,125,50,0.4); }
.btn-primary svg { width: 16px; height: 16px; }
.btn-primary.lg { padding: 14px 30px; font-size: 1rem; }
.btn-primary.sm { padding: 7px 16px; font-size: 0.82rem; }
.btn-primary.full { width: 100%; justify-content: center; margin-top: 6px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: var(--green-mid);
  border: 1.5px solid var(--green-light); border-radius: 25px;
  padding: 10px 22px; font-weight: 700; font-size: 0.9rem; cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--green-pale); }
.btn-outline.lg { padding: 14px 30px; font-size: 1rem; }
.btn-outline.sm { padding: 7px 16px; font-size: 0.82rem; }

/* ===== HERO ===== */
.hero {
  min-height: 88vh;
  background: linear-gradient(160deg, #f0fdf4 0%, #fafff5 50%, #fffbf0 100%);
  display: flex; align-items: center; justify-content: space-between;
  padding: 60px 6%; gap: 48px;
}
.hero-content { flex: 1; max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: var(--green-mid); font-size: 0.78rem; font-weight: 800;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1px;
  border: 1px solid rgba(46,125,50,0.15);
}
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  line-height: 1.15; color: #0f172a; margin-bottom: 16px;
}
.hero-content h1 span {
  color: transparent;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  -webkit-background-clip: text; background-clip: text;
}
.hero-content p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.feature-item {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 20px; padding: 6px 14px;
  font-size: 0.82rem; font-weight: 600; color: #0f172a;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 24px; }

/* ===== HERO FLOATING CIRCLE + IMAGE + BADGES ===== */
.hero-circle {
  width: 420px; height: 420px; border-radius: 50%;
  background: conic-gradient(from 180deg, #a5d6a7, #c8e6c9, #81c784, #a5d6a7);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(46,125,50,0.25);
  animation: float 5s ease-in-out infinite;
}
.hero-main-img {
  width: 220px; height: 220px;
  object-fit: contain; border-radius: 50%;
  position: relative; z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(46,125,50,0.25));
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

/* Floating badges */
.badge {
  position: absolute; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px); border-radius: 30px;
  padding: 9px 16px; font-size: 0.76rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 7px; white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.8); z-index: 2;
}
.badge svg { width: 15px; height: 15px; flex-shrink: 0; }
.badge img { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; }
.badge-seller1 { top: 30px;    left: -24px;  color: var(--green-mid); animation: badgePulse 3.5s ease-in-out 0s infinite; }
.badge-seller2 { bottom: 55px; left: -44px;  color: var(--orange-light); animation: badgePulse 3.5s ease-in-out 1.2s infinite; }
.badge-seller3 { top: 30px;    right: -44px; color: #0284c7; animation: badgePulse 3.5s ease-in-out 0.6s infinite; }
.badge-seller4 { bottom: 10px; right: -32px; color: var(--green-mid); animation: badgePulse 3.5s ease-in-out 2.4s infinite; }
@keyframes badgePulse {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.06) translateY(-3px); }
}

/* Mobile badge strip */
.hero-badges-strip {
  display: none;
  gap: 8px; overflow-x: auto; scrollbar-width: none;
  padding: 4px 2px 8px; flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
}
.hero-badges-strip::-webkit-scrollbar { display: none; }
.hero-badges-strip .badge {
  position: static; display: flex;
  font-size: 0.68rem; padding: 5px 10px;
  animation: none; white-space: nowrap; flex-shrink: 0; gap: 5px;
}
.hero-badges-strip .badge svg { width: 13px; height: 13px; }
.hero-badges-strip .badge img { width: 16px; height: 16px; }

.hero-stats { display: flex; gap: 14px; }
.stat-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 16px; padding: 16px 20px; text-align: center;
  box-shadow: var(--shadow);
}
.stat-num { font-size: 1.6rem; font-weight: 900; color: var(--green-mid); }
.stat-label { font-size: 0.72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

/* ===== FORM SECTION ===== */
.form-section {
  min-height: 100vh; padding: 40px 6%;
  background: linear-gradient(160deg, #f0fdf4, #fafff5);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 48px;
}
.form-card {
  background: #fff; border-radius: 24px;
  width: 100%; max-width: 680px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  padding: 36px 40px;
  animation: slideUp 0.4s ease;
}
.form-card.narrow { max-width: 440px; }
@keyframes slideUp { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.form-header { text-align: center; margin-bottom: 28px; }
.form-icon { font-size: 2.8rem; margin-bottom: 10px; }
.form-header h2 { font-size: 1.6rem; font-weight: 900; color: #0f172a; margin-bottom: 6px; }
.form-header p { font-size: 0.88rem; color: var(--muted); }
.form-link { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 14px; }
.form-link a { color: var(--green-mid); font-weight: 700; }

/* Step bar */
.step-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 6px; }
.step-bar { height: 4px; background: #e5e7eb; border-radius: 4px; margin-bottom: 24px; overflow: hidden; }
.step-fill { height: 100%; background: linear-gradient(90deg, var(--green-mid), var(--green-light)); border-radius: 4px; transition: width 0.4s ease; }

/* Fields */
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.field label { font-size: 0.74rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.4px; }
.field input, .field textarea, .field select {
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 12px; font-size: 0.92rem; outline: none;
  transition: border 0.2s, box-shadow 0.2s; background: #fafafa;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--green-light); background: #fff;
  box-shadow: 0 0 0 3px rgba(76,175,80,0.1);
}
.field textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.step-nav { display: flex; gap: 12px; margin-top: 8px; }
.step-nav .btn-primary, .step-nav .btn-outline { flex: 1; justify-content: center; }

/* ===== CATEGORIES ===== */
.cat-hint { font-size: 0.84rem; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.cat-site-group { margin-bottom: 20px; }
.cat-site-label {
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--green-mid);
  background: var(--green-pale); border-radius: 8px;
  padding: 6px 12px; margin-bottom: 10px; display: inline-block;
}
.cat-site-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
.cat-card {
  border: 2px solid var(--border); border-radius: 14px;
  padding: 14px 10px; text-align: center; cursor: pointer;
  transition: all 0.2s; background: #fafafa; user-select: none;
  display: flex; flex-direction: column; align-items: center;
}
.cat-card:hover { border-color: var(--green-light); background: #f0fdf4; transform: translateY(-2px); }
.cat-card.selected {
  border-color: var(--green-mid); background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.15);
}
.cat-img {
  width: 60px; height: 60px; border-radius: 10px;
  object-fit: cover; margin-bottom: 6px;
  border: 1.5px solid var(--border);
  display: block;
}
.cat-emoji { font-size: 1.8rem; margin-bottom: 6px; }
.cat-name { font-size: 0.8rem; font-weight: 800; color: #0f172a; margin-bottom: 3px; }
.cat-desc { font-size: 0.66rem; color: var(--muted); line-height: 1.4; margin-bottom: 6px; }
.cat-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: #e5e7eb; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; transition: all 0.2s;
}
.cat-card.selected .cat-check { background: var(--green-mid); color: #fff; }
.cat-selected-label { font-size: 0.84rem; font-weight: 700; color: var(--green-mid); margin: 10px 0 16px; }

/* ===== DASHBOARD ===== */
.dashboard { padding: 40px 6%; max-width: 900px; margin: 0 auto; }

/* Seller Card */
.seller-card {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #388e3c 100%);
  border-radius: 24px; padding: 28px;
  color: #fff; box-shadow: 0 20px 60px rgba(27,94,32,0.4);
  margin-bottom: 20px; position: relative; overflow: hidden;
}
.seller-card::before {
  content: ''; position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  top: -80px; right: -60px; border-radius: 50%; pointer-events: none;
}
.card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.2); }
.card-logo { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,0.4); flex-shrink: 0; }
.card-logo img { width: 100%; height: 100%; object-fit: cover; }
.card-brand-name { font-size: 1rem; font-weight: 900; color: #fff; }
.card-brand-sub { font-size: 0.65rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.8px; }
.card-badge {
  margin-left: auto; background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4); border-radius: 20px;
  padding: 4px 14px; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.5px; color: #fff;
}
.card-badge.pending { background: rgba(251,191,36,0.25); border-color: rgba(251,191,36,0.5); color: #fde68a; }
.card-body { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.card-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 3px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 900; color: #fff; flex-shrink: 0;
}
.card-name { font-size: 1.2rem; font-weight: 900; color: #fff; margin-bottom: 2px; }
.card-shop { font-size: 0.82rem; color: rgba(255,255,255,0.85); margin-bottom: 2px; }
.card-area { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-bottom: 2px; }
.card-phone { font-size: 0.82rem; color: rgba(255,255,255,0.85); }
.card-cats-label { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.card-cats { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.card-cat-tag {
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px; padding: 4px 12px; font-size: 0.72rem; font-weight: 700; color: #fff;
}
.card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.2); }
.card-id { font-size: 0.72rem; color: rgba(255,255,255,0.6); font-family: monospace; }
.card-since { font-size: 0.72rem; color: rgba(255,255,255,0.6); }

/* Info banner */
.info-banner {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fffbeb; border: 1.5px solid #fde68a;
  border-radius: 14px; padding: 14px 16px; margin-bottom: 20px;
  font-size: 0.84rem; color: #78350f; line-height: 1.6;
}
.info-icon { font-size: 1.2rem; flex-shrink: 0; }
.info-text strong { color: #92400e; }

/* Dashboard actions */
.dash-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.dash-btn {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 14px; padding: 12px 20px;
  font-size: 0.88rem; font-weight: 700; color: #0f172a;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.dash-btn:hover { border-color: var(--green-light); background: var(--green-pale); color: var(--green-mid); transform: translateY(-2px); }
.dash-btn svg { width: 16px; height: 16px; }
.dash-btn.highlight {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-color: var(--green-light); color: var(--green-mid);
}
.dash-btn.highlight:hover { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }

/* Edit panels */
.edit-panel {
  background: #fff; border-radius: 20px; padding: 28px;
  box-shadow: var(--shadow); margin-bottom: 24px;
  border: 1.5px solid var(--border);
  animation: slideUp 0.3s ease;
}
.edit-panel h3 { font-size: 1.1rem; font-weight: 800; color: #0f172a; margin-bottom: 6px; }
.edit-panel > p { font-size: 0.84rem; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }

/* Product request panel */
.request-panel { border-color: var(--green-light); }
.request-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 10px; padding: 12px 14px;
  font-size: 0.8rem; color: #166534; line-height: 1.6;
  margin: 12px 0 16px;
}
.request-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; stroke: #16a34a; }

/* ===== ASSIGNED ORDERS ===== */
.orders-section {
  background: #fff; border-radius: 20px; padding: 24px 28px;
  box-shadow: var(--shadow); margin-bottom: 24px;
  border: 1.5px solid var(--border);
}
.orders-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.orders-header h3 { font-size: 1.1rem; font-weight: 800; color: #0f172a; }
.orders-hint { font-size: 0.82rem; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }
.orders-empty, .orders-loading {
  text-align: center; padding: 32px 20px;
  font-size: 0.88rem; color: var(--muted);
  background: #fafafa; border-radius: 12px;
  border: 1.5px dashed var(--border);
}
.order-card {
  border: 1.5px solid var(--border); border-radius: 16px;
  padding: 16px; margin-bottom: 14px;
  background: #fafafa; transition: box-shadow 0.2s;
}
.order-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.order-card-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 10px; margin-bottom: 10px;
}
.order-source {
  color: #fff; font-size: 0.65rem; font-weight: 800;
  padding: 2px 8px; border-radius: 8px; text-transform: uppercase;
  letter-spacing: 0.4px; margin-right: 6px;
}
.order-id { font-size: 0.82rem; font-weight: 800; color: #0f172a; margin-right: 8px; }
.order-date { font-size: 0.74rem; color: var(--muted); }
.order-status {
  font-size: 0.72rem; font-weight: 800; padding: 3px 10px;
  border-radius: 20px; white-space: nowrap; flex-shrink: 0;
}
.order-items { font-size: 0.8rem; color: #374151; margin-bottom: 6px; line-height: 1.5; }
.order-total { font-size: 0.84rem; color: var(--green-mid); margin-bottom: 8px; }
.order-customer {
  background: #f0fdf4; border-radius: 10px; padding: 8px 12px;
  font-size: 0.8rem; color: #374151; line-height: 1.7; margin-bottom: 12px;
}
.order-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.status-btn {
  padding: 7px 14px; border-radius: 20px; font-size: 0.78rem;
  font-weight: 700; border: none; cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-flex; align-items: center;
}
.status-btn.accept  { background: #dbeafe; color: #1e40af; }
.status-btn.pickup  { background: #fef9c3; color: #854d0e; }
.status-btn.deliver { background: #dcfce7; color: #15803d; }
.status-btn.call    { background: #f3f4f6; color: #374151; }
.status-btn:hover   { opacity: 0.8; transform: translateY(-1px); }
.status-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.delivered-badge {
  background: #dcfce7; color: #15803d;
  padding: 7px 14px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 700;
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  color: #fff; padding: 12px 24px; border-radius: 25px;
  font-size: 0.88rem; font-weight: 600; z-index: 9999;
  opacity: 0; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== TAB BAR ===== */
.tab-bar {
  display: flex; gap: 4px;
  background: #fff; border-radius: 16px;
  padding: 6px; margin-bottom: 24px;
  box-shadow: var(--shadow); border: 1.5px solid var(--border);
  position: sticky; top: 68px; z-index: 50;
}
.tab-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 10px 8px; border: none; background: transparent;
  border-radius: 12px; cursor: pointer; font-size: 0.72rem; font-weight: 700;
  color: var(--muted); transition: all 0.2s; position: relative;
}
.tab-btn svg { width: 20px; height: 20px; }
.tab-btn:hover { background: var(--green-pale); color: var(--green-mid); }
.tab-btn.active { background: linear-gradient(135deg, var(--green-mid), var(--green-light)); color: #fff; box-shadow: 0 4px 12px rgba(46,125,50,0.3); }
.tab-badge {
  position: absolute; top: 6px; right: 18px;
  background: #ef4444; color: #fff;
  font-size: 0.6rem; font-weight: 800;
  min-width: 16px; height: 16px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.tab-content { animation: slideUp 0.3s ease; }

/* ===== WELCOME BANNER ===== */
.welcome-banner {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  border-radius: 20px; padding: 20px 24px; margin-bottom: 20px;
  color: #fff; box-shadow: 0 8px 24px rgba(27,94,32,0.3);
  flex-wrap: wrap; gap: 12px;
}
.welcome-left { display: flex; align-items: center; gap: 14px; }
.welcome-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; color: #fff; flex-shrink: 0;
}
.welcome-name { font-size: 1.1rem; font-weight: 900; color: #fff; }
.welcome-shop { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-top: 2px; }
.welcome-area { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-top: 1px; }
.welcome-status {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px; padding: 6px 16px;
  font-size: 0.75rem; font-weight: 800; color: #fff; white-space: nowrap;
}

/* ===== STATS ROW ===== */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 24px;
}
.stat-tile {
  background: #fff; border-radius: 16px; padding: 16px 12px;
  text-align: center; border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: transform 0.2s;
}
.stat-tile:hover { transform: translateY(-2px); }
.stat-tile.highlight { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border-color: var(--green-light); }
.stat-tile-icon { font-size: 1.4rem; margin-bottom: 6px; }
.stat-tile-val { font-size: 1.3rem; font-weight: 900; color: var(--green-mid); margin-bottom: 2px; }
.stat-tile-label { font-size: 0.65rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.4px; }

/* ===== SECTION TITLE ===== */
.section-title {
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.6px; color: var(--muted); margin-bottom: 12px;
}

/* ===== QUICK ACTIONS ===== */
.quick-actions {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-bottom: 20px;
}
.qa-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 16px; padding: 16px 10px;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.qa-btn:hover { border-color: var(--green-light); background: var(--green-pale); transform: translateY(-2px); }
.qa-btn.accent { border-color: var(--green-light); background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.qa-btn.accent:hover { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }
.qa-icon { font-size: 1.6rem; }
.qa-label { font-size: 0.72rem; font-weight: 800; color: #0f172a; text-align: center; }

/* ===== CARD TAB ===== */
.card-tab-wrap { max-width: 480px; margin: 0 auto; }
.card-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== INCOME TAB ===== */
.income-section {
  background: #fff; border-radius: 20px; padding: 24px 28px;
  box-shadow: var(--shadow); border: 1.5px solid var(--border);
}
.income-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.income-header h3 { font-size: 1.1rem; font-weight: 800; color: #0f172a; }
.income-cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin: 16px 0;
}
.income-card {
  border-radius: 16px; padding: 16px 18px;
  border: 1.5px solid var(--border);
}
.income-card.green  { background: #f0fdf4; border-color: #86efac; }
.income-card.blue   { background: #eff6ff; border-color: #93c5fd; }
.income-card.orange { background: #fff7ed; border-color: #fdba74; }
.income-card.grey   { background: #f9fafb; border-color: var(--border); }
.income-card-label { font-size: 0.72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 6px; }
.income-card-val { font-size: 1.4rem; font-weight: 900; color: #0f172a; }
.income-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 10px; padding: 12px 14px;
  font-size: 0.8rem; color: #166534; line-height: 1.6; margin-bottom: 20px;
}
.income-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; stroke: #16a34a; }
.income-breakdown-title {
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--muted); margin-bottom: 12px;
}

/* ===== PRINT ===== */
@media print {
  body > *:not(.dashboard) { display: none !important; }
  .dashboard > *:not(.seller-card) { display: none !important; }
  .seller-card { box-shadow: none; margin: 0; max-width: 400px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { flex-direction: column; padding: 40px 5%; min-height: auto; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-features { justify-content: center; }
  .hero-visual { width: 100%; }
  .form-section { padding: 24px 4%; }
  .form-card { padding: 24px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .cat-site-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard { padding: 24px 4%; }
  .dash-actions { flex-direction: column; }
  .dash-btn { width: 100%; }
  .card-body { flex-direction: column; text-align: center; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .step-nav { flex-direction: column; }
  .step-nav .btn-primary, .step-nav .btn-outline { width: 100%; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .quick-actions { grid-template-columns: repeat(3, 1fr); }
  .income-cards { grid-template-columns: 1fr; }
  .welcome-banner { flex-direction: column; align-items: flex-start; }
  .tab-bar { top: 60px; }
  .income-section, .orders-section { padding: 18px 16px; }
}
@media (max-width: 480px) {
  .navbar { padding: 10px 4%; gap: 8px; }
  .brand-name { font-size: 1.1rem; }
  .cat-site-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .quick-actions { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .qa-btn { padding: 12px 6px; }
  .qa-icon { font-size: 1.3rem; }
}

/* ===== ADMIN PANEL ===== */
.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 20px;
}
.admin-header h2 { font-size: 1.3rem; font-weight: 900; color: #0f172a; }

.admin-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 20px;
}
.admin-stat-card {
  background: #fff; border-radius: 14px; padding: 16px;
  text-align: center; border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.admin-stat-card.pending  { background: #fefce8; border-color: #fde68a; }
.admin-stat-card.approved { background: #f0fdf4; border-color: #86efac; }
.admin-stat-card.rejected { background: #fef2f2; border-color: #fca5a5; }
.admin-stat-val   { font-size: 1.8rem; font-weight: 900; color: #0f172a; }
.admin-stat-label { font-size: 0.68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.4px; margin-top: 4px; }

.admin-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px;
}
.admin-filter-btn {
  padding: 7px 18px; border-radius: 20px; font-size: 0.8rem; font-weight: 700;
  border: 1.5px solid var(--border); background: #fff; cursor: pointer;
  color: var(--muted); transition: all 0.2s;
}
.admin-filter-btn:hover { border-color: var(--green-light); color: var(--green-mid); }
.admin-filter-btn.active { background: var(--green-mid); color: #fff; border-color: var(--green-mid); }

.admin-order-filter-btn {
  padding: 7px 18px; border-radius: 20px; font-size: 0.8rem; font-weight: 700;
  border: 1.5px solid var(--border); background: #fff; cursor: pointer;
  color: var(--muted); transition: all 0.2s;
}
.admin-order-filter-btn:hover { border-color: #f59e0b; color: #92400e; }
.admin-order-filter-btn.active { background: #f59e0b; color: #fff; border-color: #f59e0b; }

.admin-seller-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 18px; padding: 20px; margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  animation: slideUp 0.3s ease;
}
.apc-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.apc-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; color: #fff;
}
.apc-info { flex: 1; }
.apc-name { font-size: 1rem; font-weight: 800; color: #0f172a; margin-bottom: 4px; }
.apc-meta { font-size: 0.78rem; color: var(--muted); line-height: 1.7; }
.apc-status {
  flex-shrink: 0; padding: 4px 12px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 800; white-space: nowrap;
}
.apc-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.apc-btn {
  padding: 7px 14px; border-radius: 20px; font-size: 0.78rem;
  font-weight: 700; border: none; cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-flex; align-items: center;
}
.apc-btn:hover { opacity: 0.8; transform: translateY(-1px); }
.apc-btn.approve   { background: #dcfce7; color: #15803d; }
.apc-btn.reject    { background: #fee2e2; color: #991b1b; }
.apc-btn.pending   { background: #fef9c3; color: #854d0e; }
.apc-btn.delete    { background: #f3f4f6; color: #374151; }
.apc-btn.whatsapp  { background: #dcfce7; color: #15803d; }

@media (max-width: 600px) {
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .apc-header { flex-wrap: wrap; }
  .apc-status { margin-left: auto; }
}

/* ===== ADMIN ORDER CARDS ===== */
.admin-order-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 18px; padding: 18px 20px; margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  animation: slideUp 0.3s ease;
}
.aoc-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; margin-bottom: 12px;
}
.aoc-body { margin-bottom: 12px; }
.aoc-row { font-size: 0.82rem; color: #374151; margin-bottom: 4px; line-height: 1.6; }
.aoc-customer {
  background: #f0fdf4; border-radius: 10px; padding: 8px 12px;
  font-size: 0.8rem; color: #374151; line-height: 1.7; margin-top: 8px;
}
.aoc-controls { border-top: 1px solid var(--border); padding-top: 12px; }
.aoc-control-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px; flex-wrap: wrap;
}
.aoc-control-row label { font-size: 0.75rem; font-weight: 700; color: var(--muted); min-width: 110px; }
.aoc-control-row select {
  flex: 1; padding: 7px 10px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.82rem; outline: none;
  background: #fafafa; cursor: pointer;
}
.aoc-control-row select:focus { border-color: var(--green-light); background: #fff; }
.aoc-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.admin-stats { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 600px) {
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .aoc-control-row { flex-direction: column; align-items: flex-start; }
  .aoc-control-row select { width: 100%; }
}

/* ===== EYE TOGGLE ===== */
.input-eye { position: relative; display: flex; align-items: center; }
.input-eye input { flex: 1; padding-right: 42px; }
.eye-btn {
  position: absolute; right: 10px;
  background: none; border: none; cursor: pointer;
  font-size: 1rem; padding: 0; line-height: 1;
  color: var(--muted); transition: opacity 0.2s;
}
.eye-btn:hover { opacity: 0.7; }

/* ===== FLIPKART-STYLE MOBILE RESPONSIVE (360px – 700px) ===== */
@media (min-width: 360px) and (max-width: 700px) {
  /* NAVBAR */
  .navbar { padding: 8px 4%; gap: 8px; flex-wrap: nowrap; }
  .brand { gap: 7px; flex-shrink: 0; }
  .brand-logo { width: 32px; height: 32px; }
  .brand-name { font-size: 1.1rem; }
  .brand-sub { display: none; }
  .nav-right, .nav-seller { gap: 8px; flex-shrink: 0; }
  .btn-primary.sm, .btn-outline.sm { padding: 7px 12px; font-size: 0.78rem; }

  /* HERO */
  .hero { flex-direction: column; padding: 24px 4% 32px; min-height: auto; text-align: center; gap: 24px; }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-features { justify-content: center; }
  .hero-visual { width: 100%; }
  .hero-circle { width: 260px; height: 260px; }
  .hero-main-img { width: 140px; height: 140px; }
  .badge { display: none; }
  .hero-badges-strip { display: flex; width: 100%; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .stat-card { padding: 12px 16px; }
  .stat-num { font-size: 1.3rem; }
  .stat-label { font-size: 0.65rem; }

  /* FORM */
  .form-section { padding: 16px 4%; }
  .form-card { padding: 20px 16px; border-radius: 18px; }
  .form-header h2 { font-size: 1.3rem; }
  .field-row { grid-template-columns: 1fr; }
  .field input, .field textarea, .field select { padding: 10px 12px; font-size: 0.88rem; }
  .field label { font-size: 0.7rem; }
  .step-nav { flex-direction: column; }
  .step-nav .btn-primary, .step-nav .btn-outline { width: 100%; justify-content: center; }

  /* CATEGORIES */
  .cat-site-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .cat-card { padding: 10px 8px; }
  .cat-img { width: 48px; height: 48px; }
  .cat-name { font-size: 0.74rem; }
  .cat-desc { font-size: 0.62rem; }

  /* DASHBOARD */
  .dashboard { padding: 16px 4%; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stat-tile { padding: 12px 8px; }
  .stat-tile-val { font-size: 1.1rem; }
  .stat-tile-label { font-size: 0.6rem; }
  .quick-actions { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .qa-btn { padding: 12px 6px; }
  .qa-icon { font-size: 1.3rem; }
  .qa-label { font-size: 0.66rem; }
  .welcome-banner { padding: 16px 18px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .welcome-name { font-size: 1rem; }
  .welcome-avatar { width: 44px; height: 44px; font-size: 1.2rem; }
  .income-cards { grid-template-columns: 1fr; gap: 8px; }
  .income-card { padding: 12px 14px; }
  .income-card-val { font-size: 1.2rem; }
  .orders-section, .income-section { padding: 16px 14px; }
  .orders-header h3, .income-header h3 { font-size: 0.95rem; }
  .order-card { padding: 12px; }
  .order-id { font-size: 0.78rem; }
  .order-date { font-size: 0.7rem; }
  .order-items { font-size: 0.78rem; }
  .order-total { font-size: 0.8rem; }
  .order-customer { font-size: 0.76rem; padding: 7px 10px; }
  .status-btn { padding: 6px 12px; font-size: 0.74rem; }

  /* SELLER CARD */
  .seller-card { padding: 20px 18px; border-radius: 18px; }
  .card-name { font-size: 1rem; }
  .card-shop, .card-phone { font-size: 0.76rem; }
  .card-area { font-size: 0.72rem; }
  .card-avatar { width: 52px; height: 52px; font-size: 1.4rem; }
  .card-cat-tag { font-size: 0.66rem; padding: 3px 9px; }

  /* TAB BAR */
  .tab-bar { padding: 4px; gap: 2px; top: 58px; }
  .tab-btn { padding: 8px 4px; font-size: 0.62rem; }
  .tab-btn svg { width: 18px; height: 18px; }

  /* ADMIN */
  .admin-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .admin-stat-val { font-size: 1.4rem; }
  .admin-stat-label { font-size: 0.6rem; }
  .admin-filter-btn, .admin-order-filter-btn { padding: 6px 12px; font-size: 0.74rem; }
  .apc-header { gap: 10px; }
  .apc-avatar { width: 42px; height: 42px; font-size: 1rem; }
  .apc-name { font-size: 0.9rem; }
  .apc-meta { font-size: 0.72rem; }
  .apc-btn { padding: 6px 10px; font-size: 0.72rem; }
  .aoc-control-row { flex-direction: column; align-items: flex-start; }
  .aoc-control-row select { width: 100%; }
  .aoc-row { font-size: 0.78rem; }
  .aoc-customer { font-size: 0.76rem; }

  /* TOAST */
  .toast { font-size: 0.82rem; padding: 10px 18px; max-width: 92vw; white-space: normal; text-align: center; bottom: auto; top: 16px; left: auto; right: 16px; transform: translateY(-80px); border-radius: 14px; }
  .toast.show { transform: translateY(0); }
}

/* ===== 360px ONLY ===== */
@media (max-width: 360px) {
  .navbar { padding: 7px 3%; gap: 6px; }
  .brand-logo { width: 28px; height: 28px; }
  .brand-name { font-size: 0.95rem; }
  .btn-primary.sm, .btn-outline.sm { padding: 6px 10px; font-size: 0.72rem; }
  .hero { padding: 16px 3% 24px; gap: 16px; }
  .hero-circle { width: 200px; height: 200px; }
  .hero-main-img { width: 110px; height: 110px; }
  .form-card { padding: 16px 12px; }
  .form-header h2 { font-size: 1.1rem; }
  .field input, .field textarea, .field select { padding: 9px 10px; font-size: 0.82rem; }
  .cat-site-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .cat-img { width: 40px; height: 40px; }
  .cat-name { font-size: 0.68rem; }
  .dashboard { padding: 12px 3%; }
  .stats-row { gap: 6px; }
  .stat-tile-val { font-size: 1rem; }
  .quick-actions { gap: 6px; }
  .qa-btn { padding: 10px 4px; }
  .qa-icon { font-size: 1.1rem; }
  .qa-label { font-size: 0.58rem; }
  .welcome-banner { padding: 12px 14px; }
  .welcome-name { font-size: 0.9rem; }
  .welcome-avatar { width: 38px; height: 38px; font-size: 1rem; }
  .tab-btn { padding: 6px 2px; font-size: 0.56rem; }
  .tab-btn svg { width: 16px; height: 16px; }
  .admin-stats { gap: 6px; }
  .admin-stat-val { font-size: 1.2rem; }
  .apc-avatar { width: 36px; height: 36px; font-size: 0.9rem; }
  .apc-name { font-size: 0.82rem; }
  .apc-btn { padding: 5px 8px; font-size: 0.66rem; }
  .order-card { padding: 10px; }
  .status-btn { padding: 5px 9px; font-size: 0.68rem; }
  .seller-card { padding: 16px 14px; }
  .card-name { font-size: 0.9rem; }
  .card-avatar { width: 44px; height: 44px; font-size: 1.2rem; }
  .toast { font-size: 0.72rem; padding: 8px 14px; }
}


