
/* ── CARTE ── */
.pdlr-pl-menu {
  max-width: 1100px;
  margin: 0 auto;
}

.pdlr-pl-menu-head {
  text-align: center;
  margin-bottom: 4rem;
}

.pdlr-pl-menu-head .pdlr-title {
  margin-bottom: 0.5rem;
}

.pdlr-pl-menu-legend {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.pdlr-pl-menu-legend strong {
  font-weight: 500;
  color: var(--teal);
}

.pdlr-pl-menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

/* ── CATÉGORIE ── */
.pdlr-pl-cat {
  margin-bottom: 3rem;
}

.pdlr-pl-cat-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 1.25rem;
}

/* ── ITEMS ── */
.pdlr-pl-list {
  list-style: none;
}

.pdlr-pl-item {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(13,34,51,0.06);
}

.pdlr-pl-item:last-child {
  border-bottom: none;
}

.pdlr-pl-item-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.pdlr-pl-item-name {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--navy);
  flex-shrink: 0;
}

.pdlr-pl-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(13,34,51,0.18);
  margin-bottom: 3px;
  min-width: 0.75rem;
}

.pdlr-pl-item-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  flex-shrink: 0;
}

.pdlr-pl-item-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.1rem;
  font-style: italic;
}

/* ── MENTION ── */
.pdlr-pl-mention {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(13,34,51,0.1);
  font-style: italic;
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pdlr-pl-menu-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 600px) {
  .pdlr-pl-item-name  { font-size: 0.85rem; }
  .pdlr-pl-item-price { font-size: 0.82rem; }
}
