/** Shopify CDN: Minification failed

Line 14:18 The "-" operator only works if there is whitespace on both sides
Line 15:22 The "-" operator only works if there is whitespace on both sides

**/
.product-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-item .button {
  width: calc(100%-0.1rem);
  max-width: calc(100%-0.1rem);
  padding-inline: 0;
}

.product-item__image {
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
}

.product-item__image img,
.product-item__image svg {
  width: 100%;
  min-height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center center;
}

.product-item__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-item__title {
  font-family:  "Trenda Regular"!important; 
  font-size: 1.8rem;
  font-weight: var(--font-body-weight);
  margin-block: 0.6rem;
}

.product-item__title a {
  transition: opacity 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .product-item__title a:hover {
    opacity: 0.7;
  }
}

.product-item--alternative .product-item__title {
  margin-bottom: 3.3rem;
}

.product-item__price {
  margin-block: auto 0.6rem;
}

.product-item__price > * {
  font-family: "Trenda Regular"!important; 
  font-size: 1.4rem;
  font-weight: var(--font-body-weight);
  letter-spacing: 0.02em;
}
