/**********************************/
/* STYLE MENU BOTTOM */
/* Trigger fixé en bas au centre */
.doomoo-menu-trigger {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #EB735B;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
	justify-content: space-between;
  gap: 0.5em;
	width: 320px;
}

.doomoo-menu-trigger .open-filters {
  color: white;
  border: none;
  border-radius: 999px;
  padding: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.doomoo-menu-trigger .current-filter-label, .doomoo-menu a {
	font-size: 16px !important;
}
/* Menu off-canvas qui s’ouvre depuis le bas */
.doomoo-off-canvas {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #EB735B;
  border-radius: 15px 15px 0 0;
  z-index: 99;
  width: 320px;
  margin: 80px auto;
  box-shadow: 0px -3.56px 12.46px 0px #00000026;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.doomoo-menu {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}
.doomoo-menu a {
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
}
.doomoo-off-canvas.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}
.doomoo-off-canvas__content, .doomoo-menu {
	height: 100% !important;
}

.doomoo-off-canvas__main {
  padding: 20px;
  height: 410px;
  overflow-y: auto;
}

.doomoo-off-canvas__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
}

.doomoo-off-canvas.open + .doomoo-off-canvas__overlay {
  display: block;
}
.filter-forum-accouchement::before, .filter-accouchement::before {
  background-image: url('../../../uploads/2025/06/PICTO_BLOG_CAT_ACCOUCHEMENT.svg') !important;
  content: '';
  display: inline-block;
  height: 50px;
  width: 50px;
  margin-right: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.filter-forum-grossesse::before, .filter-grossesse::before {
  background-image: url('../../../uploads/2025/06/PICTO_BLOG_CAT_GROSSESSE.svg') !important;
  content: '';
  display: inline-block;
  height: 50px;
  width: 50px;
  margin-right: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.filter-forum-post-partum::before, .filter-post-partum::before {
  background-image: url('../../../uploads/2025/06/PICTO_BLOG_CAT_POST-PARTUM.svg') !important;
  content: '';
  display: inline-block;
  height: 50px;
  width: 50px;
  margin-right: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.filter-forum-projet-bebe::before, .filter-projet-bebe::before {
  background-image: url('../../../uploads/2025/06/PICTO_BLOG_CAT_PROJET-BEBE.svg') !important;
  content: '';
  display: inline-block;
  height: 50px;
  width: 50px;
  margin-right: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.filter-all::before {
  background-image: url('../../../uploads/2025/06/PICTO_BLOG_CAT_TOUTES-CATEGORIES.svg');
  content: '';
  display: inline-block;
  height: 50px;
  width: 50px;
  margin-right: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.current-filter-label {
    width: 100%;
    display: flex;
	align-items: center;
}
.doomoo-close-filters {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: white;
  position: absolute;
  top: 25px;
  right: 15px;
  cursor: pointer;
  z-index: 10;
	padding: 0 !important;
}
.doomoo-menu a {
	text-decoration: none !important;
}
.doomoo-menu a:hover {
	color: #fff;
}
