.block-product-price {
  display: block;
}


/* Wuluwear custom: product card price and stock in one row */
.block-product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  min-width: 0;
}

.block-product-price .product-price {
  min-width: 0;
  flex: 1 1 auto;
}

.wulu-product-card-stock-inline {
  flex: 0 0 auto;
  max-width: 45%;
  overflow: hidden;
  color: rgba(var(--color-text), 0.62);
  font-size: 11px;
  line-height: 1.25;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 959px) {
  .block-product-price {
    gap: 4px;
  }

  .wulu-product-card-stock-inline {
    max-width: 42%;
    font-size: 10px;
  }
}
