
.xbundle_container{
	display: flex;
	flex-wrap: wrap;
}
.xbundle_products{
	width: 65%;
	min-width: 65%;
	display: flex;
	/* flex-wrap: wrap; */
	gap: 3rem 1.5rem;
}

	.xbundle_products .product_card {
		width: calc( (100% - 7rem ) / 2 );
	}

.xbundle_container .xbundle_plus{
	user-select: none;
    display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	font-size: 4rem;
}

.xbundle_container .xbundle_info{
	width: 35%;
	min-width: 35%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 3rem 2rem;
}

	.xbundle_info .price {
		margin-bottom: 0.75rem;
	}
	.xbundle_info .price_top {
		display: flex;
		gap: 4px;
		font-size: clamp(14px, 1rem, 1rem);
	}
		.xbundle_info  .price ._old {
			color: #8D8D8D;
		}
		.xbundle_info  .price ._discount, 
		.xbundle_info  .price ._special {
			color: #D93934;
		}
		.xbundle_info .price ._main {
			font-size: clamp(20px, 1.5rem, 1.5rem);
			text-align: center;
			margin-top: 4px;
		}


@media screen and (max-width: 800px) {
	
	.xbundle_container{
		flex-direction: column;
	}
		.xbundle_products{
			width: calc(100% + 32px);
			margin: 0 -16px;
			gap: 24px 14px;
			overflow-y: auto;
			padding-bottom: 10px;
		}
		
			.xbundle_products .product_card {
				width: calc( (100% - 116px ) / 2 );
			}
		
			.xbundle_container .xbundle_plus{
				font-size: 42px;
				width: 30px;
			}

		.xbundle_container .xbundle_info{
			width: 100%;
			padding: 24px;
			gap: 4px;
		}


}