/* Accueil — grille produits (shortcode [doliveux_produits]) */

.home-products {
	width: 100%;
	margin: 0 auto;
}

.home-products__section + .home-products__section {
	margin-top: 72px;
}

.home-products__section-title {
	margin: 0 0 8px;
	color: #0a0500;
	font-family: Roboto, sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
}

.home-products__subcategory {
	margin-top: 8px;
}

.home-products__subcategory + .home-products__subcategory {
	margin-top: 56px;
}

.home-products__subcategory-title {
	margin: 0px 0 40px!important;
	color: #a8977b;
	font-family: Roboto, sans-serif;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
}

.home-products__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
	align-items: start;
}

.hp-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	color: inherit;
	text-decoration: none;
	background: #fff;
	height: 100%;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.hp-card:hover,
.hp-card:focus {
	color: inherit;
	text-decoration: none;
}

.hp-card__media {
	position: relative;
	width: 100%;
	aspect-ratio: 6 / 5;
	overflow: hidden;
	background: #f3f1ee;
}

.hp-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.35s ease, filter 0.35s ease;
}

.hp-card__image--placeholder {
	background: #ece8e2;
}

.hp-card:hover .hp-card__image {
	transform: scale(1.03);
}

.hp-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	padding: 6px 12px;
	background: #a8977b;
	color: #fff;
	font-family: Lato, Roboto, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
	border-radius: 0;
}

.hp-card__body {
	padding: 20px;
	min-height: 120px;
}

.hp-card__kicker {
	margin: 0 0 5px;
	color: #a8977b;
	font-family: Lato, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}

.hp-card__title {
	margin: 0!important;
	color: #0a0500;
	font-family: Roboto, sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}

.hp-card.is-ended .hp-card__image {
	filter: grayscale(1);
	opacity: 0.7;
}

.hp-card.is-ended .hp-card__body {
	opacity: 0.4;
}

.hp-card.is-ended:hover .hp-card__image {
	transform: none;
}

@media (max-width: 1200px) {
	.home-products__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.home-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 16px;
	}

	.home-products__section + .home-products__section {
		margin-top: 56px;
	}

	.home-products__subcategory + .home-products__subcategory {
		margin-top: 44px;
	}

	.hp-card__body {
		padding: 15px;
	}

	.hp-card__kicker{
		font-size: 14px;
	}
	.hp-card__title {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.home-products__subcategory-title{
		font-size: 22px;
		margin: 0px 0 25px !important;
	}
	.home-products__section-title {
		margin: 0 0 0px !important;
		font-size: 18px;
	}
}