/* Clean, minimal grid layout for ZCWF results */
.zcwf-results {
  box-sizing: border-box;
  width: 100%;
}

/* Grid */
.zcwf-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  align-items: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Card */
.zcwf-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .12s ease, box-shadow .12s ease;
}

.zcwf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Thumbnail */
.zcwf-card-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Card body */
.zcwf-card-body {
  padding: 12px 14px;
  flex: 1 1 auto;
}

/* Title */
.zcwf-card-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 600;
}

.zcwf-card-title a {
  color: inherit;
  text-decoration: none;
}

/* Price (NOW VISIBLE) */
.zcwf-price {
  display: block !important;
  margin: 6px 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1976d2;
}

/* Optional: Sale price styling (agar plugin support karta ho) */
.zcwf-price del {
  color: #999;
  font-weight: 500;
  margin-right: 6px;
}

.zcwf-price ins {
  text-decoration: none;
  color: #1976d2;
}

/* Excerpt */
.zcwf-card-excerpt {
  color: #666;
  font-size: 0.95rem;
}

/* Actions */
.zcwf-card-actions {
  padding: 12px 14px 16px;
}

.zcwf-card-actions a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  background: #1976d2;
  color: #fff;
  font-weight: 600;
  transition: background .15s ease;
}

.zcwf-card-actions a:hover {
  background: #155fa0;
}

/* Mobile */
@media (max-width: 600px){
  .zcwf-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .zcwf-price {
    font-size: 1rem;
  }
}