/* ── Product Cards ── */
.prod-listing { padding: 70px 0 80px; }
.prod-card-wrap { display: flex; flex-direction: column; height: 100%; }
.prod-item {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.prod-item:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.10);
  transform: translateY(-4px);
}
.prod-item-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #f4f6f8;
  display: block;
}
.prod-item-img-placeholder {
  width: 100%;
  height: 210px;
  background: linear-gradient(135deg, #f0ecfd 0%, #e8f4fd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b7ae8;
  font-size: 52px;
}
.prod-item-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-item-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 3px;
  line-height: 1.3;
}
.prod-item-sci {
  font-size: 13px;
  color: #6b7280;
  font-style: italic;
  margin-bottom: 10px;
}
.prod-item-props {
  font-size: 12px;
  color: #6b7280;
  background: #f8fafc;
  border-radius: 8px;
  padding: 7px 10px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.prod-item-desc {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.prod-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-top: 1px solid #f0f0f0;
  background: #fafbfc;
}
.prod-price-tag {
  font-size: 20px;
  font-weight: 800;
  color: #16a34a;
  font-family: 'Lexend', monospace;
}
.prod-batch {
  font-size: 11px;
  font-family: monospace;
  background: #f3f4f6;
  color: #6b7280;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}
.prod-stock-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
}
.prod-stock-in { background: #dcfce7; color: #16a34a; }
.prod-stock-low { background: #fef9c3; color: #ca8a04; }
.prod-stock-out { background: #fee2e2; color: #dc2626; }

/* ── Search bar ── */
.prod-search-wrap { background: #fff; border-radius: 14px; padding: 24px 28px; box-shadow: 0 4px 20px rgba(0,0,0,.06); margin-bottom: 36px; }
.prod-search-input { border: 2px solid #e5e7eb; border-radius: 10px; padding: 11px 18px 11px 44px; font-size: 14px; width: 100%; outline: none; transition: border-color .2s; font-family: inherit; }
.prod-search-input:focus { border-color: #6c4ecb; }
.prod-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #9ca3af; font-size: 15px; pointer-events: none; }

/* ── Empty state ── */
.prod-empty { text-align: center; padding: 80px 20px; color: #9ca3af; }
.prod-empty i { font-size: 52px; opacity: .2; display: block; margin-bottom: 16px; }

/* ── Inquiry button ── */
.btn-inquire {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  background: #6c4ecb;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-inquire:hover { background: #5a3dab; color: #fff; }

/* ── Stats bar ── */
.prod-stats-bar { background: #1a1a2e; padding: 24px 0; margin-bottom: 0; }
.prod-stat-item { text-align: center; padding: 10px 0; border-right: 1px solid rgba(255,255,255,.1); }
.prod-stat-item:last-child { border-right: none; }
.prod-stat-num { font-size: 26px; font-weight: 800; color: #fff; display: block; }
.prod-stat-lbl { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 500; }
