.single-product-li-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid #D1D1D1;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.single-product-li-wrapper .single-product-li-image-wrapper img {
	height: 300px;
	object-fit: cover;
	width: 100%;
}

.single-product-li-wrapper .single-product-li-category-wrapper {
	background-color: #4A4848;
}

.single-product-li-wrapper .single-product-li-category-wrapper a {
	color: white;
	text-transform: uppercase;
	font-size: 0.8rem;
	font-weight: 500;
	margin-left: 1rem;
}

.single-product-li-wrapper .single-product-li-main-wrapper {
	padding: 1rem;
}

.single-product-li-wrapper .single-product-li-title {
	font-size: 22px!important;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.3em;
	padding: 0!important;
	height: 2.6em;
	margin-bottom: 0!important;
}

.single-product-li-wrapper .woocommerce-Price-amount {
	font-size: 1.5rem
	font-weight: 500;
}

.single-product-li-wrapper .single-product-li-main-wrapper div{
	display: flex;
}

.single-product-li-wrapper .single-product-li-pfand{
	font-size: 0.8rem;
}

.single-product-li-wrapper .single-product-li-description {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.3em;
	margin-bottom: 1rem;
	margin-top: 1rem;
}

.single-product-li-wrapper .single-product-li-price {
	font-size: 1.2rem;
	margin-bottom: 0;
}

.single-product-li-wrapper .single-product-li-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.single-product-li-wrapper .single-product-li-add-to-cart {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: #4A4848;
	height: 3rem;
	transform: translateY(100%);
	color: white;
	transition: 250ms all ease-in-out;
	display: flex;
	justify-content: center;
	align-items: center;
}

.single-product-li-wrapper:hover .single-product-li-add-to-cart {
	transform: translateY(0);
}

.ast-single-post .entry-content a, .ast-comment-content a:not(.ast-comment-edit-reply-wrap a) {
	text-decoration: none;
}

.single-product-li-wrapper .single-product-li-category-wrapper a:not(:first-child) {
	display: none;
}

.single-product-li-wrapper .sold-out {
	position: absolute;
    right: 0;
	top: 1.75rem;
	font-size: 0.75rem;
    background-color: #4A4848;
	padding: 0.5rem 1rem;
	border-top-left-radius: 0.5rem;
	border-bottom-left-radius: 0.5rem;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}