/* /props/ — the whole catalogue: live search + aisle chips over the full grid. */

.allp-head { padding-bottom: 0; }
.allp-lede {
  max-width: 62ch;
  margin: 18px 0 0 0;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.6;
}
.allp-lede a { font-weight: 700; text-decoration: underline; }

.allp-tools {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: clamp(18px, 2.4vw, 28px);
  padding-bottom: 14px;
  background: var(--cream);
  border-bottom: 2px solid var(--green);
}
.allp-search { position: relative; max-width: 520px; margin-bottom: 14px; }
.allp-search__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  pointer-events: none;
}
.allp-search__input {
  width: 100%;
  min-height: 52px;
  padding: 12px 46px 12px 46px;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 600;
  -webkit-appearance: none;
  appearance: none;
}
.allp-search__input::placeholder { color: var(--ink-soft); font-weight: 500; }
.allp-search__input:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.allp-search__input::-webkit-search-cancel-button { display: none; }
.allp-search__clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream);
  cursor: pointer;
}
.allp-search__clear[hidden] { display: none; }

.allp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.allp-chip,
.allp-reset {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 8px 15px;
  background: var(--cream);
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}
.allp-chip:hover { background: var(--paper); }
.allp-chip.is-on { background: var(--green); color: var(--cream); }
.allp-chip__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream);
  font-size: 11px;
}
.allp-chip.is-on .allp-chip__count { background: var(--gold); color: var(--ink); }

.allp-count {
  margin: 12px 0 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}

.allp-grid-wrap { padding-top: clamp(24px, 3vw, 40px); }
.allp-card[hidden] { display: none !important; }

.allp-card .prop-card__body { gap: 12px; padding: 14px 15px 15px 15px; }
.allp-card .prop-card__title { font-size: 15px; line-height: 1.25; }
.allp-card .btn-small { width: 100%; justify-content: center; display: inline-flex; align-items: center; min-height: 44px; }

.allp-empty { padding: 40px 0 10px 0; }
.allp-empty[hidden] { display: none; }
.allp-empty__title { font-size: clamp(22px, 2.4vw, 32px); color: var(--green); margin: 0 0 8px 0; }
.allp-reset { min-height: 0; padding: 5px 13px; font-size: 13px; }

@media (max-width: 700px) {
  .allp-tools { position: static; }
  .allp-search { max-width: none; }
}
