/**
 * Orbitienda product card families — visual differentiation on Dawn card-product.
 * Driven by theme setting `product_card_family` (classic | minimal | modern | bold).
 */

.product-card-wrapper.product-card-family--minimal .card__heading {
  font-size: calc(var(--font-heading-scale) * 1.3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card-wrapper.product-card-family--minimal .card__information {
  text-align: center;
}

.product-card-wrapper.product-card-family--minimal .card__badge {
  display: none;
}

.product-card-wrapper.product-card-family--minimal .quick-add,
.product-card-wrapper.product-card-family--minimal .card__media .media--hover-effect > img + img {
  opacity: 0;
  pointer-events: none;
}

.product-card-wrapper.product-card-family--modern .card {
  transition:
    transform var(--duration-short) ease,
    box-shadow var(--duration-short) ease;
}

.product-card-wrapper.product-card-family--modern .card:hover {
  transform: translateY(-4px);
}

.product-card-wrapper.product-card-family--modern .card__inner {
  padding: 0.8rem;
}

.product-card-wrapper.product-card-family--modern .card__badge {
  border-radius: 999px;
}

.product-card-wrapper.product-card-family--bold .card__heading {
  font-size: calc(var(--font-heading-scale) * 1.6rem);
  font-weight: 600;
}

.product-card-wrapper.product-card-family--bold .card__badge {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-card-wrapper.product-card-family--bold .quick-add {
  opacity: 1;
  visibility: visible;
}

.product-card-wrapper.product-card-family--bold .card__content {
  padding-top: 1.2rem;
}

.product-card-wrapper.product-card-family--classic .card__media .media--hover-effect > img + img {
  transition: opacity var(--duration-default) ease;
}
