.fb-pl {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 16px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}

.fb-pl__head { text-align: center; margin-bottom: 22px; }
.fb-pl__title { font-size: clamp(28px, 3vw, 42px); line-height: 1.1; margin: 0 0 8px; }
.fb-pl__subtitle { margin: 0 auto; max-width: 760px; color: #5b616b; font-size: 16px; }

.fb-pl__wrap { display: grid; gap: 14px; }

.fb-pl__card {
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.fb-pl__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  background: linear-gradient(180deg, rgba(245,247,255,0.9), rgba(255,255,255,1));
}

.fb-pl__summary::-webkit-details-marker { display: none; }

.fb-pl__cat { font-weight: 800; font-size: 18px; color: #111827; }
.fb-pl__catdesc { margin-top: 4px; color: #6b7280; font-size: 14px; }

.fb-pl__chev {
  font-size: 26px;
  transform: rotate(90deg);
  transition: transform .18s ease;
  color: #111827;
}

details[open] .fb-pl__chev { transform: rotate(270deg); }

.fb-pl__list {
  padding: 6px 18px 16px;
  background: #fff;
}

.fb-pl__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px dashed rgba(20, 20, 20, 0.14);
}

.fb-pl__row:first-child { border-top: 0; }

.fb-pl__name { font-weight: 700; color: #111827; font-size: 16px; }
.fb-pl__desc { margin-top: 4px; color: #6b7280; font-size: 14px; }

.fb-pl__right {
  text-align: right;
  display: grid;
  gap: 6px;
  align-content: start;
}

.fb-pl__time {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
}

.fb-pl__price {
  font-weight: 800;
  font-size: 16px;
  color: #0b57d0;
  white-space: nowrap;
}

.fb-pl__empty { color: #6b7280; margin: 10px 0 0; }

.fb-pl__note {
  text-align: center;
  margin-top: 12px;
  color: #6b7280;
}

@media (max-width: 680px) {
  .fb-pl__row { grid-template-columns: 1fr; }
  .fb-pl__right { text-align: left; grid-auto-flow: column; justify-content: start; column-gap: 12px; }
  .fb-pl__price { font-size: 15px; }
}