/* Cleaned for Product Pages Consistency */
.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: 0.3s;
  display: flex;
  flex-direction: column;

}

/* Product card image: responsive and consistent */
.catalogue-page .product-thumb {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  /* aspect-ratio and max-height removed for automatic sizing */
}

.catalogue-page .product-thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}



/* Title */
.product-title {
  font-size: 1rem;
  margin: 15px 0;
  font-weight: 600;
  line-height: 1.3;
  color: #333;
}

/* Button */
.product-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.catalogue-page .margin-bottom-card {
  margin-bottom: 32px;
}