/* Product Card v3 - Ultra-compact wholesale */
.home-product-card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.home-product-card:hover {
  border-color: #71cd14;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Thumbnail */
.home-product-thumb {
  position: relative;
  background: #f9f9f9;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-bottom: 1px solid #f0f0f0;
}
.home-product-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Link */
.pc-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; flex-grow: 1; }

/* Badge */
.pc-badge {
  position: absolute;
  top: 3px;
  left: 3px;
  padding: 1px 5px;
  font-size: 8px;
  font-weight: 700;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  z-index: 2;
}
.pc-badge--promo { background: #e8f5e9; color: #2e7d32; }
.pc-badge--oos { background: #fce4ec; color: #c62828; }
.pc-badge--low { background: #fff8e1; color: #f57f17; }

/* Wishlist */
.pc-wishlist {
  position: absolute;
  top: 3px;
  right: 4px;
  z-index: 3;
  font-size: 12px;
  color: #ddd;
  text-decoration: none;
  line-height: 1;
}
.pc-wishlist:hover, .pc-wishlist.active { color: #e91e63; }

/* Body */
.pc-body {
  padding: 5px 7px 3px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Title */
.pc-title {
  font-size: 11px;
  font-weight: 500;
  color: #333;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 3px;
  min-height: 28px;
}

/* Price row */
.pc-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
}
.pc-price {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  line-height: 1;
}
.pc-gst {
  font-size: 8px;
  color: #aaa;
  font-weight: 400;
  margin-left: 1px;
  vertical-align: super;
}
.pc-pack {
  font-size: 9px;
  color: #71cd14;
  font-weight: 600;
  background: #f0fce8;
  padding: 1px 4px;
  border-radius: 3px;
  white-space: nowrap;
}

/* Cart row */
.pc-cart-row {
  padding: 4px 6px 6px;
  display: flex;
  align-items: center;
  gap: 3px;
  border-top: 1px solid #f5f5f5;
}
.pc-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
.pc-qty button {
  border: none;
  background: #f8f8f8;
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: #71cd14;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.pc-qty button:active { background: #e8e8e8; }
.pc-qty span {
  min-width: 16px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #333;
}
.pc-pcs {
  font-size: 8px;
  color: #aaa;
  white-space: nowrap;
}
.pc-add {
  flex: 1;
  border: none;
  background: #71cd14;
  color: #fff;
  padding: 4px 0;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.03em;
  transition: background 0.12s;
}
.pc-add:hover { background: #5db311; }

/* 5 cards per row on desktop */
@media (min-width: 992px) {
  .pc-col { flex: 0 0 20%; max-width: 20%; }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .pc-col { flex: 0 0 25%; max-width: 25%; }
}
@media (max-width: 767.98px) {
  .pc-col { flex: 0 0 50%; max-width: 50%; }
  .home-product-thumb { height: 80px; padding: 4px; }
  .pc-title { font-size: 10px; min-height: 24px; }
  .pc-price { font-size: 13px; }
  .pc-add { font-size: 9px; padding: 3px 0; }
  .pc-qty button { width: 18px; height: 18px; font-size: 11px; }
  .pc-qty span { font-size: 10px; min-width: 14px; }
}

/* Tablet - 3 per row */
@media (min-width: 576px) and (max-width: 767.98px) {
  .pc-col { flex: 0 0 33.33%; max-width: 33.33%; }
  .home-product-thumb { height: 100px; }
  .pc-title { font-size: 11px; }
  .pc-price { font-size: 14px; }
}

/* Extra small phones */
@media (max-width: 374px) {
  .pc-col { flex: 0 0 50%; max-width: 50%; }
  .home-product-thumb { height: 70px; padding: 3px; }
  .pc-title { font-size: 9px; min-height: 20px; }
  .pc-price { font-size: 12px; }
  .pc-add { font-size: 8px; padding: 2px 0; }
  .pc-qty button { width: 16px; height: 16px; font-size: 10px; }
}
