/* LIST PRODUITS */

.container_single_product_img {
	width: 100%;
	margin-bottom: 20px;
	aspect-ratio: 5 / 4;
}

.container_single_product_img img {
	object-fit: contain;
	height: 100%;
	width: 100%;
	font-size: 0 !important;
}

.container_single_product a {
	text-decoration: none;
	width: 100%;
}

.container_single_product_title {
	font-weight: 600;
	color: #cc0f09;
	font-size: 0.95em;
	line-height: 1.2;
	margin-bottom: 0px;
}

.container_single_product_content p {
	margin: 0;
}

.list_products {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	justify-content: flex-start;
	width: 100%;
}

.container_single_product_content {
	flex: 1;
}

.grey_sub_text {
	color: #b1b1b1;
	margin-left: 10px;
	font-size: 0.6em;
}

.occasion_details .phone_number {
	color: #cead5c;
    font-size: 1.1em;
    font-family: Montserrat;
    font-style: initial;
	margin-top: 5px;
    display: block;
}

.occasion_details_simple,
.occasion_details {
	color: #1d1d1b;
	font-weight: 700;
	text-align: center;
	font-size: 1em;
    font-family: 'Philosopher';
    font-style: italic;
	line-height: 1;
	min-height: 45px;
}

.bigger_details {
	min-height: 100px;
}

.container_single_product {
	width: calc(25% - 19px);
	overflow: hidden;
	background-color: white;
	position: relative;
	padding: 20px 25px 20px 25px;
	transition: .6s !important;
	display: flex;
    flex-direction: column;
}

.container_single_product_infos {
	flex: 1;
	display: flex;
    flex-direction: column;
}

.new_price {
	display: flex;
	gap: 20px;
	align-items: center;
}

.prix_barre {
	position: relative;
	color: #b1b1b1;
	font-size: 18px;
}

.prix_barre:before {
	content: '';
    position: absolute;
    bottom: 16px;
    margin: auto;
    width: 70%;
    transform: rotate(-20deg) translate(-50%);
    height: 1px;
    background-color: #000000;
    left: 50%;
    min-width: 50px;
}

.container_single_product:hover {
	-webkit-box-shadow: 0px 0px 20px 0px #0000001a;
	box-shadow: 0px 0px 20px 0px #0000001a;
}

.container_single_product_content_price {
	text-transform: uppercase;
	color: #1d1d1b;
	font-family: 'Philosopher';
	line-height: 1;
	min-height: 25px;
	font-size: 1.6em;
}

.container_single_product_content_availability {
	color: #1d1d1b;
	font-weight: 400;
	font-size: 0.8em;
	font-size: 0.75em;
    line-height: 1.2;
}

.container_single_product_green,
.container_single_product_red {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
	color: #1d1d1b;
	font-weight: 400;
	font-size: 0.8em;
	font-weight: 500;
	letter-spacing: 0.4px;
	margin-top: 3px;
}

.container_single_product_green:before,
.container_single_product_orange:before,
.container_single_product_red:before {
	content: '';
	width: 12px;
	height: 12px;
	border-radius: 50%;
	position: relative;
	top: 0;
	display: block;
	margin-right: 10px;
}

.container_single_product_green:before {
	background-color: #02b926;
}

.container_single_product_red:before {
	background-color: #cc0d0a;
}

.container_single_product_orange:before {
	background-color: #fa8430;
}

.container_single_product_content_separator {
	border-bottom: 2px solid #cc0f09;
	margin-bottom: 15px;
    margin-top: 17px;
}


/* Responsive */

@media screen and (max-width: 1100px) {
	
	.list_products {
		display: flex;
		overflow: auto;
		scroll-snap-type: x mandatory;
		margin-right: -20px;
		flex-wrap: unset;
		margin-left: -20px;
		width: auto;
	}

	.container_single_product {
		flex-shrink: 0;
		scroll-snap-align: start;
		width: 330px;
	}

}

@media screen and (max-width: 992px) {
	
	
}

@media screen and (max-width: 768px) {

	.container_single_product {
		width: 330px;
	}

}

@media screen and (max-width: 580px) {

}