.price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.old {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 21px;
}

.old_title {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  font-style: normal;
  line-height: 124%;
}

.old_value {
  color: var(--color-text-main);
  font-size: 20px;
  font-weight: var(--fw-regular);
  font-style: normal;
  line-height: 100%;
  text-decoration: line-through;
}

.new_value {
  display: flex;
  color: var(--color-accent);
  font-size: 60px;
  font-weight: var(--fw-bold);
  font-style: normal;
  line-height: 94%;
  letter-spacing: -0.04em;
  margin-right: 21px;
}

.new_value span {
  display: block;
  color: var(--color-text-main);
  font-size: 20px;
  font-weight: var(--fw-bold);
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0.01em;
  margin-left: var(--spacing-xxs);
}