/* ==========================================================================
   VoxelMarket Theme Main Custom Stylesheet
   ========================================================================== */

/* 1. Reset and Global Typography overrides */
body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* 2. Helper Classes & Typography Utilities */
.gradient-text {
  background: linear-gradient(135deg, #00f0ff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-cyan { color: var(--accent-cyan) !important; }
.text-purple { color: var(--accent-purple) !important; }
.text-warning { color: #f59e0b !important; }

/* 3. Glassmorphic Panel Styling */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: rgba(0, 240, 255, 0.2);
}

/* 4. Button styles */
.btn-gradient {
  background: var(--primary-glow);
  color: #fff !important;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: var(--glow-shadow);
  transition: var(--transition-smooth);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px 0 rgba(0, 240, 255, 0.3);
  text-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--text-main) !important;
  border: 1px solid var(--border-color);
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan) !important;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
  transform: translateY(-1px);
}

.btn-clear-link {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 13px;
  transition: var(--transition-smooth);
}
.btn-clear-link:hover {
  color: var(--accent-cyan);
}

/* 5. Header Layout */
.site-header {
  background: rgba(9, 13, 22, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}
.header-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-cube {
  color: #fff;
  font-size: 18px;
  animation: logo-spin 10s infinite linear;
}
@keyframes logo-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}

/* Header Search */
.header-search-bar {
  flex: 1;
  max-width: 500px;
}
.search-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 2px 2px 2px 10px;
  transition: var(--transition-smooth);
}
.search-form-wrap:focus-within {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}
.search-category-select {
  position: relative;
  border-right: 1px solid var(--border-color);
  padding-right: 10px;
  margin-right: 10px;
}
.search-category-select select {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 13px;
  padding-right: 18px;
  outline: none;
  cursor: pointer;
}
.select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--text-muted);
  pointer-events: none;
}
.search-field {
  background: transparent;
  border: none;
  color: var(--text-main);
  outline: none;
  width: 100%;
  font-size: 13px;
}
.search-submit {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 8px 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.search-submit:hover {
  color: var(--accent-cyan);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-cart-btn {
  position: relative;
  font-size: 18px;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}
.header-cart-btn:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}
.cart-badge-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent-purple);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.login-link-btn {
  color: var(--text-muted);
  font-weight: 600;
}
.login-link-btn:hover {
  color: var(--accent-cyan);
}

/* Navigation menu */
#primary-menu-list {
  display: flex;
  list-style: none;
  gap: 24px;
}
#primary-menu-list a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
}
#primary-menu-list a:hover {
  color: #fff;
}

/* 6. Hero Section Home Page */
.hero-section {
  position: relative;
  padding: 120px 0 80px 0;
  overflow: hidden;
  text-align: center;
}
.hero-bg-glows {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.15;
}
.glow-cyan {
  width: 400px;
  height: 400px;
  background: var(--accent-cyan);
  top: -100px;
  left: 10%;
}
.glow-purple {
  width: 500px;
  height: 500px;
  background: var(--accent-purple);
  bottom: -200px;
  right: 15%;
}
.hero-container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.hero-title {
  font-size: 42px;
  font-weight: 850;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}
.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 35px;
}

/* Large Search Bar in Hero */
.hero-search-wrap {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 6px 6px 6px 16px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}
.hero-search-wrap:focus-within {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
}
.hero-search-form {
  display: flex;
  width: 100%;
  align-items: center;
}
.search-icon {
  color: var(--text-muted);
  margin-right: 12px;
  font-size: 16px;
}
.hero-search-input {
  background: transparent;
  border: none;
  color: var(--text-main);
  outline: none;
  width: 100%;
  font-size: 15px;
}
.hero-search-btn {
  padding: 12px 28px;
}
.hero-formats-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}
.formats-label {
  color: var(--text-muted);
  margin-right: 5px;
}
.badge-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid var(--border-color);
}
.badge-tag:hover {
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent-cyan);
  border-color: rgba(0, 240, 255, 0.3);
}

/* 7. Category Cards Grid */
.section {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 0;
}
.section-header {
  margin-bottom: 40px;
  text-align: left;
}
.section-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.section-subtitle {
  color: var(--text-muted);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.category-card {
  position: relative;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}
.category-card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(360deg, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0.2) 100%);
  z-index: 1;
}

/* Category backgrounds mock */
.card-characters { background: linear-gradient(135deg, #120e2e 0%, #1e133e 100%); }
.card-vehicles { background: linear-gradient(135deg, #0a1f2c 0%, #0d2c3e 100%); }
.card-weapons { background: linear-gradient(135deg, #1e0b0b 0%, #301111 100%); }
.card-architecture { background: linear-gradient(135deg, #071e16 0%, #0c3023 100%); }

.category-card-content {
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}
.cat-icon {
  font-size: 24px;
  color: var(--accent-cyan);
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}
.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
}
.category-card:hover .cat-icon {
  transform: scale(1.15);
  text-shadow: 0 0 10px var(--accent-cyan);
}
.category-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 4px;
}
.category-card span {
  font-size: 12px;
  color: var(--text-muted);
}

/* 8. 3D Model Cards */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.model-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}
.model-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--border-hover);
  box-shadow: 0 12px 35px 0 rgba(0, 240, 255, 0.12);
}
.card-image-wrap {
  position: relative;
  height: 200px;
  background: radial-gradient(circle, #1a2235 0%, #0c121e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.model-card:hover .card-image {
  transform: scale(1.08);
}
.card-image-placeholder {
  font-size: 48px;
  color: var(--text-muted);
  opacity: 0.3;
}
.formats-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 5px;
  z-index: 5;
}
.format-badge {
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-info {
  padding: 18px;
}
.model-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.model-title a {
  color: #fff;
}
.model-title a:hover {
  color: var(--accent-cyan);
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
}
.designer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.vendor-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}
.model-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-cyan);
}
.price-free {
  color: var(--accent-purple);
  font-weight: 700;
}
.view-all-wrap {
  text-align: center;
  margin-top: 50px;
}

/* 9. Seller Call To Action Panel */
.seller-cta-section {
  padding: 40px 0;
}
.seller-cta-container {
  position: relative;
  background: linear-gradient(135deg, rgba(9, 13, 22, 0.85) 0%, rgba(20, 10, 40, 0.85) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 60px;
  overflow: hidden;
  text-align: center;
}
.seller-cta-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--accent-purple);
  filter: blur(150px);
  opacity: 0.15;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.seller-cta-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
  margin: 0 auto;
}
.seller-cta-content h2 {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.seller-cta-content p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 30px;
}
.seller-cta-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.large-btn {
  padding: 14px 32px;
  font-size: 15px;
}

/* 10. Archive / Marketplace Page Layout */
.marketplace-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 0;
}
.marketplace-header {
  margin-bottom: 40px;
}
.marketplace-header h1 {
  font-size: 32px;
  font-weight: 850;
  color: #fff;
  margin-bottom: 8px;
}
.marketplace-header p {
  color: var(--text-muted);
}
.marketplace-layout-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 35px;
  align-items: start;
}

/* Sidebar Filters */
.filter-sidebar {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
}
.filter-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.filter-sidebar-header h2 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.filter-group {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}
.filter-group:last-child {
  border-bottom: none;
}
.filter-group h3 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-search-input-wrap {
  position: relative;
}
.filter-search-input-wrap input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: #fff;
  width: 100%;
  padding: 10px 35px 10px 12px;
  border-radius: 8px;
  outline: none;
  font-size: 13px;
  transition: var(--transition-smooth);
}
.filter-search-input-wrap input:focus {
  border-color: var(--accent-cyan);
}
.filter-search-input-wrap i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 12px;
}

/* Range input styled */
.price-slider-wrap input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  height: 6px;
  border-radius: 3px;
  outline: none;
}
.price-slider-wrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Checkbox lists */
.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}
.filter-checkbox-label input {
  accent-color: var(--accent-cyan);
}
.filter-checkbox-label:hover {
  color: #fff;
}

/* Catalog Toolbar */
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  padding: 15px 24px;
  border-radius: 12px;
  margin-bottom: 30px;
}
.results-count {
  font-size: 14px;
  color: var(--text-muted);
}
#results-count-number {
  color: #fff;
  font-weight: 700;
}
.catalog-actions-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sort-selector-wrap label {
  font-size: 13px;
  color: var(--text-muted);
  margin-right: 5px;
}
.sort-selector-wrap select {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 6px;
  outline: none;
  font-size: 13px;
  cursor: pointer;
}
.view-mode-btns {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
}
.view-mode-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 6px 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.view-mode-btn:hover, .view-mode-btn.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-cyan);
}

/* 11. Single Product Detail Page Layout */
.product-detail-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 0;
}
.detail-breadcrumbs {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 25px;
}
.detail-breadcrumbs a {
  color: var(--text-muted);
}
.detail-breadcrumbs a:hover {
  color: var(--accent-cyan);
}
.detail-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 35px;
  align-items: start;
  margin-bottom: 40px;
}

/* Viewport 3D Canvas wrapper */
.viewer-main-container {
  height: 480px;
  background: radial-gradient(circle, #1a2235 0%, #080c14 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--card-shadow);
}
.viewport-3d-canvas-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.viewer-loading-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #090d16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.5s ease;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 240, 255, 0.1);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin-bottom: 15px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.viewer-controls-bar {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(9, 13, 22, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 8px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}
.viewer-btn {
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 12px;
  transition: var(--transition-smooth);
}
.viewer-btn:hover, .viewer-btn.active {
  color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.05);
}
.viewer-select-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  padding: 0 10px;
}
.viewer-select-wrap select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}

.viewer-thumbs-wrap {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.gallery-thumb-item {
  width: 70px;
  height: 50px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

/* Fallback Image Detail */
.detail-image-carousel {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Detail Column */
.product-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.product-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}
.rating-stars i {
  font-size: 12px;
}
.rating-label {
  margin-left: 5px;
}
.card-separator {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 20px 0;
}
.price-display-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
}
.price-header {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.price-tag {
  font-size: 32px;
  font-weight: 850;
  color: var(--accent-cyan);
}
.license-info {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 5px;
}
.buy-action-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.buy-instant-btn {
  justify-content: center;
}
.card-features-list {
  margin-top: 25px;
}
.card-features-list h4 {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.formats-badges-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.detail-badge-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

/* Seller Card */
.seller-profile-card {
  display: flex;
  align-items: center;
  gap: 15px;
}
.seller-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.seller-details h3 {
  font-size: 15px;
  color: #fff;
}
.seller-rank {
  font-size: 11px;
  color: var(--accent-cyan);
  margin-bottom: 4px;
}
.seller-store-link {
  font-size: 12px;
  font-weight: 600;
}

/* Tab details */
.detail-tabs-container {
  margin-top: 40px;
}
.tabs-nav {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  margin-bottom: 25px;
}
.tab-nav-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 8px 18px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition-smooth);
}
.tab-nav-btn.active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-cyan);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.specs-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 10px;
}
.spec-label {
  font-size: 13px;
  color: var(--text-muted);
}
.spec-value {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

/* 12. Dashboard & Upload styles */
.dashboard-container-layout {
  width: 90%;
  max-width: 1400px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}
.user-profile-header {
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.dashboard-user-avatar {
  width: 60px;
  height: 60px;
  background: var(--primary-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin: 0 auto 12px auto;
}
.user-status-badge {
  font-size: 11px;
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent-cyan);
  padding: 2px 10px;
  border-radius: 12px;
  font-weight: 700;
  margin-top: 5px;
  display: inline-block;
}

.dashboard-nav-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dashboard-nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
}
.dashboard-nav-links a:hover, .dashboard-nav-links a.active {
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-cyan);
}

.dashboard-header-inline {
  margin-bottom: 30px;
}
.dashboard-header-inline h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 6px;
}
.dashboard-header-inline p {
  color: var(--text-muted);
}

/* Upload wizard forms */
.drag-drop-zone-wrap {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.01);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  transition: var(--transition-smooth);
}
.drag-drop-zone-wrap:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.02);
}
.upload-icon-big {
  font-size: 52px;
  color: var(--text-muted);
  margin-bottom: 15px;
}
.drag-drop-zone-wrap h4 {
  color: #fff;
  margin-bottom: 8px;
}
.drag-drop-zone-wrap p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.wizard-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.input-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.input-wrap.w-full {
  grid-column: span 2;
}
.input-wrap label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.required {
  color: #ef4444;
}
.input-wrap input[type=text], .input-wrap input[type=number], .input-wrap select, .input-wrap textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-family);
  font-size: 14px;
  outline: none;
  transition: var(--transition-smooth);
}
.input-wrap input:focus, .input-wrap select:focus, .input-wrap textarea:focus {
  border-color: var(--accent-cyan);
}

.checkboxes-row {
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 20px;
  grid-column: span 2;
  margin-top: 10px;
}
.toggle-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.toggle-checkbox-wrap input {
  accent-color: var(--accent-cyan);
}

.wizard-submit-wrap {
  display: flex;
  gap: 15px;
}

/* Stats analytics dashboard */
.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
}
.stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.bg-cyan-glow {
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent-cyan);
}
.bg-purple-glow {
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent-purple);
}
.bg-orange-glow {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}
.stat-number {
  font-size: 22px;
  color: #fff;
  margin: 2px 0;
}
.stat-trend {
  font-size: 11px;
}
.trend-up { color: #10b981; }
.trend-down { color: #ef4444; }

.mini-model-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}
.mini-model-item:last-child {
  border-bottom: none;
}
.mini-thumb {
  width: 38px;
  height: 38px;
  background: var(--bg-card-hover);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
}
.mini-info h4 {
  font-size: 13px;
  color: #fff;
}
.mini-info span {
  font-size: 11px;
  color: var(--text-muted);
}

.panel-header-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.btn-small {
  padding: 5px 12px;
  font-size: 12px;
}
