.bppf {
  --bppf-pink: #e71485;
  --bppf-black: #171717;
  --bppf-soft: #f2f2f3;
  --bppf-line: #e2e2e4;
  width: 100%;
  margin: 28px 0;
  color: #171717;
  font-family: inherit;
}
.bppf *, .bppf *::before, .bppf *::after { box-sizing: border-box; }
.bppf__inner { width: min(1180px, calc(100% - 28px)); margin: 0 auto; }
.bppf__heading { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(280px,.95fr); gap: 44px; align-items: end; margin-bottom: 24px; }
.bppf__eyebrow { display: block; color: var(--bppf-pink); font-size: 11px; font-weight: 800; letter-spacing: 1.5px; margin-bottom: 8px; }
.bppf__title { margin: 0; font-size: clamp(28px, 4vw, 44px); line-height: 1.05; letter-spacing: -1.2px; font-weight: 800; color: var(--bppf-black); }
.bppf__lead { margin: 0; color: #666; font-size: 15px; line-height: 1.7; max-width: 540px; }
.bppf__searchbox { background: var(--bppf-soft); border-radius: 24px; padding: 24px; }
.bppf__label { font-size: 13px; margin: 0 0 12px 2px; color: #333; }
.bppf__selectors { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.bppf__field { position: relative; margin: 0; min-width: 0; }
.bppf__field-label { display: block; margin: 0 0 7px 4px; font-size: 9px; font-weight: 800; letter-spacing: 1.1px; color: #888; text-transform: uppercase; }
.bppf__select { width: 100%; height: 54px; border: 1px solid #dddde0; border-radius: 28px; background-color: #fff; color: #222; padding: 0 46px 0 18px; font-size: 15px; outline: none; cursor: pointer; appearance: auto; box-shadow: none; }
.bppf__select:focus { border-color: var(--bppf-pink); box-shadow: 0 0 0 3px rgba(231,20,133,.08); }
.bppf__select:disabled { cursor: default; color: #aaa; background: #f9f9f9; }
.bppf__hint { margin: 14px 4px 0; color: #858585; font-size: 12px; line-height: 1.5; }
.bppf__status { margin-top: 22px; }
.bppf__loading, .bppf__error, .bppf__empty { border-radius: 18px; padding: 18px 20px; background: #f6f6f7; color: #666; }
.bppf__error { border-left: 3px solid var(--bppf-pink); color: #333; }
.bppf__result-head { display: flex; justify-content: space-between; align-items: baseline; gap: 15px; padding: 0 2px 14px; border-bottom: 1px solid var(--bppf-line); }
.bppf__result-head span { color: #999; font-size: 10px; letter-spacing: 1.3px; font-weight: 800; text-transform: uppercase; }
.bppf__result-head strong { font-size: 18px; color: #171717; text-align: right; }
.bppf__results { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-top: 18px; }
.bppf-product { overflow: hidden; border: 1px solid #e7e7e9; border-radius: 20px; background: #fff; min-width: 0; transition: transform .18s ease, box-shadow .18s ease; }
.bppf-product:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(0,0,0,.07); }
.bppf-product__media { display: flex; align-items: center; justify-content: center; height: 190px; padding: 18px; background: #fafafa; text-decoration: none; }
.bppf-product__image { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.bppf-product__image--empty { width: 76px; height: 76px; border-radius: 18px; background: #fbe4f1; color: var(--bppf-pink); font-size: 26px; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.bppf-product__body { padding: 20px; }
.bppf-product__ref { color: var(--bppf-pink); font-size: 10px; font-weight: 800; letter-spacing: 1px; margin-bottom: 7px; text-transform: uppercase; }
.bppf-product__name { margin: 0 0 16px; font-size: 17px; line-height: 1.35; min-height: 46px; }
.bppf-product__name a { color: #1a1a1a; text-decoration: none; }
.bppf-product__meta { display: flex; justify-content: space-between; gap: 10px; align-items: center; padding-top: 14px; border-top: 1px solid #eee; font-size: 13px; }
.bppf-product__meta strong { font-size: 18px; color: #171717; }
.bppf-product__meta span { font-size: 11px; color: #777; }
.bppf-product__meta .is-available { color: #26834a; }
.bppf-product__button { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; border-radius: 24px; background: #171717; color: #fff !important; padding: 12px 16px; font-size: 13px; font-weight: 700; text-decoration: none !important; }
.bppf-product__button span { color: var(--bppf-pink); font-size: 18px; }

@media (max-width: 900px) {
  .bppf__heading { grid-template-columns: 1fr; gap: 12px; }
  .bppf__lead { max-width: 720px; }
  .bppf__results { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .bppf { margin: 20px 0; }
  .bppf__inner { width: min(100% - 20px, 1180px); }
  .bppf__searchbox { padding: 18px 14px; border-radius: 20px; }
  .bppf__selectors { grid-template-columns: 1fr; gap: 12px; }
  .bppf__select { height: 52px; font-size: 16px; }
  .bppf__hint { margin-top: 12px; }
  .bppf__results { grid-template-columns: 1fr; }
  .bppf__result-head { align-items: flex-start; flex-direction: column; }
  .bppf__result-head strong { text-align: left; }
  .bppf-product__media { height: 165px; }
  .bppf-product__name { min-height: 0; }
}
