.woocommerce-cart .page-hero h1{
	font-size: 1.875rem;
    line-height: 2.375rem;
	margin-top: 0;
	margin-bottom: 16px;
	font-weight: 600;
}

/* Empty Cart */
.empty-cart .page-content .empty-cart-content{
	max-width: 544px;
	margin-inline: auto;
    border: var(--border);
    border-radius: var(--border-radius);
   	padding: 40px 32px;
    margin-bottom: 40px;
    text-align: center;
}

.empty-cart .return-to-shop{
	display: inline-flex;
    margin-bottom: 0;
}

/* Cart layout */
.woocommerce-cart-form-wrapper{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

.woocommerce-cart-form{
    width: 100%;
	max-width: unset;
}

@media screen and (min-width: 992px){
	.woocommerce-cart-form{
		-webkit-box-flex: 0;
		-ms-flex: 0 0 65%;
		flex: 0 0 65%;
		max-width: 65%;
		padding-right: 30px;
	}
}

/* Cart Product Table  */
.woocommerce table.shop_table{
	border-collapse: unset;
	border-radius: var(--border-radius);
    border-color: var(--color-background-blue);
	margin: 0;
}

.woocommerce table.shop_table td{
	border: unset;
}

.woocommerce table.shop_table .product-name a{
	padding-left: 0;
    font-size: 1.125rem;
    line-height: 1.438rem;
	font-weight: 600;
	max-width: 237px;
    display: block;
}

.woocommerce-cart-form__cart-item th.product-quantity, 
.woocommerce-cart-form__cart-item th.product-subtotal{
	text-align: center;
}

.woocommerce table.shop_table .quantity{
	display: inline-flex;
    border-bottom: 2px solid #D9E3E6;
}

.woocommerce table.shop_table .product-thumbnail a{
	display: flex;
    background-color: var(--color-background-blue);
    align-items: center;
    justify-content: center;
    width: 145px;
    height: 145px;
    border-radius: 19px;
}

.woocommerce table.shop_table .product-thumbnail img{
	width: 145px;
    max-width: 100%;
    border-radius: 19px;
}

.woocommerce table.shop_table .woocommerce-Price-amount{
	font-size: 1.125rem;
    line-height: 1.438rem;
    font-weight: 700;
}

.woocommerce table.shop_table .woocommerce-Price-amount .price-decimal{
	font-size: 0.75rem;
}

.woocommerce table.shop_table .product-price .woocommerce-Price-amount{
	color: var(--color-gray);
}

.woocommerce table.shop_table td.actions{
	padding: 0;
}

/* Remove Button */
.woocommerce a.remove{
	font-size: 0;
    width: 24px;
    height: 24px;
    margin: 0;
    border-radius: var(--border-radius);
    position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce a.remove:hover{
	background-color: transparent;
}

.woocommerce a.remove:after{
	content: '';
	-webkit-mask-image: url('../../../icons/close-circle-outline.svg');
	mask-image: url('../../../icons/close-circle-outline.svg');
	background-color: var(--color-text);
	width: 24px;
    height: 24px;
	display: inline-block;
	transition: var(--transition);
}

.woocommerce a.remove:hover:after{
	background-color: var(--color-red);
}

/* Return to Shop Button */
.woocommerce a.return-to-shop{
	padding: 25px 45px;
	background: #f6f6f6;
	font-size: 13px;
	border-radius: 0;
	align-items: center;
    justify-content: center;
    display: inline-flex;
	margin-bottom: 50px;
	color: var(--color-text);
}

.woocommerce a.return-to-shop:before{
	content: '';
	-webkit-mask-image: url('../../icons/chevron-back-outline.svg');
	mask-image: url('../../icons/chevron-back-outline.svg');
	background-color: currentColor;
	width: 20px;
	height: 20px;
	display: inline-block;
	margin-right: 10px;
}

/* Related products */
.woocommerce .cart-related ul.products{
	margin-top: 0;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* Mobile */
@media screen and (max-width: 992px){
	.woocommerce-cart-form{
		margin-bottom: 32px;
	}
}

@media screen and (max-width: 781px){
	.woocommerce-cart .page-hero h1{
		margin-top: 16px;
	}
	.woocommerce-cart-form{
		border: 2px solid var(--color-background-blue);
        border-bottom: unset;
        padding-bottom: 42px;
        margin-bottom: -20px;
		border-radius: 14px 14px 0 0;
	}
	.woocommerce .woocommerce-cart-form table.shop_table{
		border: unset;
	}
	.woocommerce table.shop_table.cart td.product-price{
		padding-top: 0;
	}
	.woocommerce table.shop_table_responsive tr td, 
	.woocommerce-page table.shop_table_responsive tr td {
		text-align: left !important;
	}
	.woocommerce table.shop_table_responsive tr:nth-child(2n) td, 
	.woocommerce-page table.shop_table_responsive tr:nth-child(2n) td{
		background-color: transparent;
	}
	.woocommerce table.shop_table_responsive tr td::before,
	.woocommerce-page table.shop_table_responsive tr td::before {
		display: none;
	}
	.woocommerce #content table.cart .product-thumbnail, 
	.woocommerce table.cart .product-thumbnail, 
	.woocommerce-page #content table.cart .product-thumbnail, 
	.woocommerce-page table.cart .product-thumbnail{
		display: block;
	}
	.woocommerce-cart-form__cart-item{
		position: relative;
		padding: 0 30px 15px 180px;
	}
	.woocommerce-cart-form__cart-item+.woocommerce-cart-form__cart-item{
		margin-top: 20px;
	}
	.woocommerce-cart-form__cart-item td.product-remove{
		position: absolute;
		right: -5px;
		top: 0;
		transform: none;
		padding-inline: 0;
	}
}

@media screen and (max-width: 768px){
	.woocommerce-cart-form__cart-item td.product-thumbnail{
		position: absolute;
		top: 0;
    	left: 0;
	}
}

@media screen and (max-width: 480px){
	.woocommerce table.shop_table .product-thumbnail a{
		width: 98px;
    	height: 98px;
	}
	.woocommerce-cart-form__cart-item .product-name a{
		padding-right: 32px;
	}
	.woocommerce-cart-form__cart-item{
		padding: 0 0 0 115px;
	}
	.woocommerce table.shop_table.cart td.product-price{
		padding-bottom: 48px;
	}
	.woocommerce table.shop_table.cart td.product-subtotal{
		text-align: right !important;
	}
	.woocommerce table.shop_table.cart td.product-quantity{
		position: absolute;
		bottom: -4px;
		left: 0;
	}
}