.wsg-img{
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
}

/* Price always shows $ */
.wsg-price::before {
  content: "$";
}

/* Center product name */
.wsg-title{
  text-align: center;
  margin: 20px 0 30px;
  font-size: 22px;
  font-family: Montserrat, sans-serif;
  font-weight: 400; /* optional but recommended for Montserrat */
  text-transform: capitalize;
}

/* CTA button styling */
.wsg-cta{
  background: #1E1E1E;
  color: #ffffff !important;
  border-color: #1E1E1E;
}

.wsg-cta:hover{
  background: #000000;
  color: #F6C629 !important;
}

.wsg-cta{
  display: block;
  width: 80%;
  text-align: center;
  margin: 0 auto;
}

/* Center CTA button 
.wsg-cta{
  display: block;
  width: fit-content;
  margin: 0 auto;
}*/

/* Center price and disclaimer */
.wsg-price,
.wsg-disc{
  text-align: center;
}

/* Center 1–2 specials by making the grid auto-fit columns */
.wsg-grid{
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
}

/* Let cards fill their grid column */
.wsg-card{
  width: 100%;
}