.short-product_cart {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: 5px;
  border: 1px solid #0000001a;
  height: 100%;
  justify-content: space-between;
}

.short-product_cart-top {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.short-product_cart-image {
  display: block;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.short-product_cart-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.short-product_cart-name {
  color: #000000;
  font-weight: 400;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
}

.short-product_cart-name:hover {
  text-decoration: underline;
  color: var(--bs-primary);
}

.short-product_cart-bottom {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
}

.short-product_cart-price_main {
  color: #000000;
  font-weight: 500;
  font-size: 16px;
}

.short-product_cart-bottom .button-buy::before {
  margin-right: 0;
}
.short-product_cart-bottom .button-buy {
  padding: 6px;
  border-radius: 3px;
  min-height: inherit;
}
