body {
  font-family: 'Prompt', 'Sarabun', sans-serif;
}

/* ===== การ์ดสินค้า ===== */
.product-card {
  height: 100%;
  width: 100%;
  border: 1px solid #e3e6dc;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .15s ease, transform .15s ease;
  background: #ffffff;
}

.product-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.product-card .card-img {
  aspect-ratio: 1 / 1;
  background-color: #f1f0e9;
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}

.product-card .card-body {
  padding: 12px 14px 16px;
  text-align: left;
}

.product-card .tag-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 20px;
  margin: 0 0 8px;
}
 
.product-card .tag-fruit {
  background: #f6e3ea;
  color: #8a3a52;
}
 
.product-card .tag-salad {
  background: #eff5e0;
  color: #3f6b3f;
}
 
.product-card .tag-mixed {
  background: #f5ead6;
  color: #8a5a1a;
}
 
.product-card .tag-fresh {
  background: #e2f3e0;
  color: #4f554f;
}
 
.product-card .tag-default {
  background: #ecebe4;
  color: #a6d1ad;
}

.product-card .card-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #2c3a2c;
  white-space: normal;
  overflow-wrap: break-word;
}

/* ===== แถบติดต่อขอใบเสนอราคา ===== */
.contact-strip {
  max-width: 960px;
  margin: 28px auto 8px;
  padding: 16px 20px;
  background: #e7efe3;
  border-radius: 12px;
  color: #3f6b3f;
  text-align: center;
  font-size: 15px;
}

.contact-strip a {
  color: #3f6b3f;
  font-weight: 600;
  text-decoration: underline;
}