.cart_page_row
{
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.cart_page_left
{
	flex: 0 0 55%;
}

.cart_page_right
{
	flex: 0 0 40%;
	
}

/* Left: Cart Items */
.cart_item
{
	display: flex;
	align-items: stretch;
	width: 100%;
	padding: 1rem 0;
	border-bottom: 1px solid #EEE;
	gap: 1.3rem;
	box-sizing: border-box;
}

.cart_item_img img
{
	height: 100%;
	max-height: 7rem;
	width: auto;
	object-fit: cover;
	display: block;
}

.cart_item_info
{
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.cart_item_title
{
	font-size: 1.3rem;
	font-weight: 600;
	color: #222;
}

.cart_item_actions
{
	margin-top: 0.5rem;
	display: flex;
	gap: 1rem;
}

.cart_action_link
{
	color: #609CD4;
	text-decoration: none;
	font-size: 0.95rem;
}

.cart_action_link:hover
{
	text-decoration: underline;
}

/* Right: Price */
.cart_item_price
{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	text-align: right;
	white-space: nowrap;
}

.item_price
{
	font-size: 1.1rem;
	font-weight: bold;
	color: #000;
}

.item_shipping
{
	font-size: 0.9rem;
	color: #666;
}

.price_details
{
	color: #919191;
}

.cart_page_recommendations
{
	width: 100%;
	margin-top: 2rem;
}

.price_style_cart_page
{
	display: block;
}

.discount_price_in_cart
{
	color: #FF0000;
}

.cart_item_right
{
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media (max-width: 768px)
{
	.cart_page_left,
	.cart_page_right
	{
		flex: 0 0 100%;
	}
}

@media (max-width: 670px)
{
	.cart_item
	{
		flex-direction: row;
		align-items: flex-start;
	}

	.cart_item_img
	{
		flex: 0 0 auto;
	}

	.cart_item_right
	{
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 0.5rem;
	}

	.cart_item_price
	{
		align-items: flex-start;
		text-align: left;
		white-space: normal;
	}
}
