.cs-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  padding: 12px;
  font-family: system-ui;
  display: flex;
  flex-direction: column;
}

.cs-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

.cs-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cs-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.cs-bid {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.cs-bid-btn {
  background: #ff3d00;
  color: #fff;
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  transition-duration: 0.2s;
}

.cs-bid-btn:hover:not(:disabled) {
  background: #e62e00;
}

.cs-bid-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/* 
.auctions-wrapper {
  display: grid;
  gap: 15px;
  margin: 20px 0;
}

@media (min-width: 1024px) {
  .auctions-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1023px) {
  .auctions-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.auction-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  padding: 12px;
  font-family: system-ui;
  display: flex;
  flex-direction: column;
}

.auction-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

.auction-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.auction-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.auction-bid {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.progress-bar {
  height: 6px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4px;
}

.progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff6a00, #ff3d00);
  transition: width 0.5s ease;
}

.place-bid {
  background: #ff3d00;
  color: #fff;
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  transition-duration: 0.2s;
}

.place-bid:hover:not(:disabled) {
  background: #e62e00;
}

.place-bid:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.bid-msg {
  font-size: 12px;
  margin-top: 4px;
}

.time-left {
  font-size: 12px;
  color: #333;
  margin-bottom: 6px;
  font-weight: 500;
}

.expired {
  opacity: 0.5;
  pointer-events: none;
}
*/
