.brandline {
  position: relative;
}

.brandline__auth {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  text-decoration: none;
}

.brandline__auth img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: .9;
  transition: transform .2s ease, opacity .2s ease;
}

.brandline__auth:hover img {
  transform: scale(1.06);
  opacity: 1;
}

@media (max-width: 520px) {
  .brandline__auth {
    right: 8px;
  }

  .brandline__auth img {
    width: 28px;
    height: 28px;
  }
}

.card__price-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.card__price-old {
  font-size: 14px;
  color: rgba(43, 43, 43, .45);
  text-decoration: line-through;
  font-weight: 600;
}

.card__price-new {
  font-weight: 800;
  color: #c84d4d;
}

.card__discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(200, 77, 77, .12);
  border: 1px solid rgba(200, 77, 77, .18);
  color: #c84d4d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}