/* ============================================================================
   Kent Automotive — SHARED filter-sheet chrome (single source of truth)
   Clare 2026-07-28 "B": conform the *style* across PLP + Search filter sheets,
   but keep each sheet's SECTION ORDER strictly 1:1 with Kent's own live surface
   (no unified order, no invented filters). This file owns ONLY the chrome that
   is identical on both sheets — the bottom-sheet scaffold, grab handle, header,
   uppercase section titles, blue sort radios, and the Clear-all / Show-N footer.
   Surface-specific rules (PLP checkbox rows vs Search collapsible facet groups,
   sheet max-height, keyword input) stay in each page and are NOT touched here,
   so nothing about either page's order or facet set changes. Edit chrome HERE
   once and both sheets update — that's the lock.
   Relies on the per-page :root tokens (--blue #445980, --dark #221F1F,
   --gray #D9D9D9, --light #F7F7F7, --mdark). ==========================*/

/* bottom-sheet scaffold (max-height stays per-page: PLP 80% / Search 86%) */
.sheet{position:absolute;left:0;right:0;bottom:0;background:#fff;border-radius:18px 18px 0 0;box-shadow:0 -6px 30px rgba(34,31,31,.22);z-index:9;display:flex;flex-direction:column;transform:translateY(102%);transition:transform .26s cubic-bezier(.22,.61,.36,1)}
.sheet.open{transform:translateY(0)}
.sheet .grab{width:40px;height:4px;border-radius:100px;background:var(--gray);margin:8px auto 2px}
.sheet .shead{display:flex;align-items:center;justify-content:space-between;padding:8px 16px 12px;border-bottom:1px solid var(--gray)}
.sheet .shead h2{margin:0;font-family:Montserrat,sans-serif;font-weight:600;font-size:18px;color:var(--dark)}
.sheet .xbtn{background:none;border:0;color:var(--blue);font-family:Montserrat,sans-serif;font-weight:500;font-size:13px;cursor:pointer;padding:6px 2px}
.sheet .sbody{overflow-y:auto;padding:4px 16px 8px;display:flex;flex-direction:column}
.sheet .sbody::-webkit-scrollbar{width:0}

/* section separators + uppercase Roboto Condensed section titles */
.fsec{padding:14px 0;border-bottom:1px solid var(--light)}
.fsec:last-child{border-bottom:0}
.fsec .ftitle{font-family:'Roboto Condensed',sans-serif;font-weight:500;font-size:14px;color:var(--dark);text-transform:uppercase;letter-spacing:.04em;margin-bottom:10px}

/* sort radios (blue dial) — same on both sheets */
.sortopts{display:flex;flex-direction:column;gap:2px}
.sopt{display:flex;align-items:center;gap:12px;padding:9px 2px;cursor:pointer;font-family:'Roboto Condensed',sans-serif;font-size:15px;color:var(--dark)}
.sopt .radio{width:20px;height:20px;flex:0 0 20px;border:1.5px solid var(--blue);border-radius:100px;display:flex;align-items:center;justify-content:center}
.sopt .radio i{width:10px;height:10px;border-radius:100px;background:var(--blue);opacity:0}
.sopt.on .radio i{opacity:1}

/* footer: Clear all + blue Show-N-results — same on both sheets */
.sfoot{flex:0 0 auto;display:flex;align-items:center;gap:12px;padding:12px 16px;border-top:1px solid var(--gray);background:#fff}
.sfoot .clr{background:none;border:0;color:var(--blue);font-family:'Roboto Condensed',sans-serif;font-weight:500;font-size:15px;cursor:pointer;padding:10px 4px;white-space:nowrap}
.sfoot .apply{flex:1;height:44px;background:var(--blue);color:#fff;border:0;border-radius:100px;font-family:'Roboto Condensed',sans-serif;font-weight:500;font-size:16px;cursor:pointer}
