body {
  margin: 0px !important;
}

.bg-indigo-500 {
  background-color: #6366f1;
}

.shadow-indigo-200 {
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
}

/* ==================== Shared CSS Classes ==================== */

/* Shared across: [id].vue, explore.vue, mydeals.vue */
.trading-card-svg {
  width: 100%;
  height: 100%;
}

/* Shared across: [id].vue, index.vue, [sellerId].vue, mydeals.vue */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}

/* Shared across: index.vue, [sellerId].vue */
.card-display-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Shared across: index.vue, [sellerId].vue */
.card-display-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
}

/* Shared across: index.vue, [sellerId].vue */
.card-image-box {
  background: #e5e7eb;
  height: 144px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
  user-select: none;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Shared across: index.vue, [sellerId].vue */
.card-tags-left {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
}

/* Shared across: index.vue, [sellerId].vue */
.tag-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Shared across: index.vue, [sellerId].vue */
.badge-psa {
  background: #ef4444;
  color: #ffffff;
}

/* Shared across: index.vue, [sellerId].vue */
.badge-bgs {
  background: #fbbf24;
  color: #111827;
}

/* Shared across: index.vue, [sellerId].vue */
.badge-cgc {
  background: #10b981;
  color: #ffffff;
}

/* Shared across: index.vue, [sellerId].vue */
.badge-raw {
  background: #6b7280;
  color: #ffffff;
}

/* Shared across: index.vue, [sellerId].vue */
.card-info-box {
  padding: 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Shared across: index.vue, [sellerId].vue */
.card-item-title {
  font-weight: 700;
  color: #1f2937;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Shared across: index.vue, [sellerId].vue */
.card-item-subtitle {
  font-size: 10px;
  color: #9ca3af;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 2px 0 0 0;
  font-weight: 500;
}

/* Shared across: index.vue, [sellerId].vue */
.card-item-price {
  color: #d97706;
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 6px;
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
}

/* Shared across: index.vue, [sellerId].vue */
.card-footer-box {
  margin-top: 12px;
}

/* Shared across: index.vue, [sellerId].vue */
.card-seller-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

/* Shared across: index.vue, [sellerId].vue */
.card-seller-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shared across: index.vue, [sellerId].vue */
.card-seller-handle {
  font-size: 9px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

/* Shared across: index.vue, [sellerId].vue */
.btn-request-buy {
  width: 100%;
  background: var(--psa-red);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

/* Shared across: index.vue, [sellerId].vue */
.btn-request-buy:hover {
  background: #1d4ed8;
}

/* Shared across: index.vue, [sellerId].vue */
.empty-cards-state {
  grid-column: span 2;
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
  padding: 40px 20px;
}

/* Shared across: index.vue, [sellerId].vue */
.card-item-sold {
  opacity: 0.75;
}

/* Shared across: index.vue, [sellerId].vue */
.sold-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

/* Shared across: index.vue, [sellerId].vue */
.sold-badge-text {
  background: #dc2626;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  transform: rotate(-5deg);
}

/* Shared across: index.vue, [sellerId].vue */
.btn-sold {
  background: #94a3b8 !important;
  color: #ffffff !important;
  cursor: not-allowed;
  box-shadow: none !important;
}

/* Shared across: [sellerId].vue, index.vue, explore.vue, wtb.vue */
.back-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  transition: background 0.2s;
  padding: 0;
  flex-shrink: 0;
}

/* Shared across: [sellerId].vue */
.back-btn:hover {
  background: #f1f5f9;
}

/* Shared across: [sellerId].vue, index.vue, explore.vue, register.vue, wtb.vue */
.back-icon {
  width: 20px;
  height: 20px;
}

/* Shared across: [sellerId].vue */
.breadcrumb-header-title {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

/* Shared across: [sellerId].vue */
.breadcrumb-link-event {
  font-size: 0.72rem;
  color: var(--psa-red);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

/* Shared across: [sellerId].vue */
.breadcrumb-link-event:hover {
  text-decoration: underline;
}

/* Shared across: [sellerId].vue */
.header-main-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Shared across: [sellerId].vue */
.app-content-scrollable {
  flex-grow: 1;
  width: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  background-color: #f8fafc;
  padding-bottom: 24px;
}

/* Shared across: [sellerId].vue */
.seller-profile-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  padding: 20px;
  margin: 16px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Shared across: [sellerId].vue */
.profile-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

/* Shared across: [sellerId].vue */
.avatar-and-names {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Shared across: [sellerId].vue */
.seller-avatar-large {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
}

/* Shared across: [sellerId].vue */
.seller-identity {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Shared across: [sellerId].vue */
.seller-full-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Shared across: [sellerId].vue */
.seller-username {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* Shared across: [sellerId].vue */
.seller-badges-row {
  display: flex;
  gap: 6px;
  margin-top: 2px;
}

/* Shared across: [sellerId].vue */
.badge-gold {
  border: 1px solid #fbbf24;
  color: #d97706;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 6px;
  background-color: #fffbeb;
  text-transform: uppercase;
}

/* Shared across: [sellerId].vue */
.badge-verified {
  background-color: #dcfce7;
  color: #15803d;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 6px;
}

/* Shared across: [sellerId].vue */
.profile-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

/* Shared across: [sellerId].vue */
.btn-follow {
  border: 1.5px solid var(--psa-red);
  background: #ffffff;
  color: var(--psa-red);
  font-size: 0.72rem;
  font-weight: 700;
  height: 28px;
  padding: 0 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  justify-content: center;
  min-width: 82px;
}

/* Shared across: [sellerId].vue */
.btn-follow:hover {
  background: #eff6ff;
}

/* Shared across: [sellerId].vue */
.btn-following-active {
  background: var(--psa-red);
  color: #ffffff;
}

/* Shared across: [sellerId].vue */
.btn-following-active:hover {
  background: #1d4ed8;
}

/* Shared across: [sellerId].vue */
.btn-message {
  border: 1.5px solid var(--psa-red);
  background: #ffffff;
  color: var(--psa-red);
  font-size: 0.72rem;
  font-weight: 700;
  height: 28px;
  padding: 0 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  justify-content: center;
}

/* Shared across: [sellerId].vue */
.btn-message:hover {
  background: #eff6ff;
}

/* Shared across: [sellerId].vue */
.seller-meta-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #64748b;
  flex-wrap: wrap;
}

/* Shared across: [sellerId].vue */
.meta-stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Shared across: [sellerId].vue */
.meta-stat-icon-gold {
  width: 14px;
  height: 14px;
  color: #fbbf24;
  fill: #fbbf24;
}

/* Shared across: [sellerId].vue */
.meta-stat-text {
  font-family: 'Inter', sans-serif;
}

/* Shared across: [sellerId].vue */
.meta-stat-text strong {
  color: #0f172a;
}

/* Shared across: [sellerId].vue */
.stat-dot-separator {
  color: #cbd5e1;
}

/* Shared across: [sellerId].vue */
.seller-description-quote {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Shared across: [sellerId].vue */
.participating-banner {
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 14px 16px;
  margin: 0 16px 16px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  min-height: 56px;
  box-sizing: border-box;
}

/* Shared across: [sellerId].vue */
.blue-sidebar-marker {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--psa-red);
}

/* Shared across: [sellerId].vue */
.banner-marker-icon {
  width: 18px;
  height: 18px;
  color: var(--psa-red);
  flex-shrink: 0;
}

/* Shared across: [sellerId].vue */
.banner-marker-text {
  font-size: 0.76rem;
  color: #1e40af;
  line-height: 1.4;
}

/* Shared across: [sellerId].vue */
.filters-and-sorting-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  margin-bottom: 16px;
  gap: 8px;
}

/* Shared across: [sellerId].vue */
.horizontal-scroll-filters {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  flex-grow: 1;
}

/* Shared across: [sellerId].vue */
.filter-tab-pill {
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

/* Shared across: [sellerId].vue */
.filter-tab-pill:hover {
  border-color: #94a3b8;
  color: #0f172a;
}

/* Shared across: [sellerId].vue */
.filter-tab-pill.filter-tab-active {
  background: var(--psa-red);
  border-color: var(--psa-red);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

/* Shared across: [sellerId].vue */
.sort-selector-wrapper {
  position: relative;
  flex-shrink: 0;
}

/* Shared across: [sellerId].vue */
.btn-sort-toggle {
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

/* Shared across: [sellerId].vue */
.btn-sort-toggle:hover {
  border-color: #94a3b8;
}

/* Shared across: [sellerId].vue */
.chevron-sort {
  width: 13px;
  height: 13px;
  color: #64748b;
}

/* Shared across: [sellerId].vue */
.sort-dropdown-box {
  position: absolute;
  top: 110%;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 4px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  min-width: 140px;
}

/* Shared across: [sellerId].vue */
.sort-dropdown-option {
  border: none;
  background: transparent;
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}

/* Shared across: [sellerId].vue */
.sort-dropdown-option:hover {
  background: #f1f5f9;
  color: #0f172a;
}

/* Shared across: [sellerId].vue */
.sort-dropdown-option.option-active {
  background: #eff6ff;
  color: var(--psa-red);
}

/* Shared across: [sellerId].vue */
.seller-cards-grid {
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  box-sizing: border-box;
}

/* Shared across: [sellerId].vue */
.tag-badge-right {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Shared across: [sellerId].vue */
.tag-sale {
  background: #e2e8f0;
  color: #334155;
}

/* Shared across: [sellerId].vue */
.tag-auction {
  background: #fee2e2;
  color: #ef4444;
}

/* Shared across: index.vue, explore.vue, wtb.vue */
.search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 6px 16px;
  box-sizing: border-box;
  width: 100%;
}

/* Shared across: index.vue, explore.vue, register.vue, wtb.vue */
.back-btn:hover {
  background: #e2e8f0;
}

/* Shared across: index.vue, explore.vue, wtb.vue */
.search-input-wrapper {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 8px 12px;
  gap: 8px;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
  flex-grow: 1;
  box-sizing: border-box;
}

/* Shared across: index.vue, explore.vue, wtb.vue */
.search-input-wrapper:focus-within {
  background: #ffffff;
  border-color: var(--psa-red);
  box-shadow: 0 0 0 3px rgba(43, 68, 210, 0.1);
}

/* Shared across: index.vue, explore.vue, wtb.vue */
.search-icon {
  width: 16px;
  height: 16px;
  color: #94a3b8;
  flex-shrink: 0;
}

/* Shared across: index.vue, explore.vue, wtb.vue */
.search-input {
  border: none;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  width: 100%;
  outline: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 0;
  box-sizing: border-box;
}

/* Shared across: index.vue, explore.vue, wtb.vue */
.search-input::placeholder {
  color: #94a3b8;
}

/* Shared across: index.vue, explore.vue, wtb.vue */
.clear-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Shared across: index.vue, explore.vue, wtb.vue */
.clear-icon {
  width: 14px;
  height: 14px;
  color: #94a3b8;
  transition: color 0.2s;
}

/* Shared across: index.vue, explore.vue, wtb.vue */
.clear-icon:hover {
  color: #475569;
}

/* Shared across: index.vue, explore.vue, wtb.vue */
.sub-nav-tabs {
  display: flex;
  gap: 20px;
  padding: 0 20px 8px 20px;
  margin-top: 4px;
  box-sizing: border-box;
}

/* Shared across: index.vue, explore.vue, wtb.vue */
.sub-nav-tab {
  border: none;
  width: 33%;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 700;
  color: #94a3b8;
  padding: 6px 0;
  cursor: pointer;
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.2s;
}

/* Shared across: index.vue, explore.vue, wtb.vue */
.sub-nav-tab:hover {
  color: #475569;
}

/* Shared across: index.vue, explore.vue, wtb.vue */
.sub-nav-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--psa-red);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

/* Shared across: index.vue, explore.vue, wtb.vue */
.sub-nav-tab.sub-nav-active {
  color: var(--psa-red);
}

/* Shared across: index.vue, explore.vue, wtb.vue */
.sub-nav-tab.sub-nav-active::after {
  transform: scaleX(1);
}

/* Shared across: index.vue, explore.vue */
.empty-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px 0;
}

/* Shared across: index.vue, explore.vue */
.empty-desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  max-width: 250px;
}