/* =========================================
   MARKETPLACE - GLOBAL
========================================= */

.marketplace-sell-page,
.marketplace-listing-page,
.marketplace-listings-page,
.marketplace-sold-page {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 80px;
}

/* =========================================
   MARKETPLACE HOME
========================================= */

.marketplace-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
  width: min(1200px, calc(100% - 40px));
  min-height: 560px;
  margin: 0 auto;
  padding: 120px 0 80px;
}

.marketplace-hero-content h1 {
  max-width: 620px;
  margin: 0 0 20px;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
}

.marketplace-hero-content h1 span,
.marketplace-section-heading h2 span {
  display: block;
  font-style: italic;
}

.marketplace-hero-content > p:not(.section-tag) {
  max-width: 550px;
  margin: 0 0 30px;
  font-size: 17px;
  line-height: 1.8;
  color: #666;
}

.marketplace-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.marketplace-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  overflow: hidden;
  border-radius: 24px;
  background: #f4f4f4;
}

.marketplace-hero-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 70px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.marketplace-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
}

.marketplace-floating-card i {
  font-size: 18px;
}

.marketplace-floating-card.card-one,
.marketplace-sell-floating-card.card-one {
  top: 60px;
  left: 30px;
}

.marketplace-floating-card.card-two,
.marketplace-sell-floating-card.card-two {
  right: 25px;
  bottom: 60px;
}

.marketplace-page {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 80px;
}

.marketplace-page .marketplace-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.marketplace-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: #111;
}

.marketplace-text-link:hover i {
  transform: translateX(4px);
}

.marketplace-text-link i {
  transition: transform 0.25s ease;
}

.marketplace-search-section {
  margin-bottom: 25px;
}

.marketplace-search-form {
  display: flex;
  gap: 12px;
}

.marketplace-search-box {
  position: relative;
  flex: 1;
}

.marketplace-search-box i {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: #888;
}

.marketplace-search-box input {
  width: 100%;
  padding: 15px 18px 15px 48px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.marketplace-search-box input:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.marketplace-search-btn {
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.marketplace-search-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.marketplace-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.marketplace-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  color: #777;
}

.marketplace-results-header p,
.marketplace-results-header span {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.marketplace-results-header strong {
  color: #111;
}

.marketplace-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.marketplace-product-card {
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.marketplace-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
}

.marketplace-product-image {
  position: relative;
  display: block;
  height: 260px;
  overflow: hidden;
}

.marketplace-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.marketplace-product-card:hover .marketplace-product-image img {
  transform: scale(1.05);
}

.marketplace-condition {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 10px;
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.9);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.marketplace-product-content {
  padding: 20px;
}

.marketplace-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
}

.marketplace-wishlist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  color: #555;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.marketplace-wishlist-btn:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

.marketplace-product-content h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.marketplace-product-content h3 a {
  color: #222;
}

.marketplace-seller {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.marketplace-seller-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f1f1;
  color: #333;
  font-size: 12px;
  font-weight: 700;
}

.marketplace-seller span,
.marketplace-seller strong {
  display: block;
}

.marketplace-seller span {
  margin-bottom: 3px;
  color: #999;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.7px;
}

.marketplace-seller strong,
.marketplace-seller small {
  font-size: 11px;
}

.marketplace-seller small {
  color: #777;
  white-space: nowrap;
}

.marketplace-seller small i {
  margin-right: 3px;
}

/* =========================================
   BACK BUTTON
========================================= */

.marketplace-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 40px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;

  color: #222;

  transition: 0.3s ease;
}

.marketplace-back-btn:hover {
  transform: translateX(-5px);
}

/* =========================================
   COMMON BUTTONS
========================================= */

.marketplace-primary-btn,
.marketplace-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 24px;

  border-radius: 8px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;

  transition: 0.3s ease;
}

.marketplace-primary-btn {
  background: #111;
  color: #fff;
}

.marketplace-primary-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.marketplace-secondary-btn {
  background: #fff;

  color: #111;

  border: 1px solid #ddd;
}

.marketplace-secondary-btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

/* =========================================
   SECTION TAG
========================================= */

.section-tag {
  margin-bottom: 12px;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;

  color: #777;
}

/* =========================================
   SELL PAGE HERO
========================================= */

.marketplace-sell-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;

  gap: 70px;

  align-items: center;

  min-height: 500px;

  margin-bottom: 70px;
}

.marketplace-sell-hero-content h1,
.marketplace-listing-header h1,
.marketplace-listings-header h1,
.marketplace-sold-header h1 {
  margin-bottom: 20px;

  font-family: "Playfair Display", serif;

  font-size: clamp(42px, 6vw, 72px);

  line-height: 1.05;
}

.marketplace-sell-hero-content h1 span,
.marketplace-listing-header h1 span,
.marketplace-listings-header h1 span,
.marketplace-sold-header h1 span,
.marketplace-performance-content h2 span,
.marketplace-guidelines-content h2 span,
.marketplace-bottom-cta h2 span,
.marketplace-sold-impact h2 span {
  font-style: italic;
}

.marketplace-sell-hero-content > p:not(.section-tag) {
  max-width: 550px;

  margin-bottom: 30px;

  font-size: 17px;
  line-height: 1.8;

  color: #666;
}

.marketplace-sell-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 15px;
}

/* =========================================
   SELL HERO VISUAL
========================================= */

.marketplace-sell-visual {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 400px;

  border-radius: 24px;

  background: #f4f4f4;

  overflow: hidden;
}

.marketplace-sell-main-icon {
  width: 180px;
  height: 180px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #111;

  color: #fff;

  font-size: 70px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.marketplace-sell-floating-card {
  position: absolute;

  display: flex;
  align-items: center;

  gap: 10px;

  padding: 14px 18px;

  background: #fff;

  border-radius: 10px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.7px;
}

.marketplace-sell-floating-card i {
  font-size: 18px;
}

/* =========================================
   SELLER STATISTICS
========================================= */

.marketplace-seller-stats-grid,
.marketplace-listings-stats-grid,
.marketplace-sold-stats-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;

  margin-bottom: 90px;
}

.marketplace-seller-stat-card,
.marketplace-listings-stat-card,
.marketplace-sold-stat-card {
  display: flex;

  align-items: center;

  gap: 15px;

  padding: 22px;

  border: 1px solid #e8e8e8;

  border-radius: 12px;

  background: #fff;
}

.marketplace-stat-icon {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #f4f4f4;

  font-size: 18px;
}

.marketplace-seller-stat-card span,
.marketplace-listings-stat-card span,
.marketplace-sold-stat-card span {
  display: block;

  margin-bottom: 5px;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 1px;

  color: #888;
}

.marketplace-seller-stat-card strong,
.marketplace-listings-stat-card strong,
.marketplace-sold-stat-card strong {
  font-size: 23px;
}

/* =========================================
   COMMON SECTION
========================================= */

.marketplace-sell-section {
  margin-bottom: 100px;
}

.marketplace-section-heading {
  margin-bottom: 40px;
}

.marketplace-section-heading h2,
.marketplace-guidelines-content h2,
.marketplace-performance-content h2,
.marketplace-bottom-cta h2,
.marketplace-sold-impact h2 {
  margin: 0;

  font-family: "Playfair Display", serif;

  font-size: clamp(34px, 4vw, 52px);

  line-height: 1.1;
}

/* =========================================
   SELL STEPS
========================================= */

.marketplace-steps-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.marketplace-step-card {
  position: relative;

  padding: 30px;

  border: 1px solid #e8e8e8;

  border-radius: 12px;

  background: #fff;

  transition: 0.3s ease;
}

.marketplace-step-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
}

.marketplace-step-number {
  position: absolute;

  top: 20px;
  right: 20px;

  font-size: 12px;

  font-weight: 700;

  color: #aaa;
}

.marketplace-step-icon {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  border-radius: 12px;

  background: #111;

  color: #fff;

  font-size: 20px;
}

.marketplace-step-card h3 {
  margin-bottom: 12px;

  font-size: 15px;
}

.marketplace-step-card p {
  margin: 0;

  font-size: 14px;

  line-height: 1.7;

  color: #777;
}

/* =========================================
   GUIDELINES
========================================= */

.marketplace-guidelines-section {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 80px;

  padding: 70px;

  margin-bottom: 100px;

  border-radius: 20px;

  background: #f5f5f5;
}

.marketplace-guidelines-content > p:not(.section-tag) {
  margin-top: 20px;

  line-height: 1.8;

  color: #666;
}

.marketplace-guidelines-list {
  display: grid;

  gap: 25px;
}

.marketplace-guideline-item {
  display: flex;

  gap: 15px;
}

.marketplace-guideline-item > i {
  margin-top: 4px;

  font-size: 18px;
}

.marketplace-guideline-item h3 {
  margin-bottom: 7px;

  font-size: 14px;
}

.marketplace-guideline-item p {
  margin: 0;

  font-size: 14px;

  line-height: 1.7;

  color: #666;
}

/* =========================================
   BOTTOM CTA
========================================= */

.marketplace-bottom-cta {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 40px;

  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 80px;

  padding: 60px;

  border-radius: 20px;

  background: #111;

  color: #fff;
}

.marketplace-bottom-cta .section-tag {
  color: #aaa;
}

.marketplace-bottom-cta p:not(.section-tag) {
  max-width: 550px;

  margin-top: 20px;

  line-height: 1.8;

  color: #bbb;
}

.marketplace-bottom-cta .marketplace-primary-btn {
  flex-shrink: 0;

  background: #fff;

  color: #111;
}

/* =========================================
   CREATE / EDIT LISTING
========================================= */

.marketplace-listing-header {
  max-width: 700px;

  margin-bottom: 50px;
}

.marketplace-listing-header > p:not(.section-tag) {
  font-size: 16px;

  line-height: 1.8;

  color: #666;
}

/* =========================================
   FORM MESSAGE
========================================= */

.marketplace-form-message {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 16px 20px;

  margin-bottom: 30px;

  border-radius: 10px;

  font-size: 14px;

  font-weight: 500;
}

.marketplace-form-message.success {
  background: #edf8f0;

  color: #217a3c;
}

.marketplace-form-message.error {
  background: #fff0f0;

  color: #b52b2b;
}

/* =========================================
   FORM
========================================= */

.marketplace-listing-form {
  display: grid;

  gap: 25px;
}

.marketplace-form-section {
  padding: 35px;

  border: 1px solid #e8e8e8;

  border-radius: 15px;

  background: #fff;
}

.marketplace-form-section-heading {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 30px;

  padding-bottom: 25px;

  border-bottom: 1px solid #eee;
}

.marketplace-form-section-icon {
  width: 50px;
  height: 50px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #f3f3f3;

  font-size: 18px;
}

.marketplace-form-section-heading h2 {
  margin: 0 0 6px;

  font-size: 16px;

  letter-spacing: 0.5px;
}

.marketplace-form-section-heading p {
  margin: 0;

  font-size: 13px;

  color: #777;
}

/* =========================================
   FORM GRID
========================================= */

.marketplace-form-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 22px;
}

.marketplace-form-group {
  display: flex;

  flex-direction: column;

  gap: 9px;
}

.marketplace-form-group.full-width {
  grid-column: 1 / -1;
}

.marketplace-form-group label {
  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.7px;
}

.marketplace-form-group label > span {
  color: #c62828;
}

.marketplace-form-group label small {
  margin-left: 6px;

  font-size: 9px;

  font-weight: 600;

  color: #999;
}

.marketplace-form-group input,
.marketplace-form-group select,
.marketplace-form-group textarea {
  width: 100%;

  padding: 14px 15px;

  border: 1px solid #ddd;

  border-radius: 8px;

  background: #fff;

  font-family: inherit;

  font-size: 14px;

  outline: none;

  transition: 0.25s ease;
}

.marketplace-form-group textarea {
  resize: vertical;

  line-height: 1.7;
}

.marketplace-form-group input:focus,
.marketplace-form-group select:focus,
.marketplace-form-group textarea:focus {
  border-color: #111;

  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* =========================================
   PRICE INPUT
========================================= */

.marketplace-input-prefix {
  position: relative;
}

.marketplace-input-prefix span {
  position: absolute;

  top: 50%;
  left: 15px;

  transform: translateY(-50%);

  font-weight: 700;

  color: #555;
}

.marketplace-input-prefix input {
  padding-left: 35px;
}

/* =========================================
   FORM HELP
========================================= */

.marketplace-form-help {
  font-size: 11px;

  line-height: 1.5;

  color: #888;
}

/* =========================================
   IMAGE UPLOAD
========================================= */

.marketplace-upload-area {
  width: 100%;
}

.marketplace-upload-label {
  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  min-height: 250px;

  padding: 30px;

  border: 2px dashed #ccc;

  border-radius: 12px;

  cursor: pointer;

  text-align: center;

  transition: 0.3s ease;
}

.marketplace-upload-label:hover {
  border-color: #111;

  background: #fafafa;
}

.marketplace-upload-icon {
  width: 60px;
  height: 60px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 15px;

  border-radius: 50%;

  background: #f2f2f2;

  font-size: 22px;
}

.marketplace-upload-label h3 {
  margin-bottom: 8px;

  font-size: 14px;
}

.marketplace-upload-label p {
  margin: 0 0 12px;

  font-size: 12px;

  color: #888;
}

.marketplace-upload-label span {
  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;
}

/* =========================================
   IMAGE PREVIEW
========================================= */

.marketplace-image-preview {
  margin-top: 20px;
}

.marketplace-image-preview img,
.marketplace-current-image img {
  width: 100%;

  max-width: 400px;

  height: 300px;

  object-fit: cover;

  border-radius: 12px;

  border: 1px solid #e5e5e5;
}

.marketplace-current-image {
  margin-bottom: 25px;
}

/* =========================================
   FORM ACTIONS
========================================= */

.marketplace-form-actions {
  display: flex;

  justify-content: flex-end;

  gap: 15px;

  padding-top: 10px;
}

/* =========================================
   EDIT LISTING STATUS
========================================= */

.marketplace-current-listing-status {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.marketplace-current-listing-status > div {
  display: flex;

  align-items: center;

  gap: 15px;
}

.marketplace-current-listing-status span {
  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.7px;

  color: #777;
}

.marketplace-view-listing-btn {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  font-size: 12px;

  font-weight: 700;

  color: #111;
}

/* =========================================
   LISTING STATUS
========================================= */

.marketplace-listing-status {
  display: inline-flex;

  align-items: center;

  padding: 6px 10px;

  border-radius: 20px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.5px;
}

.marketplace-listing-status.active {
  background: #eaf8ee;

  color: #237a3b;
}

.marketplace-listing-status.pending {
  background: #fff7df;

  color: #9a6b00;
}

/* =========================================
   MY LISTINGS HEADER
========================================= */

.marketplace-listings-header,
.marketplace-sold-header {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 50px;
}

.marketplace-listings-header > div:first-child,
.marketplace-sold-header > div:first-child {
  max-width: 650px;
}

.marketplace-listings-header p:not(.section-tag),
.marketplace-sold-header p:not(.section-tag) {
  line-height: 1.8;

  color: #666;
}

.marketplace-listings-header-actions {
  display: flex;

  gap: 12px;

  flex-shrink: 0;
}

/* =========================================
   LISTING FILTERS
========================================= */

.marketplace-listings-filters,
.marketplace-sold-filters {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 35px;
}

.marketplace-category-btn {
  padding: 10px 18px;

  border: 1px solid #ddd;

  border-radius: 30px;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.6px;

  color: #555;

  transition: 0.25s ease;
}

.marketplace-category-btn:hover,
.marketplace-category-btn.active {
  background: #111;

  border-color: #111;

  color: #fff;
}

/* =========================================
   MY LISTINGS GRID
========================================= */

.marketplace-my-listings-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.marketplace-my-listing-card {
  overflow: hidden;

  border: 1px solid #e8e8e8;

  border-radius: 14px;

  background: #fff;

  transition: 0.3s ease;
}

.marketplace-my-listing-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
}

.marketplace-my-listing-image {
  position: relative;

  display: block;

  height: 260px;

  overflow: hidden;
}

.marketplace-my-listing-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.4s ease;
}

.marketplace-my-listing-card:hover .marketplace-my-listing-image img {
  transform: scale(1.05);
}

.marketplace-my-listing-image .marketplace-listing-status {
  position: absolute;

  top: 15px;
  left: 15px;
}

.marketplace-my-listing-content {
  padding: 20px;
}

.marketplace-listing-category-row {
  display: flex;

  justify-content: space-between;

  gap: 15px;

  margin-bottom: 12px;
}

.marketplace-category {
  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;

  color: #777;
}

.marketplace-listing-date {
  font-size: 10px;

  color: #999;
}

.marketplace-my-listing-content h3 {
  margin-bottom: 10px;

  font-size: 17px;
}

.marketplace-product-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 16px;

  font-size: 11px;

  color: #777;
}

.marketplace-product-meta strong {
  color: #222;
}

.marketplace-price {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 18px;
}

.marketplace-price strong {
  font-size: 21px;
}

.marketplace-price span {
  font-size: 12px;

  text-decoration: line-through;

  color: #999;
}

/* =========================================
   LISTING PERFORMANCE
========================================= */

.marketplace-listing-performance {
  display: flex;

  gap: 18px;

  margin-bottom: 18px;

  padding-bottom: 18px;

  border-bottom: 1px solid #eee;
}

.marketplace-listing-performance span {
  display: flex;

  align-items: center;

  gap: 6px;

  font-size: 12px;

  color: #777;
}

/* =========================================
   LISTING ACTIONS
========================================= */

.marketplace-listing-actions {
  display: flex;

  gap: 10px;
}

.marketplace-edit-btn,
.marketplace-remove-btn {
  flex: 1;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  padding: 10px;

  border-radius: 7px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.5px;
}

.marketplace-edit-btn {
  background: #111;

  color: #fff;
}

.marketplace-remove-btn {
  border: 1px solid #ddd;

  color: #555;
}

/* =========================================
   EMPTY STATE
========================================= */

.marketplace-empty-state {
  grid-column: 1 / -1;

  display: flex;

  flex-direction: column;

  align-items: center;

  padding: 80px 20px;

  text-align: center;

  border: 1px dashed #ddd;

  border-radius: 15px;
}

.marketplace-empty-icon {
  width: 70px;
  height: 70px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  border-radius: 50%;

  background: #f4f4f4;

  font-size: 25px;
}

.marketplace-empty-state h3 {
  margin-bottom: 10px;
}

.marketplace-empty-state p {
  margin-bottom: 25px;

  color: #777;
}

/* =========================================
   PERFORMANCE SECTION
========================================= */

.marketplace-performance-section {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 50px;

  margin-top: 80px;

  padding: 60px;

  border-radius: 20px;

  background: #f4f4f4;
}

.marketplace-performance-content {
  max-width: 700px;
}

.marketplace-performance-content > p:not(.section-tag) {
  margin-top: 20px;

  line-height: 1.8;

  color: #666;
}

.marketplace-performance-icon {
  width: 120px;
  height: 120px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #111;

  color: #fff;

  font-size: 40px;
}

/* =========================================
   SOLD PAGE
========================================= */

.marketplace-sold-stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* =========================================
   SOLD ITEMS
========================================= */

.marketplace-sold-items-list {
  display: grid;

  gap: 20px;
}

.marketplace-sold-item-card {
  display: grid;

  grid-template-columns: 180px 1fr 220px;

  gap: 25px;

  align-items: center;

  padding: 20px;

  border: 1px solid #e8e8e8;

  border-radius: 14px;

  background: #fff;
}

.marketplace-sold-item-image {
  position: relative;

  height: 160px;

  overflow: hidden;

  border-radius: 10px;
}

.marketplace-sold-item-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.marketplace-sold-badge {
  position: absolute;

  top: 10px;
  left: 10px;

  display: inline-flex;

  align-items: center;

  gap: 5px;

  padding: 6px 9px;

  border-radius: 20px;

  background: #111;

  color: #fff;

  font-size: 9px;

  font-weight: 700;
}

.marketplace-sold-item-details h2 {
  margin: 10px 0;

  font-size: 20px;
}

.marketplace-sold-buyer {
  display: flex;

  align-items: center;

  gap: 7px;

  margin: 0;

  font-size: 12px;

  color: #777;
}

.marketplace-sold-buyer strong {
  color: #222;
}

/* =========================================
   SALE SUMMARY
========================================= */

.marketplace-sale-summary {
  display: grid;

  gap: 16px;

  padding-left: 25px;

  border-left: 1px solid #eee;
}

.marketplace-sale-summary span {
  display: block;

  margin-bottom: 5px;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.8px;

  color: #999;
}

.marketplace-sale-summary strong {
  font-size: 24px;
}

.marketplace-sale-summary p {
  margin: 0;

  font-size: 12px;

  color: #555;
}

.marketplace-sale-complete {
  display: inline-flex !important;

  align-items: center;

  gap: 6px;

  color: #2d7a43 !important;
}

/* =========================================
   SOLD IMPACT SECTION
========================================= */

.marketplace-sold-impact {
  display: flex;

  align-items: center;

  gap: 35px;

  margin-top: 80px;

  padding: 60px;

  border-radius: 20px;

  background: #111;

  color: #fff;
}

.marketplace-sold-impact-icon {
  width: 90px;
  height: 90px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #fff;

  color: #111;

  font-size: 32px;
}

.marketplace-sold-impact .section-tag {
  color: #aaa;
}

.marketplace-sold-impact p:not(.section-tag) {
  max-width: 700px;

  margin-top: 15px;

  line-height: 1.8;

  color: #bbb;
}

/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 1000px) {
  .marketplace-hero {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-bottom: 60px;
  }

  .marketplace-hero-visual {
    min-height: 350px;
  }

  .marketplace-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marketplace-sell-hero {
    grid-template-columns: 1fr;
  }

  .marketplace-sell-visual {
    min-height: 350px;
  }

  .marketplace-seller-stats-grid,
  .marketplace-listings-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .marketplace-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .marketplace-guidelines-section {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .marketplace-my-listings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .marketplace-sold-item-card {
    grid-template-columns: 150px 1fr;
  }

  .marketplace-sale-summary {
    grid-column: 1 / -1;

    grid-template-columns: repeat(3, 1fr);

    padding: 20px 0 0;

    border-left: none;

    border-top: 1px solid #eee;
  }
}

/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 650px) {
  .marketplace-hero,
  .marketplace-page,
  .marketplace-bottom-cta {
    width: min(100% - 30px, 1200px);
  }

  .marketplace-hero {
    min-height: auto;
    padding-top: 100px;
  }

  .marketplace-hero-visual {
    min-height: 300px;
  }

  .marketplace-hero-circle {
    width: 140px;
    height: 140px;
    font-size: 55px;
  }

  .marketplace-floating-card {
    padding: 10px 12px;
    font-size: 9px;
  }

  .marketplace-floating-card.card-one,
  .marketplace-sell-floating-card.card-one {
    top: 30px;
    left: 15px;
  }

  .marketplace-floating-card.card-two,
  .marketplace-sell-floating-card.card-two {
    right: 15px;
    bottom: 30px;
  }

  .marketplace-page .marketplace-section-heading,
  .marketplace-results-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .marketplace-search-form {
    flex-direction: column;
  }

  .marketplace-search-btn {
    min-height: 48px;
  }

  .marketplace-product-grid {
    grid-template-columns: 1fr;
  }

  .marketplace-seller {
    grid-template-columns: 34px 1fr;
  }

  .marketplace-seller small {
    grid-column: 2;
    white-space: normal;
  }

  .marketplace-sell-page,
  .marketplace-listing-page,
  .marketplace-listings-page,
  .marketplace-sold-page {
    width: min(100% - 30px, 1200px);

    padding-top: 100px;
  }

  .marketplace-sell-hero {
    gap: 40px;
  }

  .marketplace-sell-visual {
    min-height: 300px;
  }

  .marketplace-sell-main-icon {
    width: 140px;
    height: 140px;

    font-size: 55px;
  }

  .marketplace-sell-floating-card {
    padding: 10px 12px;

    font-size: 9px;
  }

  .marketplace-seller-stats-grid,
  .marketplace-listings-stats-grid,
  .marketplace-sold-stats-grid {
    grid-template-columns: 1fr;
  }

  .marketplace-steps-grid {
    grid-template-columns: 1fr;
  }

  .marketplace-guidelines-section,
  .marketplace-bottom-cta,
  .marketplace-performance-section,
  .marketplace-sold-impact {
    padding: 30px;
  }

  .marketplace-bottom-cta,
  .marketplace-performance-section,
  .marketplace-sold-impact {
    flex-direction: column;

    align-items: flex-start;
  }

  .marketplace-form-section {
    padding: 25px 18px;
  }

  .marketplace-form-grid {
    grid-template-columns: 1fr;
  }

  .marketplace-form-group.full-width {
    grid-column: auto;
  }

  .marketplace-form-actions {
    flex-direction: column-reverse;
  }

  .marketplace-form-actions a,
  .marketplace-form-actions button {
    width: 100%;
  }

  .marketplace-current-listing-status {
    align-items: flex-start;

    flex-direction: column;
  }

  .marketplace-listings-header,
  .marketplace-sold-header {
    flex-direction: column;

    align-items: flex-start;
  }

  .marketplace-listings-header-actions {
    width: 100%;

    flex-direction: column;
  }

  .marketplace-listings-header-actions a {
    width: 100%;
  }

  .marketplace-my-listings-grid {
    grid-template-columns: 1fr;
  }

  .marketplace-sold-item-card {
    grid-template-columns: 1fr;
  }

  .marketplace-sold-item-image {
    height: 240px;
  }

  .marketplace-sale-summary {
    grid-template-columns: 1fr;
  }

  .marketplace-sold-impact-icon {
    width: 70px;
    height: 70px;

    font-size: 25px;
  }
}
