:root {
    --ua-product-title-size: 1rem, 1rem + 0vw, 1rem;
    --ua-product-title-line: 1.6;
    --ua-product-title-color: #1b1c1c;
    --ua-product-title-weight: 700;
    --ua-product-content-size: 1rem, 1rem + 0vw, 1rem;
    --ua-product-content-line: 1.3;
    --ua-product-content-color: #1b1c1c;
    --ua-product-content-weight: 400;}


.mount-products .caption .custom-field__series,
.mount-products .caption .custom-field__color,
.mount-products .caption .price {
  font-size: clamp(var(--ua-product-content-size));
  font-weight: var(--ua-product-content-weight);
  line-height: var(--ua-product-content-line);
  color: var(--ua-product-content-color);
}
.mount-products .caption .title {
  font-size: 1rem;
  font-size: clamp(var(--ua-product-title-size));
  font-weight: var(--ua-product-title-weight);
  line-height: var(--ua-product-title-line);
  color: var(--ua-product-title-color);
}