.product__item.wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.product__item__card {
	width: 210px;
	min-width: 210px;
	height: 330px;
	margin: 5px;
	padding: 10px;
	background-color: #fff;
	border-radius: 15px;
	position: relative;
	box-shadow: 0px 0px 5px #0000003b;
}

.product__item__card__img {
	height: 180px;
	margin: 0 auto;
	transition: transform 0.5s ease;
}

.product__item__card__img:hover {
	transform: translateY(-7px);
}

.product__item__card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product__item__card__content * {
	font-weight: 500;
	margin-top: 6px;
}

.product__item_price {
	color: red;
	font-size: 20px;
}

.button__addcart__box {
	box-sizing: border-box;
	width: 190px;
	position: absolute;
	bottom: 10px;

}

.button__addcart {
	width: 100%;
	padding: 6px;
	font-weight: 700;
	transition: 0.5s;
	position: relative;
	overflow: hidden;
	z-index: 1;
	box-shadow: 0 0 4px #00000051;
}

.button__addcart:before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0%;
	height: 0%;
	background-color: rgb(17, 60, 170);
	transition: all 0.5s;
	z-index: -1;
}

.button__addcart:hover:before {
	width: 105%;
	height: 105%;
}

.button__addcart:hover {
	color: #fff;
}

.da-ban-text {
	font-size: 13px;
	padding: 2px;
}