/* ===============================
   SALES LISTINGS (MARKETPLACE)
   =============================== */

.sales-section {
  padding: 90px 6%;
  background: #f6f7fb;
}

.sales-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.section-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.section-desc {
  font-size: 17px;
  color: #555;
  margin-bottom: 36px;
}

.sales-slider {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.sales-slider::-webkit-scrollbar {
  display: none;
}

.sale-card {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.sale-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.12);
}

.sale-image {
  position: relative;
  height: 200px;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}

.sale-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sale-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg,#6a11cb,#2575fc);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
}

.sale-info {
  padding: 16px 18px 20px;
}

.sale-info h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #2575fc;
}

/* MOBILE */
@media(max-width:768px){
  .section-title {
    font-size: 32px;
  }

  .sale-card {
    flex: 0 0 240px;
  }
}
