/* Equal-height product cards + readable Buy / Add to cart CTAs */
.product-grid {
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.product-body h3,
.product-body .product-title-button {
  flex: 0 0 auto;
}

.product-body p {
  flex: 1 1 auto;
}

.product-price {
  margin-top: auto;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.product-add-button.product-add-button--label {
  width: auto !important;
  min-width: 0;
  height: auto !important;
  min-height: 40px;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  white-space: nowrap;
  line-height: 1.15;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  flex: 0 0 auto;
}

.product-add-button.product-add-button--label > span {
  display: inline;
  max-width: none;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .product-add-button.product-add-button--label {
    padding: 8px 12px !important;
    font-size: 11px;
    min-height: 36px;
  }
}
