* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #010101;
  --bg-darker: #060606;
  --text-light: #c7c7c7;
  --accent-red: #b13b6b;
  --accent-red-dark: #6d1f3f;
  --color-esorting: #E91E63;
  --color-chaines: #8D6E63;
  --color-organes: #C62828;
  --color-vol: #455A64;
  --color-drogues: #9575CD;
  --color-armes: #616161;
  --color-faux: #FFA726;
  --color-animaux: #2E7D32;
  --color-contrat: #B71C1C;
  --color-occulte: #4A148C;
  --color-donnees: #3F51B5;
  --color-boutique: #f2c94c;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-page {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #020202 0%, #060606 100%);
  position: relative;
  overflow: hidden;
  display: none;
}

.landing-page.active {
  display: flex;
}

.smoke-container {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  filter: blur(45px);
}

.smoke {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.smoke:nth-child(1) { top: -100px; left: 10%; }
.smoke:nth-child(2) { top: 100px; right: 5%; }
.smoke:nth-child(3) { bottom: -50px; left: 50%; }

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #6b6b6b;
  border-radius: 50%;
  opacity: 0.25;
}

.landing-header {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.logo-section { text-align: center; }

.logo-text {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--text-light);
  text-transform: uppercase;
}

.logo-text span { color: var(--accent-red); }

.logo-tagline {
  font-size: 12px;
  color: #888;
  letter-spacing: 2px;
  margin-top: 5px;
  text-transform: uppercase;
}

.landing-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.landing-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #bdbdbd;
  line-height: 1.2;
}

.buttons-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid #232323;
  background: #060606;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 2px;
  min-width: 150px;
}

.btn:hover {
  border-color: #4a4a4a;
  background: #0b0b0b;
}

/* primary action button: centered and blood red */
.btn-primary {
  background: #b30000;
  border-color: #7a0000;
  color: #fff;
  display: block;
  margin: 18px auto;
  min-width: 220px;
  padding: 12px 28px;
  font-weight: 700;
  letter-spacing: 0.22em;
  border-radius: 6px;
}

.btn-primary:hover {
  background: #990000;
  border-color: #660000;
}

.halo {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(177, 59, 107, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: pulse-halo 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse-halo {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.5; }
}

.marketplace-page {
  min-height: 100vh;
  background: var(--bg-dark);
  display: none;
  flex-direction: column;
}

.marketplace-page.active { display: flex; }

.marketplace-header {
  background: #040404;
  border-bottom: 1px solid #171717;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
}

.marketplace-logo {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
}

.marketplace-logo span { color: var(--accent-red); }

.search-bar { flex: 1; min-width: 200px; max-width: 400px; }
.search-bar input {
  width: 100%;
  padding: 12px 16px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: var(--text-light);
  border-radius: 4px;
  font-size: 14px;
}
.search-bar input::placeholder { color: #888; }

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-action-btn, .theme-toggle {
  background: transparent;
  border: 1px solid #333;
  color: var(--text-light);
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}

.notifications-panel {
  background: rgba(16, 16, 16, 0.98);
  border: 1px solid #222;
  border-radius: 8px;
  padding: 18px;
  margin: 20px auto 0;
  max-width: 1200px;
  width: calc(100% - 40px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.notifications-panel.hidden {
  display: none;
}

.notifications-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.notification-toast {
  position: fixed;
  inset: 24px auto auto auto;
  right: 24px;
  z-index: 1100;
  width: min(420px, calc(100% - 32px));
  pointer-events: none;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.notification-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.notification-toast.hidden {
  opacity: 0;
}

.notification-toast-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 18px 18px 16px;
  color: #111111;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.notification-toast-icon {
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  font-size: 20px;
  border-radius: 50%;
  background: #f4f4f4;
}

.notification-toast-category {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #c62828;
  margin-bottom: 8px;
}

.notification-toast-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #222222;
}

.notifications-title {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--accent-red);
  margin-bottom: 6px;
}

.notifications-subtitle {
  font-size: 12px;
  color: #999;
}

.notifications-close {
  background: transparent;
  border: 1px solid #333;
  color: var(--text-light);
  border-radius: 4px;
  width: 36px;
  height: 36px;
  font-size: 16px;
  cursor: pointer;
}

.notifications-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.notifications-item {
  background: #0c0c0c;
  border: 1px solid #1f1f1f;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.notice-icon {
  min-width: 38px;
  min-height: 38px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: rgba(177, 59, 107, 0.12);
  border-radius: 50%;
}

.notice-category {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-red);
  margin-bottom: 6px;
}

.notifications-item p {
  font-size: 13px;
  color: #ddd;
  line-height: 1.4;
}

.header-action-btn:hover, .theme-toggle:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.marketplace-content {
  flex: 1;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.category-card {
  background: #080808;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 18px;
}

.category-card:hover {
  border-color: #343434;
}

.category-icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.category-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.category-count {
  font-size: 12px;
  color: #888;
}

.category-esorting { color: var(--color-esorting); }
.category-chaines { color: var(--color-chaines); }
.category-organes { color: var(--color-organes); }
.category-vol { color: var(--color-vol); }
.category-drogues { color: var(--color-drogues); }
.category-armes { color: var(--color-armes); }
.category-faux { color: var(--color-faux); }
.category-animaux { color: var(--color-animaux); }
.category-contrat { color: var(--color-contrat); }
.category-occulte { color: var(--color-occulte); }
.category-donnees { color: var(--color-donnees); }
.category-boutique { color: var(--color-boutique); }

.category-card .category-name {
  color: currentColor;
}

.category-card .category-count {
  color: currentColor;
  opacity: 0.78;
}

.vehicle-zone {
  display: none;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 28px 40px;
  --category-accent: #E91E63;
  --category-accent-rgb: 233, 30, 99;
}

.vehicle-zone.active {
  display: block;
}

.vehicle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.vehicle-back {
  border: 1px solid #2d2d2d;
  background: #060606;
  color: #f3f3f3;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
}

.vehicle-label {
  margin: 0 0 4px;
  color: var(--category-accent);
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

#vehicleCurrentCategory {
  color: var(--category-accent);
}

.vehicle-intro {
  color: #b8b8b8;
  margin-bottom: 20px;
  max-width: 720px;
}

.vehicle-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(var(--category-accent-rgb), 0.25);
  border-radius: 12px;
  background: rgba(var(--category-accent-rgb), 0.06);
}

.vehicle-toolbar-title {
  color: var(--category-accent);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.vehicle-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vehicle-tab {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: #d9d9d9;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vehicle-tab.active {
  background: rgba(var(--category-accent-rgb), 0.2);
  border-color: rgba(var(--category-accent-rgb), 0.45);
  color: var(--category-accent);
}

.listing-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.listing-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(var(--category-accent-rgb), 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.15) 100%);
}

.listing-card:hover {
  border-color: rgba(var(--category-accent-rgb), 0.3);
}

.listing-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--category-accent-rgb), 0.2), rgba(255,255,255,0.04));
  min-height: 110px;
}

.listing-content h4 {
  color: var(--category-accent);
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.listing-content p {
  color: #b7b7b7;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 10px;
  text-transform: none;
}

.listing-meta {
  display: grid;
  gap: 6px;
  color: #d3d3d3;
  font-size: 0.85rem;
  text-transform: none;
}

.listing-meta strong {
  color: var(--category-accent);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal.active { display: flex; }
.modal-content {
  background: var(--bg-darker);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #333;
  max-width: 500px;
  width: 90%;
  text-align: center;
}
.modal-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.modal-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ccc;
}
.modal-text ul {
  display: inline-block;
  text-align: left;
  margin-top: 12px;
}
.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.modal-btn {
  flex: 1;
  padding: 12px;
  border: 1px solid #333;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.2s;
}
.modal-btn:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}
.modal-btn.accept {
  border-color: var(--accent-red);
  background: var(--accent-red);
  color: #000;
}
.modal-btn.accept:hover {
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
}

.sell-shell {
  min-height: 100vh;
  padding: 24px;
  background: #030303;
}

.sell-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.auth-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 32px;
}

.auth-brand {
  font-size: 1.2rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f8dce8;
}

.sell-shell.auth-only {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sell-shell.auth-only .sell-layout {
  grid-template-columns: 1fr;
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
}

.sell-shell.auth-only .sell-hero,
.sell-shell.auth-only .dashboard-card {
  display: none !important;
}

.sell-shell.auth-only .sell-header {
  display: none !important;
}

.sell-shell.auth-only .auth-header {
  display: flex !important;
}

.sell-shell.auth-only .form-card.sell-card {
  margin: 0 auto;
}

.sell-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.dashboard-grid {
  display: grid;
  gap: 20px;
}

.dashboard-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-card.is-hidden {
  display: none;
}

.section-title {
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: #f8dce8;
}

.auth-switch {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.auth-toggle-btn {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: #d9d9d9;
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
}

.auth-toggle-btn.active {
  border-color: var(--accent-red);
  background: rgba(233, 30, 99, 0.16);
  color: #f8dce8;
}

.auth-panel.is-hidden {
  display: none;
}

.is-hidden {
  display: none !important;
}

.account-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(233, 30, 99, 0.16);
  color: #f8dce8;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.wallet-panel, .publish-panel {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}

.wallet-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.wallet-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a0a0a0;
}

.wallet-balance {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f8dce8;
}

.wallet-form, .publish-form {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.wallet-form button, .publish-form button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: linear-gradient(90deg, var(--accent-red), #ff5c92);
  color: #fff;
  cursor: pointer;
}

.wallet-meta {
  margin-top: 10px;
  color: #c7c7c7;
  font-size: 0.92rem;
}

.publish-panel h3 {
  margin-bottom: 8px;
  color: #f8dce8;
}

.ads-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.ad-item {
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(0,0,0,0.2);
}

.ad-item strong {
  color: #f8dce8;
}

.sell-hero {
  padding: 36px;
  border-radius: 20px;
  background: #0a0a0a;
  border: 1px solid #1f1f1f;
  box-shadow: none;
}

.sell-hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  margin-bottom: 12px;
}

.sell-intro {
  color: #cfcfcf;
  font-size: 1rem;
  max-width: 560px;
}

.sell-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 55px rgba(0,0,0,0.25);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.compact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #d4d4d4;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #fff;
}

select {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

select option {
  color: #111;
  background: #f8f8f8;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.18);
}

.plan-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.plan-option {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.plan-option:hover {
  border-color: var(--accent-red);
  transform: translateY(-2px);
}

.plan-option input { width: auto; margin: 0 0 10px 0; }

.plan-option strong { display: block; font-size: 1.1rem; color: #fff; }
.plan-option small { display: block; margin-top:8px; color: #ff8ab6; font-weight:700; }
 
 .payment-summary {
   border: 1px solid rgba(255,255,255,0.12);
   background: rgba(255,255,255,0.03);
   border-radius: 18px;
   padding: 18px 20px;
   margin: 18px 0;
   text-align: center;
 }
 
 .payment-summary p {
   color: #f2f2f2;
   margin-bottom: 12px;
 }
 
 .payment-summary label {
   display: block;
   color: #d4d4d4;
   margin: 0 auto;
   max-width: 280px;
 }
 
 .payment-summary select {
   margin-top: 8px;
   width: 100%;
 }
 
 .payment-summary strong {
   color: #fff;
 }
 
 .payment-summary .btn-secondary {
   border-color: #7a0000;
   background: #8b0000;
   color: #fff;
   margin: 18px auto 0 auto;
   display: inline-block;
 }
 
 .payment-summary .btn-secondary:hover {
   background: #a30000;
 }
 
 .payment-summary #paymentMessage {
   display: none;
 }
+
/* Email Verification Styling */
.email-verify-intro {
  color: #d4d4d4;
  margin-bottom: 18px;
  line-height: 1.5;
}

#emailVerificationForm label {
  display: block;
  margin-bottom: 16px;
}

#emailVerificationForm input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #f3f3f3;
  font-size: 14px;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 500;
  box-sizing: border-box;
  transition: all 0.2s ease;
  margin-top: 8px;
}

#emailVerificationForm input[type="text"]:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 12px rgba(233, 30, 99, 0.2);
  background: rgba(255,255,255,0.06);
}

#emailVerificationForm .form-message {
  margin: 12px 0;
  font-size: 13px;
}

#emailVerificationForm .btn {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
}

#emailVerificationForm #resendCodeBtn {
  margin-top: 8px;
}

/* Payment Proof Styling */
.proof-intro {
  color: #d4d4d4;
  margin-bottom: 18px;
  line-height: 1.5;
}

.proof-payment-info {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
}

.proof-payment-info h3 {
  color: #fff;
  margin: 0 0 14px 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.proof-payment-info .form-group {
  margin-bottom: 12px;
}

.proof-payment-info label {
  display: block;
  color: #b0b0b0;
  font-size: 12px;
  margin-bottom: 6px;
  font-weight: 500;
}

.proof-payment-info input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #f3f3f3;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.proof-payment-info input:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 12px rgba(233, 30, 99, 0.2);
  background: rgba(255,255,255,0.06);
}

.proof-payment-info input[readonly] {
  cursor: not-allowed;
  color: #8a8a8a;
  background: rgba(255,255,255,0.02);
}

.proof-verification-method {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
}

.proof-verification-method h3 {
  color: #fff;
  margin: 0 0 14px 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.radio-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.radio-row input[type="radio"] {
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.radio-row label {
  cursor: pointer;
  color: #d4d4d4;
  font-size: 14px;
  margin: 0;
  flex: 1;
}

.verification-field {
  margin-top: 12px;
}

.verification-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #f3f3f3;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.verification-field input:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 12px rgba(233, 30, 99, 0.2);
  background: rgba(255,255,255,0.06);
}

.proof-upload-section {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px;
}

.proof-upload-section h3 {
  color: #fff;
  margin: 0 0 14px 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.proof-upload-section label {
  display: block;
  color: #b0b0b0;
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: 500;
}

.proof-upload-section input[type="file"] {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  color: #f3f3f3;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.proof-upload-section input[type="file"]:hover {
  border-color: var(--accent-red);
  background: rgba(255,255,255,0.04);
}

.proof-upload-section input[type="file"]:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 12px rgba(233, 30, 99, 0.15);
  background: rgba(255,255,255,0.06);
}

.is-hidden {
  display: none !important;
}
  color: var(--accent-red);
  font-weight: 600;
}

.listing-locked {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
  font-size: 2rem;
  color: #f0f0f0;
}

.restricted .muted {
  color: #9a9a9a;
  margin-bottom: 8px;
}

.btn-small {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
}

.btn-small:hover {
  border-color: var(--accent-red);
}

@media (max-width: 900px) {
  .sell-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .marketplace-header { flex-direction: column; gap: 15px; }
  .search-bar { max-width: 100%; }
  .buttons-container { gap: 20px; }
  .btn {
    min-width: 160px;
    padding: 12px 32px;
    font-size: 14px;
  }
  .landing-title { font-size: 32px; }
  .marketplace-content {
    padding: 20px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
  }
  .listing-grid {
    grid-template-columns: 1fr;
  }
  .listing-card {
    grid-template-columns: 1fr;
  }
  .listing-photo {
    min-height: 90px;
  }
  .sell-shell { padding: 16px; }
  .sell-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sell-hero, .sell-card { padding: 20px; }
  .form-grid, .plan-selector, .compact-grid {
    grid-template-columns: 1fr;
  }
}
