/** Shopify CDN: Minification failed

Line 217:0 Expected "}" to go with "{"

**/
.card-product {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--color-base-primary);
}

.card-product__badges {
  position: absolute;
  top: 2.5rem;
  left: 0;
  display: inline-block;
}

.card-product .media {
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
  overflow: hidden;
  margin: 0;
  min-height: 260px;
}

.card-product .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-product__content {
  background-color: var(--color-base-secondary);
  box-shadow: 0 3rem 5rem 0 rgb(0 0 0 / .25);
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
  padding: 2rem 2.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-product__title {
  margin: 0;
  font-size: 2rem;
  transition: color var(--duration-default);
}

.card-product__title:hover {
  color: var(--color-red);
}

.card-product__subtitle {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  margin: 1rem 0 3rem;
}

.card-product__price {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.card-product__actions {
  margin-top: auto;
  padding-top: 1.6rem;
}

.card-product__form {
  margin: 0;
}

.card-product__atc,
.card-product__atc.button {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  white-space: normal;
  cursor: pointer;
}

.card-product__atc:hover {
  background: var(--color-red);
  color: #fff;
}

@media screen and (max-width: 749px) {
  .card-product__badges {
    top: 2.2rem;
  }

.card-product .media {
  min-height: 190px;
}
  .card-product__content {
    padding: 1.5rem 2rem 1.9rem;
  }

  .card-product__title {
    font-size: 1.8rem;
  }

  .card-product__subtitle {
    font-size: 1.6rem;
    margin: .5rem 0 2.3rem;
  }

  .card-product__price {
    font-size: 2rem;
  }

  .card-product__atc,
  .card-product__atc.button {
    width: 100%;
    min-width: 0;
    padding: 9px 6px;
    font-size: 10px;
    line-height: 1.1;
  }
}

@media screen and (max-width: 480px) {
  .card-product__title {
    font-size: 1.6rem;
  }

  .card-product__price {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 400px) {
  .card-product__title {
    font-size: 1.4rem;
  }

  .card-product__content {
    padding: 1.5rem 1.6rem 1.9rem;
  }
}

@media screen and (max-width: 360px) {
  .card-product__title {
    font-size: 1.8rem;
  }
}
.card-product .yotpo-widget-instance,
.card-product .yotpo-widget-instance * {
  color: #2b2b2b !important;
}

/* Desktop: title + price side by side */
.card-product__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.card-product__title {
  margin: 0;
  flex: 1;
}

.card-product__title a {
  font-size: 1.8rem;
  line-height: 1.15;
  font-weight: 700;
}

.card-product__price {
  margin: 0;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 1.6rem;
  line-height: 1.15;
  font-weight: 700;
}

/* Mobile: stack title + price to avoid cramped long names */
@media screen and (max-width: 749px) {
  .card-product__title-row {
    display: block;
    margin-bottom: 0.6rem;
  }

  .card-product__title {
    margin-bottom: 0.3rem;
  }

  .card-product__title a {
    font-size: 1.4rem;
    line-height: 1.15;
  }

  .card-product__price {
    font-size: 1.4rem;
    line-height: 1.1;
  }
