/* LuxuryFashions mobile product price and action sizing. */
@media (max-width: 768px) {
  .product-card {
    position: relative;
  }

  .product-card .product-info {
    padding: 0.85rem 0.8rem 1rem;
  }

  .product-card .product-info-bottom {
    display: block;
  }

  .product-card .product-price {
    width: 100%;
    min-width: 0;
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 0.35rem;
    line-height: 1.15;
  }

  .product-card .product-price .price-new {
    flex: 0 0 auto;
    font-size: 1.05rem;
    line-height: 1.15;
  }

  .product-card .product-price .price-old {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.72rem;
    line-height: 1.15;
  }

  .product-actions {
    top: 0.6rem;
    right: 0.6rem;
    gap: 0.4rem;
  }

  .product-actions .product-action {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .product-card .btn-add-cart-square {
    position: absolute;
    top: 5.65rem;
    right: 0.6rem;
    z-index: 3;
    width: 34px;
    height: 34px;
    border-radius: var(--lf-radius-full);
    font-size: 0.9rem;
  }
}
