/* =========================================================
   LES PETITES HERMINES — CSS COMPLET
========================================================= */

:root {
  --bg-main: #fcfbfa;
  --card-bg: #ffffff;

  --text-dark: #111111;
  --text-sub: #64748b;

  --primary: #FB9966;
  --primary-light: #FFF2EB;

  --border-color: #f1f5f9;

  --purple: #8B73BA;
  --purple-light: #F5EEFA;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-menu: 0 18px 50px rgba(30, 41, 59, 0.18);
}

/* --- BOTTOM SHEET / MODAL MOBILE CENTRÉE --- */
.mobile-bottom-sheet {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 3000;
  justify-content: center;
  align-items: center; /* Aligne la carte au centre de l'écran */
  padding: 16px;
  animation: fadeIn 0.2s ease-out;
}

.mobile-bottom-sheet-content {
  background: #ffffff;
  width: 100%;
  max-width: 500px;
  max-height: 85vh;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  position: relative;
  animation: scaleUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sheet-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: #e2e8f0;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 16px;
  color: #4b5563;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 10;
}

@keyframes scaleUp {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Open Sans', sans-serif !important;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
font-family: 'Open Sans', sans-serif !important;
color: var(--text-dark);
padding: 16px 24px;
min-height: 100vh;
display: flex;
flex-direction: column;
gap: 16px;
position: relative;
overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* =========================================================
   FOND
========================================================= */

body::before {
  content: "";

  position: fixed;
  inset: 0;

  z-index: -1;
  pointer-events: none;

  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(224, 210, 255, 0.6) 0%,
      rgba(224, 210, 255, 0) 45%
    ),
    radial-gradient(
      circle at 60% 0%,
      rgba(254, 243, 199, 0.7) 0%,
      rgba(254, 243, 199, 0) 50%
    ),
    radial-gradient(
      circle at 90% 15%,
      rgba(224, 242, 254, 0.6) 0%,
      rgba(224, 242, 254, 0) 40%
    ),
    #f8fafc;

  filter: blur(40px);
}
.last-update {
  margin-top: 6px;
  margin-bottom: 6px;
  font-size: 11px;
  color: #94a3b8;
}

.last-update strong {
  color: #64748b;
  font-weight: 600;
}

/* =========================================================
   HEADER
========================================================= */

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  position: relative;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
  overflow: hidden;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text h1 {
font-family: 'Montserrat', sans-serif;
margin: 0 0 4px;
font-size: 24px;
font-weight: 700;
background-image:
    linear-gradient(
      90deg,
      #FB9966 0%,
      #8B73BA 50%,
      #E64480 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;
}

.brand-text p {
  margin: 0;

  font-size: 13px;
  color: var(--text-sub);
  font-weight: 600;
}


/* =========================================================
   BOUTON LOCALISATION
========================================================= */

.btn-locate::after {
  content: "Autour de moi";

  position: absolute;

  top: 82px;
  left: 50%;

  transform: translateX(-50%);

  background: white;
  color: #111111;

  padding: 7px 12px;

  border-radius: 10px;

  font-size: 12px;
  font-weight: 600;

  white-space: nowrap;

  box-shadow: 0 5px 15px rgba(30, 41, 59, 0.15);

  opacity: 0;
  pointer-events: none;

  transition: opacity .2s ease;

  z-index: 100;
}

.btn-locate:hover::after {
  opacity: 1;
}

/* =========================================================
   CATÉGORIES
========================================================= */

.categories-wrapper {
  width: 100%;

  position: relative;

  /*
   * IMPORTANT :
   * on crée ici la zone de référence.
   */
z-index:20;
}


/*
 * Zone de défilement horizontale.
 *
 * Le overflow est volontairement uniquement horizontal.
 * Le menu déroulant sera positionné en FIXED pour ne pas
 * être découpé par cette zone.
 */

.categories-scroll {
  display: flex;
  align-items: flex-start;

  gap: 10px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 8px 10px 8px;

  scrollbar-width: none;

  scroll-behavior: smooth;

  /*
   * Évite que les éléments flex rétrécissent.
   */
  width: 100%;
}

.categories-scroll::-webkit-scrollbar {
  display: none;
}


/* =========================================================
   TUILES CATÉGORIES
========================================================= */

.category-tile {
  position: relative;

  flex: 0 0 auto;

  width: 90px;
  min-height: 70px;

  padding: 0;

  border: none;
  background: transparent;

  cursor: pointer;

  display: flex;
  flex-direction: column;
  align-items: center;

  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-3px);
}

.calm-info {
  margin-top: 8px;
  padding: 8px 10px;
  background: #f0fdf4;
  border-radius: 10px;
}

.calm-info-title {
  font-size: 11px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 6px;
}

.calm-features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.calm-features span {
  display: inline-flex;
  align-items: center;
  padding: 4px 7px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
}

.calm-features .available {
  background: #dcfce7;
  color: #166534;
}

.calm-features .unavailable {
  background: #f1f5f9;
  color: #94a3b8;
}

.calm-features .unknown {
  background: #f8fafc;
  color: #94a3b8;
  border: 1px dashed #cbd5e1;
}

/* =========================================================
   ICÔNE CATÉGORIE
========================================================= */

.category-icon {
width: 70px;
height: 70px;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
transition: transform 0.3s ease;
}

.category-tile:hover .category-icon {
  transform: scale(1);
}


/* =========================================================
   COULEURS CATÉGORIES
========================================================= */

.category-wc {
background: linear-gradient(135deg, #dcefe9, #b8ddd3);
}

.category-langer {
background: linear-gradient(135deg, #fff0f5, #fbcfe8);
}

.category-shopping {
background: linear-gradient(135deg, #fff7ed, #fed7aa);
}

.category-locate {
background: linear-gradient(135deg, #ffffff, #f5f5fa);
}


/* =========================================================
   COMPTEUR
========================================================= */

.category-count {
position: absolute;
top: 63px;
min-width: 34px;
height: 34px;
padding: 0 10px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.96);
border-radius: 16px;
font-size: 14px;
font-weight: 700;
color: #6f6285;
box-shadow: 0 5px 12px rgba(30, 41, 59, 0.08);
}


/* =========================================================
   LIBELLÉ
========================================================= */

.category-label {
margin-top: 34px;
font-size: 13px;
line-height: 1.25;
font-weight: 700;
text-align: center;
}


/* =========================================================
   BOUTON "TOUTES LES CATÉGORIES"
========================================================= */

.dropdown-filters {
flex: 0 0 auto;
position: relative;
z-index: 30;
}

.category-all {
width: 120px;
min-height: 120px;
padding: 14px 10px 12px;
background: linear-gradient(135deg, #ffffff, #f8fafc);
border-radius: 24px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.category-all .category-icon {
width: 42px;
height: 42px;
background: transparent;
box-shadow: none;
border-radius: 12px;
}

.category-all .category-label {
margin-top: 11px;
font-size: 15px;
}

.category-grid svg {
width: 29px;
height: 29px;
color: #27364b;
}

.category-all.open {
  background: #ffffffbf;
}

/* =========================================================
   MENU DÉROULANT
========================================================= */

/*
 * IMPORTANT
 *
 * Le menu est FIXED.
 *
 * C'est LA correction principale.
 *
 * Il n'est donc plus prisonnier de :
 *
 * .categories-scroll { overflow-x:auto; }
 *
 * et ne peut plus être découpé par cette zone.
 */
.dropdown-content::-webkit-scrollbar {
  width: 6px;
}

.dropdown-content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 20px;
}

.dropdown-content::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 20px;
}

.dropdown-content {
  position: fixed;
  width: 280px;
  max-height: 480px;
  padding: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  clip-path: inset(0 round 20px);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid #edf0f5;
  border-radius: 20px;
  box-shadow: var(--shadow-menu);
  z-index: 1000;
visibility: hidden;
opacity: 0;
pointer-events: none;
  /* IMPORTANT */
left: 0;
top: 0;
transform: translateY(-8px) scale(.98);
transition:
opacity .18s ease,
transform .18s ease;
}

/* Menu ouvert */

.dropdown-content.show {
visibility: visible;
opacity: 1;
pointer-events: auto;
transform:
translateY(0)
scale(1);
}

body.menu-open {
  overflow: hidden;
}
.dropdown-content.show {
  touch-action: auto;
}

.dropdown-content {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

/* =========================================================
   LIGNES DU MENU
========================================================= */

.dropdown-category {
  width: 100%;
min-height:44px;
  padding:6px 10px;

  display: flex;
  align-items: center;

  gap: 10px;

  border: none;
  border-radius: 12px;

  background: transparent;

  font-family: 'Open Sans', sans-serif;

  color: var(--text-dark);

  cursor: pointer;

  text-align: left;

  transition:
    background 0.15s ease;
}

.dropdown-category:hover {
  background: #f8fafc;
}

.dropdown-category.active {
  background: var(--purple-light);
}


/* =========================================================
   ICÔNE MENU
========================================================= */

.dropdown-icon {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #f8fafc;

  font-size: 17px;

  flex-shrink: 0;
}


/* =========================================================
   NOM MENU
========================================================= */

.dropdown-name {
  flex: 1;

  font-size: 13px;
  font-weight: 700;
}


/* =========================================================
   COMPTEUR MENU
========================================================= */

.dropdown-count {
  min-width: 30px;
  height: 26px;

  padding: 0 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f1f5f9;

  border-radius: 20px;

  font-size: 11px;
  font-weight: 800;

  color: var(--text-sub);
}


/* =========================================================
   ZONE CARTE
========================================================= */

.app-layout {
  display: grid;

  grid-template-columns: 1fr 340px;

  gap: 16px;

  height: calc(100vh - 210px);

  min-height: 500px;

  /*
   * La carte est volontairement sous le système
   * de catégories.
   */
  position: relative;
  z-index: 1;
}


/* =========================================================
   CARTE
========================================================= */

.map-wrapper {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  position: relative;
  z-index: 1;
}

#map {
  width: 100%;
  height: 100%;

  border-radius: 16px;

  z-index: 1;
}

.user-location-popup .leaflet-popup-content-wrapper {
  min-width: 0 !important;
  width: auto !important;
  border-radius: 10px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.user-location-popup .leaflet-popup-content {
  margin: 8px 10px !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  text-align: center;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1.4;
}

.user-location-popup .leaflet-popup-tip {
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   SIDEBAR
========================================================= */

.sidebar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.sidebar-header {
  padding: 16px 20px;

  border-bottom: 1px solid var(--border-color);

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-header h2 {
  font-family: 'Montserrat', sans-serif;

  font-size: 15px;
  font-weight: 700;

  margin: 0;
}

.sidebar-header span {
  font-size: 12px;

  color: var(--text-sub);

  font-weight: 600;
}


/* =========================================================
   LISTE POI
========================================================= */

.poi-list {
  flex-grow: 1;

  overflow-y: auto;

  padding: 12px;

  display: flex;
  flex-direction: column;

  gap: 8px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      black 80%,
      transparent 100%
    );

  mask-image:
    linear-gradient(
      to bottom,
      black 80%,
      transparent 100%
    );
}

.poi-list.is-at-bottom {
  -webkit-mask-image: none;
  mask-image: none;
}


/* =========================================================
   FOOTER SIDEBAR
========================================================= */

.sidebar-footer {
  padding: 12px 16px;

  border-top: 1px solid var(--border-color);

  background: rgba(248, 250, 252, 0.5);

  font-size: 10px;

  color: var(--text-sub);

  line-height: 1.4;

  text-align: center;
}

.sidebar-footer .report-link {
  display: inline-block;

  margin-top: 6px;

  color: #111111;

  font-weight: 700;

  text-decoration: none;

  cursor: pointer;
}

.sidebar-footer .report-link:hover {
  color: var(--purple);
}


/* =========================================================
   CARTES POI
========================================================= */

.poi-card {
background: white;
border: 1px solid var(--border-color);
border-radius: 20px;
padding: 10px 16px;
display: flex;
align-items: center;
gap: 12px;
cursor: pointer;
transition: all 0.2s ease;
}

.poi-card:hover {
border-color: #cbd5e1;
box-shadow: var(--shadow-sm);
}

.poi-card.selected {
border-color: #d1c9ec;
background-color: #ece7fd54;
}

.poi-icon-box {
width: 36px;
height: 36px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
flex-shrink: 0;
box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.poi-info {
display: flex;
flex-direction: column;
overflow: hidden;
width: 100%;
}

.poi-info h4 {
margin: 0;
font-family: 'Montserrat', sans-serif;
font-size: 13px;
font-weight: 600;
color: var(--text-dark);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.poi-info p {
margin: 2px 0 0;
font-size: 11px;
color: var(--text-sub);
font-weight: 600;
}

/* =========================================================
   STATUT
========================================================= */

.status-tag {
display: inline-block;
font-size: 10px;
font-weight: 700;
padding: 4px 8px;
border-radius: 10px;
margin-top: 5px;
margin-bottom: 10px;
width: fit-content;
border: 1px solid transparent;
}

.status-tag.open {
background: #e6f3f1;
color: #111111;
}

.status-tag.closed {
background: #fee8eb;
color: #111111;
}


/* =========================================================
   MARQUEURS
========================================================= */

/* Remplacement de la croix par défaut de Leaflet sur Desktop */
.leaflet-popup-close-button {
  top: 12px !important;
  right: 14px !important;
  background: #e2e8f0 !important;
  border-radius: 50% !important;
  width: 28px !important;
  height: 28px !important;
  font-size: 16px !important;
  color: #4b5563 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: background 0.15s ease, color 0.15s ease;
}

.leaflet-popup-close-button:hover {
  background: #cbd5e1 !important;
  color: #1f2937 !important;
}

.custom-pin {
width: 34px;
height: 34px;
border-radius: 50%;
border: 2px solid rgba(255, 255, 255, 0.6);
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
background-color:
rgba(255, 255, 255, 0.4) !important;
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
}

.custom-pin.active {
border-color:
var(--pin-color, #8B73BA) !important;
animation:
pulse-ring 1.5s infinite !important;
z-index: 1000 !important;
}

@keyframes pulse-ring {
0% {
box-shadow:
0 0 0 0
var(
--pin-color,
rgba(139, 115, 186, 0.7)
);
}

70% {
box-shadow:
0 0 0 16px
rgba(0, 0, 0, 0);
}

100% {
box-shadow:
0 0 0 0
rgba(0, 0, 0, 0);
}
}
.category-tile:focus,
.category-tile:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.subcategory-badge {
display: inline-flex;
align-items: center;
gap: 3px;
margin-left: 5px;
padding: 2px 7px;
border-radius: 999px;
background: #ece7fd;
color: #8B73BA;
font-size: 10px;
font-weight: 600;
line-height: 1.4;
white-space: nowrap;
}

.poi-meta {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 3px;
}

/* =========================================================
   POSITION UTILISATEUR
========================================================= */

.user-location-pin {
width: 20px;
height: 20px;
background-color: #4B7DBF;
border: 3px solid white;
border-radius: 50%;
box-shadow: 0 0 0 8px rgba(75, 125, 191, 0.3);
animation: user-pulse 2s infinite;
}

@keyframes user-pulse {
0% {
box-shadow:
0 0 0 0
rgba(75, 125, 191, 0.6);
}

70% {
box-shadow:
0 0 0 18px
rgba(75, 125, 191, 0);
}

100% {
box-shadow:
0 0 0 0
rgba(75, 125, 191, 0);
}
}


/* =========================================================
   POPUP LEAFLET
========================================================= */

.leaflet-popup-content-wrapper,
.leaflet-popup-content,
.leaflet-popup-content b {
  font-family: 'Open Sans', sans-serif !important;
}

.leaflet-popup-content-wrapper {
width: 350px !important;
box-sizing: border-box !important;
box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.leaflet-popup-content {
width: auto !important;
max-width: none !important;
margin: 13px 19px !important;
box-sizing: border-box !important;
word-wrap: break-word;
}

/* =========================================================
   BOUTON ITINÉRAIRE
========================================================= */

.btn-itinerary,
.leaflet-popup-content a.btn-itinerary {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
margin-top: 10px;
padding: 5px 15px;
background-color: #f8fafc;
color: var(--purple) !important;
border: 1px solid #e2e8f0;
border-radius: 50px;
text-decoration: none;
font-size: 12px;
font-weight: 600;
box-sizing: border-box;
transition: all 0.2s ease;
}

.btn-itinerary:hover,
.leaflet-popup-content a.btn-itinerary:hover {
background-color: rgba(139, 115, 186, 0.1);
color: var(--purple) !important;
}


/* =========================================================
   MOBILE
========================================================= */
@media (max-width:850px) and (orientation: landscape) {

  .dropdown-content {
    top: 90px;
    max-height: 70dvh;
  }

}


@media (max-width: 850px) {

body {
padding: 12px;
}
.dropdown-content {
  scrollbar-width: thin;
}

.dropdown-content::-webkit-scrollbar {
  width: 4px;
}

.dropdown-content::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-content::-webkit-scrollbar-thumb {
  background: rgba(139, 115, 186, 0.35);
  border-radius: 20px;
}

/* -------------------------
     Header
------------------------- */

.brand-icon {
display: none;
}

.btn-locate span {
display: none;
 }

.btn-locate {
padding: 10px 16px;
justify-content: center;
}

/* -------------------------
     Catégories
------------------------- */

.categories-scroll {
gap: 5px;
padding-left: 2px;
padding-right: 2px;
}

.category-tile {
width: 78px;
min-height: 116px;
}

.category-icon {
width: 60px;
height: 60px;
border-radius: 16px;
font-size: 27px;
}

.category-count {
top: 55px;
min-width: 30px;
height: 30px;
font-size: 13px;
}

.category-label {
margin-top: 34px;
font-size: 11px;
}

/* -------------------------
     Toutes catégories
------------------------- */

.category-all {
width: 110px;
min-height: 110px;
border-radius: 21px;
}

.category-all .category-label {
font-size: 12px;
}

/* -------------------------
     Menu
------------------------- */

.dropdown-content {
    position: fixed;
    left: 12px;
    right: 12px;
    width: auto;
    top: 140px;
    max-height: 50dvh;
    overflow-y: auto;
    overflow-x: hidden;

    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;

    touch-action: pan-y;
  }
/*
* Le JS positionnera le menu.
*/


/* -------------------------
     Carte / Sidebar
------------------------- */

.app-layout {
grid-template-columns: 1fr;
height: auto;
}

#map {
height: 350px;
}

.sidebar {
height: 55vh;
max-height: 600px;
}
}

/* =========================================================
   TRÈS PETITS ÉCRANS
========================================================= */

.mobile-break {
display: none;
}

@media (max-width: 600px) {
.mobile-break {
display: inline;
}
}

/* ========================================================= COULEURS DES CATÉGORIES ET SOUS-CATÉGORIES (ICÔNES) ========================================================= */
/* Toilettes & Hygiène */
.category-wc { background-color: #d8f3ee; } 
.category-langer { background-color: #fce7f3; }
.category-biberon { background-color: #ffedd5; }

/* Santé & Pratique */
.category-pharmacie { background-color: #d1fae5; }
.category-remparts { background-color: #e5e7eb; }

/* Commerces */
.category-shopping,
.category-commerce { background-color: #ffedd5; }
.category-boutique { background-color: #fed7aa; }
.category-superette { background-color: #fde68a; }

/* Alimentation */
.category-gourmandises { background-color: #fef3c7; }

/* Nature */
.category-calme { background-color: #dcfce7; }
.category-plage { background-color: #ccfbf1; }
.category-photo { background-color: #e0e7ff; }

/* Loisirs */
.category-loisirs { background-color: #fee2e2; }
.category-jeux { background-color: #fef08a; }
.category-activites { background-color: #fed7aa; }

/* Global */
.category-all { background-color: #f1f5f9; }
.category-grid { background-color: #e2e8f0; }