/* ===== Page /plan/ ===== */
.plan-page { padding-top: 2rem; }
.plan-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 1.6rem; align-items: start; }
@media (max-width: 900px) { .plan-grid { grid-template-columns: 1fr; } }
.plan-map-card { background: var(--creme, #faf7ef); border: 1px solid rgba(43,84,42,.18);
  border-radius: 14px; padding: 6px; box-shadow: 0 10px 26px rgba(30,60,30,.08); }
#map { height: 560px; border-radius: 10px; background: #dfe8d8; z-index: 1; }
@media (max-width: 900px) { #map { height: 420px; } }

/* pins pictos */
.cq-pin, .rep-pin { background: none; border: none; }
.cq-pin span, .rep-pin span {
  display: block; width: 34px; height: 34px; background-size: contain; background-repeat: no-repeat;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.35)); transition: transform .12s ease;
}
.rep-pin span { width: 26px; height: 26px; }
.cq-pin:hover span { transform: scale(1.15); }
.cq-pin-approx span { opacity: .55; }
.cq-pin-approx::after {
  content: "?"; position: absolute; top: -4px; right: -6px; width: 15px; height: 15px;
  background: #c8a415; color: #fff; border-radius: 50%; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* popup */
.leaflet-popup-content-wrapper { border-radius: 12px; background: #fff; opacity: 1; }
.leaflet-popup-tip { background: #fff; }
.leaflet-popup-content { margin: 12px 14px; font-family: inherit; }
.pop { display: flex; flex-direction: column; gap: 6px; min-width: 170px; }
.pop strong { font-size: 1.02rem; color: #2b542a; }
.pop-chip { align-self: flex-start; color: #fff; font-size: .72rem; font-weight: 700;
  padding: 2px 9px; border-radius: 999px; letter-spacing: .03em; }
.pop-adr { margin: 0; font-size: .84rem; color: #555; }
.pop-approx { margin: 0; font-size: .78rem; font-style: italic; color: #a08a25; }
.pop-link { font-size: .86rem; font-weight: 700; color: #2b542a; text-decoration: underline; }

/* aside */
.plan-aside { display: flex; flex-direction: column; gap: 14px; }
.plan-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.pf-btn { border: 1.5px solid rgba(43,84,42,.35); background: #fff; color: #2b542a;
  font-weight: 700; font-size: .84rem; padding: 7px 14px; border-radius: 999px; cursor: pointer; }
.pf-btn:hover { background: #eef4ea; }
.pf-btn.active { background: #2b542a; color: #fff; border-color: #2b542a; }
.plan-list { display: flex; flex-direction: column; gap: 6px; max-height: 430px; overflow-y: auto; }
.pl-item { display: flex; align-items: center; gap: 10px; text-align: left;
  background: #fff; border: 1px solid rgba(43,84,42,.16); border-radius: 10px;
  padding: 8px 12px; cursor: pointer; font: inherit; }
.pl-item:hover { background: #eef4ea; }
.pl-dot { width: 11px; height: 11px; border-radius: 50%; flex: 0 0 auto; }
.pl-name { font-weight: 600; font-size: .92rem; color: #2c3a28; }
.pl-cat { margin-left: auto; font-size: .74rem; color: #7a8a70; white-space: nowrap; }
.pl-approx .pl-name::after { content: "?"; color: #c8a415; font-weight: 800; margin-left: 4px; }
.plan-note { font-size: .78rem; color: #7a8a70; line-height: 1.5; margin: 0; }
