.show-product .products {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 50px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== CARD ========== */
.show-product .card {
  width: 250px;
  height: 300px;
  background: #f7fbff;
  border: 1px solid #dce7f1;
  border-radius: 16px;
  padding: 12px;
  text-align: center;
  transform: rotate(20deg) scale(0.96);
  transition: 0.45s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.show-product .card:hover {
  transform: rotate(0deg) scale(1);
  box-shadow: 0 10px 28px rgba(0, 115, 230, 0.18);
  border-color: #b4d7ff;
}

.show-product .card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.show-product .card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #0056a4;
  font-weight: 600;
}

.show-product .card p {
  opacity: 0.85;
  font-size: 14px;
  line-height: 1.4;
}
