/* Product cards — berryman-shop.html (#products-grid) */
#products-grid .product-card {
  align-self: stretch;
}

#products-grid .product-card .product-img-wrap {
  height: 210px;
  min-height: 210px;
  max-height: 210px;
  flex-shrink: 0;
}

#products-grid .product-card .product-img-wrap img {
  width: 100%;
  height: 100%;
  max-height: 180px;
  object-fit: contain;
  object-position: center;
}

#products-grid .product-card .product-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center !important;
}

#products-grid .product-card .product-qty,
#products-grid .product-card .product-name,
#products-grid .product-card .product-vol,
#products-grid .product-card .product-details-link,
#products-grid .product-card .add-btn {
  width: 100% !important;
  max-width: 100%;
  text-align: center !important;
}

#products-grid .product-card .price-row {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-end;
  width: 100% !important;
  gap: .5rem;
  min-height: 2rem;
}

#products-grid .product-card .price-main,
#products-grid .product-card .price-per {
  width: auto !important;
  text-align: center !important;
}

#products-grid .product-card .savings {
  display: inline-block;
  width: auto !important;
  margin-left: auto;
  margin-right: auto;
  text-align: center !important;
}

#products-grid .product-card .add-btn {
  display: block;
}
