.product-card--image {
  position: relative;
}

.product-card--image img {
  display: block;
}

.product-card--info {
  margin-top: 20px;
}

.product-card--title {
  color: var(--color-brand-brown-80);
  display: block;
  letter-spacing: -.5px;
  line-height: 1.3;
  text-decoration: none;
}

.product-card--price {
  margin-top: 5px;
}

.product-card--price * {
  text-align: left !important;
}

.product-card--price .price-item--sale .dualPrice .secondPrice,
.product-card--price .price:not(.price--on-sale) .price-item--regular .dualPrice .secondPrice {
  font-weight: 700;
}

@media (max-width: 749px) {
  .product-card--price .price-item--sale .dualPrice .secondPrice,
  .product-card--price .price:not(.price--on-sale) .price-item--regular .dualPrice .secondPrice {
    font-size: 14px !important;
  }
}

.product-card--price .dualPrice {
  font-size: 16px;
}

@media (max-width: 749px) {
  .product-card--price .dualPrice {
    font-size: 14px;
  }
}

.product-card--price .price-item {
  margin-right: 5px;
}

.product-card .product-badges {
  top: 10px;
  left: 10px;
  position: absolute;
}

@media (max-width: 749px) {
  .product-card .product-badges {
    top: 3px;
    left: 3px;
  }
}

/* Price */

.product-card .dualPrice {
  letter-spacing: -.4px;
  text-transform: capitalize;
}

.product-card .dualPrice > *:first-child {
  font-weight: 700 !important;
}

@media (max-width: 749px) {
  .product-card .dualPrice {
    display: flex !important;
    flex-direction: column;
  }
  .product-card .dualPrice .separator {
    display: none;
  }
}

.product-card .dualPrice * {
  color: var(--color-brand-brown-80) !important;
}

.product-card .dualPrice .firstPrice {
  font-weight: 300;
}

/* Card swatch */

.product-card .seo-variants-mini-picker .option-picker-preview {
  transform: scale(1) !important;
}

body .product-card .seo-variants__list .seo-variants__item button img {
  width: 28px !important;
  height: 28px !important;
}

.product-card .seo-variants-mini-picker {
  margin: 0px !important;
}

.product-card--price .dualPrice:has(.memberPrice) {
  display: flex !important;
  flex-direction: column-reverse;

  .line {
    display: none;
  }

  .secondPrice.memberPrice {
    display: flex;
    gap: 4px;
    flex-direction: row-reverse;
  }

  @media (min-width: 1200px) {
    display: flex !important;
    flex-direction: row-reverse;

    .line {
      display: block;
    }
  }
}

.product-card--price .dualPrice:has(.memberPrice):has(.dpCompareAtPrice) {

  .dpCompareAtPrice {
    font-weight: 300;
    opacity: 0.6;
  }

  .secondPrice * {
    color: #742e36 !important;
  }

  @media (min-width: 1200px) {
    flex-direction: row;
    flex-wrap: wrap;

    .secondPrice {
      width: 100%;
      flex-direction: row;
    }

    .dpCompareAtPrice {
      order: 1;
    }

    .line {
      order: 2;
      display: none !important;
    }

    .firstPrice {
      order: 3;
    }
  }

  @media (min-width: 1400px) {

    .secondPrice {
      width: auto;
      flex-direction: row;
    }

    .dpCompareAtPrice {
      order: 2;
    }

    .line {
      order: 1;
      display: block !important;
    }

    .firstPrice {
      order: 3;
    }
  }
}
