/* ═══════════════════════════════════════════════════
   VENDOR CARD — PRODUCT PREVIEW STRIP
   Add-on styles for the marketplace grid cards.
   Link this AFTER style.css so it can override where needed.
   ═══════════════════════════════════════════════════ */

/* Card content becomes a column flex so the footer can pin to
   the bottom and every card in a row stays the same height,
   whether it has a preview strip or is the plain fallback. */
.card-content {
  display: flex;
  flex-direction: column;
}

/* ── Preview strip: up to 3 thumbnails ───────────────────── */
.vc-preview-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0 10px;
}

.vc-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f4f6;
}

.vc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vc-thumb-price {
  position: absolute;
  left: 5px;
  bottom: 5px;
  background: rgba(17, 17, 17, 0.72);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 20px;
  line-height: 1;
  white-space: nowrap;
}

/* Empty placeholder tile — keeps the 3-column grid intact
   when a vendor has fewer than 3 products, so card height
   never varies across a row. */
.vc-thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border: 1.5px dashed #e5e7eb;
  color: #d1d5db;
  font-size: 18px;
}

/* Optional category accent tint on the thumbnail background,
   visible while the image loads or behind transparent PNGs. */
.vc-tint-food.vc-thumb {
  background: #fff3e0;
}
.vc-tint-fashion.vc-thumb {
  background: #fce4ec;
}
.vc-tint-beauty.vc-thumb {
  background: #f3e5f5;
}
.vc-tint-phones.vc-thumb {
  background: #e3f2fd;
}
.vc-tint-electronics.vc-thumb {
  background: #fff8e1;
}
.vc-tint-services.vc-thumb {
  background: #e0f2f1;
}
.vc-tint-default.vc-thumb {
  background: #f3f4f6;
}

/* ── Summary row: "X items shown" / "from ₦Y" ───────────── */
.vc-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  margin-bottom: 12px;
}

.vc-items-shown {
  color: #888;
}

.vc-from-price {
  font-weight: 700;
  color: #ff6d00;
}

/* ── Footer actions: Browse all products + quick WhatsApp ── */
.vc-footer-actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
}

.vc-footer-actions .view-btn {
  flex: 1;
  margin-top: 0;
}

.vc-wa-quick {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.1s ease;
}

.vc-wa-quick:hover {
  background: #128c3e;
  transform: translateY(-1px);
}

/* ── Responsive tightening on small screens ─────────────── */
@media (max-width: 600px) {
  .vc-preview-strip {
    gap: 6px;
    margin: 10px 0 8px;
  }

  .vc-thumb-price {
    font-size: 10px;
    padding: 2px 6px;
  }

  .vc-summary-row {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .vc-wa-quick {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
