.products {
	width: 60%;
	padding: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background-color: rgba(255, 255, 255, 0.9);
}

.cart {
	width: 39%;
	padding: 20px;
	background: #f8f8f8;
	position: fixed;
	margin-right: 20px;
	right: 0;
	top: 0;
	height: 80%;
	overflow-y: auto;
	border-left: 1px solid #ccc;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	margin-top: 153px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background-color: rgba(255, 255, 255, 0.9);
	bottom: 200px;
}

.product, .cart-item {
	margin-bottom: 15px;
	padding-bottom: 30px;
	border-bottom: 4px solid #eee;
}

.message {
	padding: 10px;
	background: #dff0d8;
	border: 1px solid #d6e9c6;
	color: #3c763d;
	margin-bottom: 10px;
}

.products img {
	width:10%; 
	height:20%;
	cursor: pointer;
	object-fit: cover;
	object-position: center;
}

.products img {
	object-fit: cover;
	object-position: center;
}

.lien_boutique {
	width:100%;
	height: 30px;
	/*border: 1px solid black;*/
}

.vers_boutique {
	float: left;
	width: 120px;
	margin-right:10px;
	/*border: 1px solid black;*/
}

.vers_img_container {
	float: left;
	width:10%;
	height:auto;
	/*border: 1px solid black;*/
}

.vers_img_container p{
	font-size:10px; 
	margin-top: 20px;
}

.vers_img_container img{
	width: 50%; 
	height: 50%;
}

.panier {
	display: none;
	/*border: 1px solid black;*/
}

.titre_boutique_em {
	width:100%;
	height: 50px;
	margin-top:80px;
}

.titre_boutique_em h1{
	text-align:center;
}

.articles {
	margin-top:50px;
}

.separator{
	border-bottom: 4px solid #eee;
	margin-top: 10px;
}

.close_cart {
	display: none;
}

/* Bouton Formulaire Boutique Escrime*/
.add_button_em {
    position: absolute;
    background-color: #ff69b4 !important;
    color: white !important;
    border-radius: 25px !important;
	padding: 6px 6px !important;
    font-weight: bold !important;
    text-align: center;
    width: 200px;
    left: 25%;
}

.add_button_em:hover {
    background-color: #ff1493 !important;
}

/* Bouton Formulaire Boutique Escrime*/
.add_button_slm {
    position: absolute;
    background-color: #052235 !important;
    color: white !important;
    border-radius: 25px !important;
	padding: 6px 6px !important;
    font-weight: bold !important;
    text-align: center;
    width: 200px;
    left: 25%;
}

.add_button_slm:hover {
    background-color: #ff1493 !important;
}



/* ===== RESPONSIVE DESIGN ===== */

/* Mobiles Portrait (jusqu'à 767px)   -   RED */	
@media screen and (max-width: 767px) {
	.cart {
		display: none;
		width: 90%;
		height: 100%;
	}

	.close_cart {
		display: flex;
		position: absolute;
		top: 15px;
		right: 35px;
		/*color: #f1f1f1;*/
		color: black;
		font-size: 40px;
		font-weight: bold;
		cursor: pointer;
		/*transition: color 0.3s;*/
		float: right;
	}

	.close:hover,
	.close:focus {
		color: #bbb;
	}

	.lien_boutique {
		width: 100%;
		height: 50px;
	}
	
	.vers_boutique {
		width: 35%;
		float: left;
	}

	.vers_img_container{
		width: 15%;
		float: left;
		margin-left: 0;
	}
	
	.panier {
		width: 25%;
		height: 50px;
		float: right;
		display: flex;
	}
	
	.panier img{
		width: 80%;
		height: 80%;
		/*margin-right: 150px;*/
	}
	
	.panier p{
		/*margin-right: 50px;*/
		margin-top: 12px;
		font-size: 18px;
		/*margin-right: 100px;*/
	}
	
	.products {
		width: 100%;
	}
	
	.vers_img_container {
		width:20%;
		height:auto;
	}

	.vers_img_container img{
		width:60%;
	}
	
	.add_button_em {
		width: 150px;
		margin-top: 30px;
	}

	.add_button_slm {
		width: 150px;
		margin-top: 30px;
	}
	
	.product, .cart-item {
		padding-bottom: 50px;
	}
}



/* Mobile landscape (768px - 1024px)   -   PURPLE */
@media screen and (min-width: 768px) and (max-width: 959px) and (orientation: landscape) {
	.cart {
		background-color: rgba(255, 255, 255);
		display: none;
		width: 96%;
		height: 100%;
		margin-top: 0;
		z-index: 2000;
	}
	
	.close_cart {
		display: flex;
		position: absolute;
		top: 15px;
		right: 35px;
		/*color: #f1f1f1;*/
		color: black;
		font-size: 40px;
		font-weight: bold;
		cursor: pointer;
		/*transition: color 0.3s;*/
		float: right;
	}

	.close:hover,
	.close:focus {
		color: #bbb;
	}

	.lien_boutique {
		width: 100%;
		height: 50px;
		/*border: 1px solid black;*/
	}
	
	.vers_boutique {
		width: 15%;
		float: left;
		/*border: 1px solid black;*/
	}
	
	.vers_boutique p{
		font-size: 18px;
	}
	
	.vers_img_container{
		width: 20%;
		float: left;		
	}
	
	.vers_img_container img{
		width:25%;
	}
	
	.panier {
		width: 15%;
		height: 50px;
		float: right;
		display: flex;
	}
	
	.panier img{
		width: 100%;
		height: 100%;
	}
	
	.panier p{
		margin-left: 10px;
		margin-top: 10px;
		font-size: 24px;
	}
	
	.products {
		width: 100%;
	}
	
	.add_button_em {
		width: 150px;
		/*margin-top: 15px;**/
		margin-left: 300px;
	}
	
	.add_button_slm {
		width: 150px;
		/*margin-top: 15px;**/
		margin-left: 300px;
	}
	
	.product, .cart-item {
		padding-bottom: 30px;
	}
}


/* Tablettes Portrait (768px - 959px)  -  GREEN */
@media screen and (min-width: 768px) and (max-width: 959px) and (orientation: portrait) {
	.cart {
		background-color: rgba(255, 255, 255);
		display: none;
		width: 96%;
		height: 100%;
		margin-top: 0;
		z-index: 2000;
	}
	
	.close_cart {
		display: flex;
		position: absolute;
		top: 15px;
		right: 35px;
		/*color: #f1f1f1;*/
		color: black;
		font-size: 40px;
		font-weight: bold;
		cursor: pointer;
		/*transition: color 0.3s;*/
		float: right;
	}

	.close:hover,
	.close:focus {
		color: #bbb;
	}

	.lien_boutique {
		width: 100%;
		height: 50px;
		/*border: 1px solid black;*/
	}
	
	.vers_boutique {
		width: 15%;
		float: left;
		/*border: 1px solid black;*/
	}
	
	.vers_boutique p{
		font-size: 18px;
	}
	
	.vers_img_container{
		width: 20%;
		float: left;		
	}
	
	.vers_img_container img{
		width:25%;
	}
	
	.panier {
		width: 15%;
		height: 50px;
		float: right;
		display: flex;
	}
	
	.panier img{
		width: 100%;
		height: 100%;
	}
	
	.panier p{
		margin-left: 10px;
		margin-top: 10px;
		font-size: 24px;
	}
	
	.products {
		width: 100%;
	}
	
	.add_button_em {
		width: 150px;
		/*margin-top: 15px;**/
		margin-left: 300px;
	}
	
	.add_button_slm {
		width: 150px;
		/*margin-top: 15px;**/
		margin-left: 300px;
	}
	
	.product, .cart-item {
		padding-bottom: 30px;
	}
}


/* Tablettes Landscape (1024px - 2048px)  */
/*@media screen and (min-width: 1025px) and (max-width: 2048px) {*/
@media screen and (min-width: 960px) and (max-width: 1599px) {
	
}




/* Très petits écrans (jusqu'à 480px) */
/*@media (max-width: 480px) {
    /* Header mobile */
/*	.cart {
		display: none;
		width: 90%;
		height: 100%;
	}

	.close_cart {
		display: flex;
		position: absolute;
		top: 15px;
		right: 35px;
		/*color: #f1f1f1;*/
/*		color: black;
		font-size: 40px;
		font-weight: bold;
		cursor: pointer;
		/*transition: color 0.3s;*/
/*		float: right;
	}

	.close:hover,
	.close:focus {
		color: #bbb;
	}

	.vers_img_container{
		margin-right: 50px;
	}
	
	.panier {
		display: flex;
		margin-left: 80px;
	}
	
	.panier img{
		width: 70%;
		height: 100%;
	}
	
	.panier p{
		margin-right: 50px;
		margin-top: 5px;
	}
	
	.products {
		width: 100%;
	}
	
	.vers_img_container {
		width:20%;
		height:auto;
	}

	.vers_img_container img{
		/*width:100%;*/
/*	}
	
	.add_button {
		width: 150px;
		margin-top: 30px;
	}
	
	.product, .cart-item {
		padding-bottom: 50px;
	}
}	*/




/* Mobiles (jusqu'à 767px) */
/*@media screen and (min-width: 481px) and (max-width: 767px) {
    /* Header mobile */
/*	.vers_img_container {
		width:20%;
		height:auto;
	}

	.vers_img_container img{
		width:auto;
	}
}
*/

/* Mobiles (jusqu'à 767px) */
/*@media screen and (min-width: 481px) and (max-width: 767px) { /* and (orientation: landscape) {*/
/*	.cart {
		display: none;
		width: 90%;
		height: 100%;
	}

	.close_cart {
		display: flex;
		position: absolute;
		top: 15px;
		right: 35px;
		/*color: #f1f1f1;*/
/*		color: black;
		font-size: 40px;
		font-weight: bold;
		cursor: pointer;
		/*transition: color 0.3s;*/
/*		float: right;
	}

	.close:hover,
	.close:focus {
		color: #bbb;
	}
	
	.panier {
		display: flex;
		margin-left: 80px;
	}
	
	.panier img{
		width: 70%;
		height: 100%;
	}
	
	.panier p{
		margin-right: 50px;
		margin-top: 5px;
	}
	
	.products {
		width: 100%;
	}
}*/

/* Tablettes (768px - 1024px) / mobile landscape*/
/*@media screen and (min-width: 768px) and (max-width: 1024px) {

	.products {
		float: left;
		/*border: 1px solid green;*/
/*	}

	.cart {
		width: 38%;
		float: left;
		margin-top: 205px;
		position: stincky;
		/*border: 1px solid green;*/
/*		margin-right: 20px;
	}
	
	.vers_img_container img{
		width:80%;
	}
}*/


/* Tablettes (1024px - 1280px)  */
/*@media screen and (min-width: 1025px) and (max-width: 1280px) {
	.products {
		float: left;
		border: 1px solid purple;
	}

	.cart {
		width: 38%;
		float: left;
		margin-top: 205px;
		position: stincky;
		/*border: 1px solid green;*/
/*		margin-right: 20px;
	}
	
	.vers_img_container img{
		width:80%;
	}
}*/