.product-item {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: white;
  padding-bottom: 15px;
}
.product__item__image {
  background-color: rgba(var(--color-image-background));
  position: relative;
  width: 100%;
  padding-top: var(--product-card-image-ratio);
}
.product__item__image img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.card-image {
  padding: 28px;
  border-bottom: 1px solid #ccc;
}
.product__item__image svg {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.product__item__name {
  text-align: var(--product-card-content-align);
  margin-top: 10px;
  padding: 0 15px;
}

.product__scroll__item {
  width: 100%;
}

.product__item-price {
  text-align: var(--product-card-content-align);
}

.product__item-original-price {
  text-decoration: line-through;
  opacity: 0.5;
  margin-left: 4px;
}

.product__item__button {
  margin-top: auto;
  padding: 0 15px;
}

.product__item__button .button {
  background-color: rgb(var(--color-button-background));
}
