/* ═══════════════════════════════════════
   PRINTARA — Orders & Partner Styles
   ═══════════════════════════════════════ */

/* ── Order Timeline ── */
.order-timeline-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  flex: 1;
}
.timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: all .3s;
}
.timeline-step.completed .timeline-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
}
.timeline-step.active .timeline-dot {
  background: rgba(0, 229, 255, 0.15);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.2);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 16px rgba(0, 229, 255, 0.2); }
  50% { box-shadow: 0 0 24px rgba(0, 229, 255, 0.4); }
}
.timeline-step.cancelled .timeline-dot {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #ef4444;
}
.timeline-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}
.timeline-step.completed .timeline-label { color: var(--accent); }
.timeline-step.active .timeline-label { color: var(--text); }

/* ── Order Detail Grid ── */
.order-detail-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 24px;
}
.order-info-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Order Items ── */
.order-item-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.02);
}
.order-item-card:last-child { margin-bottom: 0; }
.order-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.order-item-price {
  font-size: 1.1rem;
  font-weight: 700;
}
.order-item-provider {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.order-item-config {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  margin-bottom: 8px;
}
.order-item-status {
  font-size: 0.82rem;
}

/* ── Order Actions ── */
.order-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Order Reviews ── */
.order-reviews {
  margin-top: 16px;
}
.order-reviews h4 {
  margin-bottom: 12px;
}
.star-input {
  display: flex;
  gap: 4px;
}
.star-btn {
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color .2s, transform .2s;
}
.star-btn:hover { color: #f5a623; transform: scale(1.15); }

/* ── Chat Messages ── */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  max-height: 400px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.chat-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.chat-msg.sent {
  flex-direction: row-reverse;
}
.chat-bubble {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 280px;
}
.chat-msg.sent .chat-bubble {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.15);
}
.chat-input-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.chat-input-row .input {
  flex: 1;
}

/* ═══════════════════════════════════════
   PARTNER APPLICATION PAGE
   ═══════════════════════════════════════ */
.partner-hero {
  text-align: center;
  padding: 40px 0 32px;
}
.partner-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.partner-hero p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* Track selection cards */
.partner-tracks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.partner-track {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 28px;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}
.partner-track:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 229, 255, 0.06);
}
.track-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.partner-track h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.partner-track p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.partner-track ul {
  list-style: none;
  padding: 0;
}
.partner-track ul li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.partner-track ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Application form */
.partner-form {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
}
.partner-form h2 {
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-group textarea,
.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.88rem;
  outline: none;
  transition: border-color .2s;
}
.form-group textarea:focus,
.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; }
.form-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Chip select (material/style picker) */
.chip-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip-option {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all .2s;
}
.chip-option:hover {
  border-color: rgba(0, 229, 255, 0.2);
  background: rgba(0, 229, 255, 0.04);
}
.chip-option:has(input:checked) {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
  color: var(--accent);
}
.chip-option input { display: none; }

/* Application status cards */
.partner-status { margin-bottom: 32px; }
.app-status-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
}
.app-status-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.app-status-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-status-type {
  font-weight: 600;
  font-size: 0.95rem;
}
.app-status-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.app-status-header .badge {
  margin-left: auto;
}

/* ═══════════════════════════════════════
   MY ORDERS PAGE
   ═══════════════════════════════════════ */
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all .25s;
}
.order-row:hover {
  border-color: rgba(0, 229, 255, 0.2);
  background: rgba(0, 229, 255, 0.02);
}
.order-row-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--bg-secondary);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-row-info { flex: 1; min-width: 0; }
.order-row-title {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.order-row-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.order-row-price {
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   PROVIDER DASHBOARD
   ═══════════════════════════════════════ */
.provider-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.provider-stat {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.provider-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.provider-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
}

/* ── Small utilities ── */
.mt-4 { margin-top: 4px; }

/* ── Review Form ── */
.review-form {
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

/* ── Badges ── */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; }
.badge-info { background: rgba(0, 229, 255, 0.1); color: var(--accent); }
.badge-success { background: rgba(16, 185, 129, 0.12); color: var(--success, #10b981); }
.badge-warning { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.badge-danger { background: rgba(239, 68, 68, 0.12); color: #ef4444; }
.badge-violet { background: rgba(124, 58, 237, 0.12); color: #a78bfa; }

/* ═══════════════════════════════════════
   CHECKOUT DRAWER
   ═══════════════════════════════════════ */
.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: flex-end;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.checkout-drawer {
  width: 440px;
  max-width: 90vw;
  height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  animation: slideInRight .25s cubic-bezier(.4, 0, .2, 1);
}
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.checkout-header h3 {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkout-close {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.checkout-close:hover {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}
.checkout-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.checkout-model-info {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 20px;
}
.checkout-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.checkout-total {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-align: center;
}

/* Checkout form inputs inherit from orders.css form-group */
.checkout-body .form-group { margin-bottom: 16px; }
.checkout-body .form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.checkout-body .form-group select,
.checkout-body .form-group input,
.checkout-body .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.88rem;
  outline: none;
  transition: border-color .2s;
}
.checkout-body .form-group select:focus,
.checkout-body .form-group input:focus,
.checkout-body .form-group textarea:focus {
  border-color: var(--accent);
}
.checkout-body .form-group textarea { resize: vertical; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .provider-stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .order-detail-grid { grid-template-columns: 1fr; }
  .timeline { flex-wrap: wrap; gap: 8px; }
  .timeline::before { display: none; }
  .partner-tracks { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .provider-stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .provider-stat-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   SELLER PROFILE PAGE
   ═══════════════════════════════════════ */
.seller-header {
  margin-bottom: 24px;
}
.seller-banner {
  height: 180px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(135deg, rgba(0,229,255,0.08) 0%, rgba(124,58,237,0.08) 100%);
  background-size: cover;
  background-position: center;
}
.seller-header-content {
  display: flex;
  gap: 24px;
  padding: 0 24px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
  border-radius: 0 0 20px 20px;
  position: relative;
}
.seller-avatar-lg {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 4px solid var(--bg-card);
  overflow: hidden;
  flex-shrink: 0;
  margin-top: -48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
}
.seller-avatar-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seller-header-info {
  flex: 1;
  padding-top: 12px;
  min-width: 0;
}
.seller-header-info h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.seller-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.seller-badges-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.seller-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-secondary);
}
.seller-badge.verified {
  background: rgba(0,229,255,0.1);
  border-color: rgba(0,229,255,0.2);
  color: var(--accent);
}
.seller-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 4px;
}
.seller-stats-sidebar {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  padding-top: 12px;
}
.seller-stat {
  text-align: center;
  min-width: 70px;
}
.seller-stat-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
}
.seller-stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Seller Tabs ── */
.seller-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}
.seller-tab {
  padding: 12px 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.seller-tab:hover { color: var(--text); }
.seller-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ── Portfolio Grid ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.portfolio-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: all .25s;
}
.portfolio-item:hover {
  border-color: rgba(0,229,255,0.2);
  transform: translateY(-2px);
}
.portfolio-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.portfolio-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--bg-secondary);
  color: var(--text-muted);
}
.portfolio-info {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portfolio-title {
  font-size: 0.88rem;
  font-weight: 600;
}

/* ── Pricing Tables ── */
.pricing-section {
  margin-bottom: 32px;
}
.pricing-section h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}
.pricing-table th,
.pricing-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-table th {
  background: rgba(255,255,255,0.02);
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-table td strong {
  color: var(--text);
}

/* ── Reviews ── */
.reviews-summary {
  display: flex;
  gap: 32px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  margin-bottom: 24px;
}
.reviews-avg {
  text-align: center;
  flex-shrink: 0;
}
.reviews-avg-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}
.reviews-breakdown {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.review-dim {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
}
.review-dim span:first-child {
  width: 110px;
  color: var(--text-secondary);
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
}
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.review-title {
  font-weight: 600;
  margin-bottom: 4px;
}
.review-body {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
}
.review-dims {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.review-photos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.review-photo {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.06);
}
.seller-response {
  margin-top: 12px;
  padding: 12px;
  background: rgba(0,229,255,0.04);
  border: 1px solid rgba(0,229,255,0.1);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ── Seller Card (for checkout) ── */
.seller-select-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
}
.seller-select-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s;
}
.seller-select-card:hover {
  border-color: rgba(0,229,255,0.2);
  background: rgba(0,229,255,0.03);
}
.seller-select-card.selected {
  border-color: var(--accent);
  background: rgba(0,229,255,0.06);
  box-shadow: 0 0 0 1px var(--accent);
}
.seller-select-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  overflow: hidden;
}
.seller-select-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seller-select-info {
  flex: 1;
  min-width: 0;
}
.seller-select-name {
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.seller-select-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.seller-select-price {
  text-align: right;
  flex-shrink: 0;
}
.seller-select-price .price {
  font-size: 1rem;
  font-weight: 700;
}
.seller-select-price .eta {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* ── Empty State ── */
.empty-state {
  padding: 48px 24px;
  text-align: center;
}

/* ── Dashboard Tabs (partner/artist) ── */
.dash-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
  overflow-x: auto;
}
.dash-tab {
  padding: 12px 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.dash-tab:hover { color: var(--text); }
.dash-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.dash-tab-content { display: none; }
.dash-tab-content.active { display: block; }

/* ── Pricing Matrix Editor ── */
.pricing-editor-grid {
  display: grid;
  grid-template-columns: 120px repeat(4, 1fr);
  gap: 8px;
  align-items: center;
}
.pricing-editor-grid .pe-header {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.pricing-editor-grid .pe-label {
  font-size: 0.82rem;
  font-weight: 600;
}
.pricing-editor-grid input {
  width: 100%;
  padding: 8px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.82rem;
  text-align: center;
}
.pricing-editor-grid input:focus {
  border-color: var(--accent);
  outline: none;
}

/* ── Shipping Editor ── */
.shipping-editor-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr 80px 80px;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.shipping-editor-row input {
  width: 100%;
  padding: 8px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.82rem;
}
.shipping-editor-row input:focus {
  border-color: var(--accent);
  outline: none;
}

/* ── Portfolio Upload ── */
.portfolio-upload-area {
  border: 2px dashed rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  margin-bottom: 16px;
}
.portfolio-upload-area:hover,
.portfolio-upload-area.dragover {
  border-color: rgba(0,229,255,0.4);
  background: rgba(0,229,255,0.04);
}
.portfolio-upload-previews {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.portfolio-upload-thumb {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.portfolio-upload-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-upload-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(239,68,68,0.85);
  color: #fff;
  border: none;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ── Checkout Price Display ── */
.checkout-price-breakdown {
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  margin-top: 12px;
}
.checkout-price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 4px 0;
  color: var(--text-secondary);
}
.checkout-price-row.total {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 8px;
  padding-top: 8px;
}

/* ── Pricing Visual Enhancement ── */
.pe-input-filled {
  border-color: rgba(16, 185, 129, 0.4) !important;
  background: rgba(16, 185, 129, 0.06) !important;
}

/* ── Overview Tab ── */
.overview-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.overview-stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.overview-stat-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.overview-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}
.overview-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Profile Checklist ── */
.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item.done { color: var(--text); }
.checklist-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.checklist-item.done .checklist-icon { color: var(--success, #10b981); }

/* ── Review Sub-ratings ── */
.review-sub-ratings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.review-sub-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-sub-row label {
  font-size: 0.78rem;
  color: var(--text-muted);
  width: 100px;
  flex-shrink: 0;
}
.review-sub-row select {
  padding: 6px 10px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.82rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .seller-header-content { flex-direction: column; align-items: center; text-align: center; }
  .seller-stats-sidebar { justify-content: center; }
  .reviews-summary { flex-direction: column; align-items: center; }
  .pricing-editor-grid { grid-template-columns: 1fr 1fr; }
  .shipping-editor-row { grid-template-columns: 1fr 1fr; }
  .seller-select-card { flex-wrap: wrap; }
  .overview-stats-grid { grid-template-columns: 1fr 1fr; }
  .review-sub-ratings { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .overview-stats-grid { grid-template-columns: 1fr; }
}
