/* out: products.front.min.css, compress: true, sourceMap: true, groupmedia: true */

.pdn-pagination {
	position: sticky;
	bottom: 0;
	z-index: 10;
	background: rgba(255,255,255,0.8);
	padding: 15px;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.pdn-pagination>a {
	cursor: pointer;
	background: var(--couleur-secondaire);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 15px;
	line-height: 1;
}

.pdn-pagination>a:not(:last-child) {
	margin-right: 5px;
}

.pdn-pagination>a:hover,
.pdn-pagination>a.current {
	background: var(--couleur-primaire);
    color:#fff;
}

.subcat-item {
	display: none;
}

li.product div.not_available_depot {
	display: inline-block;
	background-color: var(--couleur-primaire);
	color: var(--couleur-texte);
	font-weight: bold;
	font-size: 0;
	opacity: 0.9;

	position: absolute;
	top: 0;
	right: 0;
	transform: translate(50%, -50%);
	border-radius: 50%;
}

li.product div.not_available_depot::after {
	display: block;
	content: '!';
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 1.1rem;
	text-align: center;
}

li.product div.no-stock {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	transform: translate(-50%, -50%) rotate(-20deg);
	background-color: var(--couleur-primaire);
	white-space: nowrap;
	padding: 0.5em;
	border-radius: 0.5em;
	font-weight: bold;
	color: var(--blanc);
}

/**
 * Affichage de la catégorie sur la liste des produits
 */
.producer-separator,
.category-separator {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	padding: 15px;
	font-weight: 600;
}

li.producer-separator,
li.category-separator {
	grid-column: 1/-1;
}

.category-header,
.producer-header {
	display: flex;
	margin-bottom: 1em;
}

.producer-separator img,
.category-separator img {
	margin-right: 1em;
}

.producer-header img,
.category-header img {
	max-height: 100px;
}

@media (max-width: 530px) {
	.producer-separator,
	.category-separator {
		display: inline-block;
	}

	.producer-separator img,
	.category-separator img {
		margin-right: 0;
	}
}

.producer-separator h5,
.category-separator h5 {
	margin-bottom: 0;
}

.category-separator h5 {
	text-transform: uppercase;
}

.producer-separator::before {
	content: '';
	background: var(--couleur-primaire);
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	opacity: 0.15;
}

.producer-separator::before {
	background: var(--couleur-secondaire);
}

.producer-header::before,
.category-header::before {
	background: var(--couleur-secondaire);
}

.pdn-products {
	margin-left: 0;
}
