/* ============================================================
   RF-SHARED.CSS — global rules needed on ALL pages
   (header, footer, nav panels, skip link, focus rings, tokens)
   home-overrides.css stays on index.html ONLY
   ============================================================ */

/* ── Reset ── */
*,*::before,*::after{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{background:#fff;}

/* ── Global tokens (aliases) ── */
:root{
  --brand-blue-d: #005bb5;
  --blue:  var(--brand-blue);
  --rf-blue: var(--brand-blue);
  --mfx-blue: var(--brand-blue);
  --pgx-blue: var(--brand-blue);
  --card-r: 14px;
  --rf-container: 1600px;
  --rf-utility-h: 0px;
  --t3: #6e6e73;
  --t2: #515154;
  --ink: #1d1d1f;
  --font: 'InterVariable', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --filter-h:      36px;
  --filter-pill-h: 32px;
  --filter-r:      999px;
  --filter-bg:     #ececee;
  --filter-active: var(--brand-blue);
  --filter-font:   13px;
}

/* ── Skip link ── */
.rf-skip{position:absolute;top:-100%;left:50%;transform:translateX(-50%);background:var(--brand-blue);color:#fff;padding:10px 20px;border-radius:0 0 8px 8px;font-weight:600;z-index:100000;text-decoration:none;transition:top 160ms ease;}
.rf-skip:focus{top:0;}

/* ── Focus rings ── */
:focus-visible{outline:2.5px solid var(--brand-blue);outline-offset:3px;}

/* ── Header scroll state ── */
.rf-header[data-scrolled="true"]{
  background:rgba(255,255,255,0.88) !important;
  backdrop-filter:blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter:blur(20px) saturate(180%) !important;
  box-shadow:0 1px 0 rgba(0,0,0,0.08) !important;
}

/* ── Nav panel positioning ── */
.rf-nav-panel{
  top:calc(var(--rf-header-h,60px) + var(--rf-utility-h,0px)) !important;
}

/* ── Filter bar (global) ── */
.rf-filter-bar{display:flex;align-items:center;gap:5px;background:var(--filter-bg);border-radius:var(--filter-r);padding:3px;overflow-x:auto;scrollbar-width:none;flex-wrap:nowrap;}
.rf-filter-bar::-webkit-scrollbar{display:none;}
.rf-filter-pill{flex:0 0 auto;height:var(--filter-pill-h);padding:0 15px;border-radius:var(--filter-r);border:none;background:transparent;font:inherit;font-size:var(--filter-font);font-weight:500;color:var(--t2);cursor:pointer;white-space:nowrap;transition:background 150ms,color 150ms,box-shadow 150ms;}
.rf-filter-pill:hover{color:var(--ink);}
.rf-filter-pill[aria-selected="true"],.rf-filter-pill.active{background:#fff;color:var(--filter-active);font-weight:700;box-shadow:0 1px 4px rgba(0,0,0,0.10),0 0 0 1px rgba(0,0,0,0.04);}
.rf-filter-pill:focus-visible{outline:2.5px solid var(--brand-blue);outline-offset:2px;}

/* ── Muted text contrast fix (global) ── */
.rfd-sub,.rfd-cdesc,.rf-cat-dhead-hint,
.pdrawer__highlight-sub,.pdrawer__delivery-sub,
.sh-nav-btn{color:var(--t3) !important;}

/* ── Header blur: 12px on mobile ── */
@media(max-width:768px){
  .rf-header{backdrop-filter:blur(12px) saturate(180%) !important;-webkit-backdrop-filter:blur(12px) saturate(180%) !important;will-change:transform;}
}

/* ── Parts Finder step badge ── */
.rpf-step-n{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;background:var(--brand-blue,var(--brand-blue));color:#fff;font-size:11px;font-weight:700;letter-spacing:0;flex-shrink:0;}

/* ── Footer ── */
.v1f-root,footer.v1f-root{background:#fafafa !important;}

/* ============================================================
   GLOBAL PRODUCT SYSTEM — Grok reference, site-wide
   One section header, one product card, one rail/control language.
   Sections opt into their own visible-column and row rules through
   data-rfp-columns / data-rfp-rows; the card anatomy never changes.
   ============================================================ */
:root{
  --rfp-ink:#1d1d1f;
  --rfp-muted:#6e6e73;
  --rfp-hint:#86868b;
  --rfp-line:#e8e8ed;
  --rfp-paper:#f5f5f7;
  --rfp-canvas:#fbfbfd;
  --rfp-accent:#0066cc;
  --rfp-accent-hover:#0a84ff;
  --rfp-gap:16px;
  --rfp-radius:8px;
  --rfp-shadow-card:0 1px 2px rgb(16 24 40 / .04),0 16px 34px -28px rgb(16 24 40 / .30);
  --rfp-shadow-lift:0 12px 28px -10px rgb(0 0 0 / .18);
}

body .rfp-section,
body .rfp-section *{box-sizing:border-box}
body .rfp-section{
  width:100%;
  padding:64px 0;
  background:var(--rfp-paper);
  color:var(--rfp-ink);
  font-family:'Plus Jakarta Sans','InterVariable','Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
body .rfp-section__inner{
  width:100%!important;
  max-width:1560px!important;
  margin:0 auto!important;
  padding-inline:24px!important;
}
body .rfp-section__head{
  display:flex!important;
  align-items:flex-end!important;
  justify-content:space-between!important;
  gap:16px!important;
}
body .rfp-section__eyebrow{
  display:block!important;
  margin:0!important;
  color:var(--rfp-hint)!important;
  font:600 13px/1.4 'Plus Jakarta Sans','Inter',sans-serif!important;
  letter-spacing:.14em!important;
  text-transform:uppercase!important;
}
body .rfp-section__eyebrow::before{display:none!important;content:none!important}
body .rfp-section__title{
  margin:4px 0 0!important;
  color:var(--rfp-ink)!important;
  font:600 30px/1.2 'Plus Jakarta Sans','Inter',sans-serif!important;
  letter-spacing:-.025em!important;
  text-wrap:balance;
}
body .rfp-section__description{
  margin:8px 0 0!important;
  max-width:760px;
  color:var(--rfp-muted)!important;
  font:400 14px/1.5 'Plus Jakarta Sans','Inter',sans-serif!important;
}
body .rfp-section__link{
  display:inline-flex!important;
  flex:0 0 auto;
  align-items:center;
  gap:7px;
  color:var(--rfp-accent)!important;
  font:500 14px/1.5 'Plus Jakarta Sans','Inter',sans-serif!important;
  text-decoration:none!important;
}
body .rfp-section__link:hover{text-decoration:underline!important;text-underline-offset:3px}

/* The canonical product card. */
body .rfp-card{
  display:flex!important;
  min-width:0!important;
  height:auto!important;
  flex-direction:column!important;
  overflow:hidden!important;
  border:1px solid var(--rfp-line)!important;
  border-radius:var(--rfp-radius)!important;
  background:var(--rfp-canvas)!important;
  box-shadow:var(--rfp-shadow-card)!important;
  color:var(--rfp-ink)!important;
  scroll-snap-align:start;
  scroll-snap-stop:normal;
  transition:transform 180ms ease,box-shadow 180ms ease!important;
}
body .rfp-card:hover{transform:translateY(-2px)!important;box-shadow:var(--rfp-shadow-lift)!important}
body .rfp-card a{text-decoration:none}
body .rfp-card__main{display:flex!important;min-height:0;flex:1 1 auto;flex-direction:column;color:inherit!important}
body .rfp-card__media{
  position:relative!important;
  display:flex!important;
  width:100%!important;
  aspect-ratio:4/3!important;
  min-height:0!important;
  align-items:center!important;
  justify-content:center!important;
  overflow:hidden!important;
  background:var(--rfp-paper)!important;
  border:0!important;
}
body .rfp-card__media-link{display:flex!important;width:100%;height:100%;align-items:center;justify-content:center}
body .rfp-card__image,
body .rfp-card__media > img,
body .rfp-card__media-link > img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  padding:12px!important;
  object-fit:contain!important;
  object-position:center!important;
  mix-blend-mode:multiply;
}
body .rfp-card__badges{position:absolute!important;z-index:2;left:12px!important;top:12px!important;display:flex!important;gap:6px!important;pointer-events:none}
body .rfp-card__badge{
  display:inline-flex!important;
  align-items:center!important;
  min-height:20px;
  padding:3px 10px!important;
  border:0!important;
  border-radius:999px!important;
  background:var(--rfp-ink)!important;
  color:#fff!important;
  font:700 10px/1.4 'Plus Jakarta Sans','Inter',sans-serif!important;
  letter-spacing:.045em!important;
  text-transform:uppercase!important;
}
body .rfp-card__badge--sale{background:rgba(201,52,26,.10)!important;color:#c9341a!important}
body .rfp-card__badge--preowned{background:rgba(35,155,73,.12)!important;color:#19863d!important}
body .rfp-card__copy{
  display:flex!important;
  min-height:0!important;
  flex:1 1 auto!important;
  flex-direction:column!important;
  padding:12px 16px 0!important;
  background:var(--rfp-canvas)!important;
}
body .rfp-card__brand-row{display:block!important;min-height:15px!important;margin:0!important}
body .rfp-card__brand{
  margin:0!important;
  color:var(--rfp-hint)!important;
  font:600 11px/1.4 'Plus Jakarta Sans','Inter',sans-serif!important;
  letter-spacing:.06em!important;
  text-transform:uppercase!important;
}
body .rfp-card__name{
  display:-webkit-box!important;
  min-height:40px!important;
  margin:4px 0 0!important;
  overflow:hidden!important;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  color:var(--rfp-ink)!important;
  font:600 15px/1.35 'Plus Jakarta Sans','Inter',sans-serif!important;
  letter-spacing:-.015em!important;
}
body .rfp-card__name a{color:inherit!important}
body .rfp-card__description{
  display:-webkit-box!important;
  min-height:35px!important;
  margin:4px 0 0!important;
  overflow:hidden!important;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  color:var(--rfp-muted)!important;
  font:400 13px/1.35 'Plus Jakarta Sans','Inter',sans-serif!important;
}
body .rfp-card__price{
  display:flex!important;
  min-height:24px;
  align-items:baseline!important;
  gap:8px!important;
  margin:12px 0 0!important;
  color:var(--rfp-ink)!important;
  font:600 16px/1.5 'Plus Jakarta Sans','Inter',sans-serif!important;
  font-variant-numeric:tabular-nums!important;
}
body .rfp-card__price-now{color:inherit!important;font:inherit!important}
body .rfp-card__price-was{color:var(--rfp-hint)!important;font:400 14px/1.5 'Plus Jakarta Sans','Inter',sans-serif!important;text-decoration:line-through!important}
body .rfp-card__actions{
  display:flex!important;
  gap:8px!important;
  margin-top:auto!important;
  padding:12px 16px 16px!important;
  border:0!important;
  background:var(--rfp-canvas)!important;
}
body .rfp-card__add,
body .rfp-card__view{
  display:inline-flex!important;
  width:auto!important;
  height:36px!important;
  min-height:36px!important;
  align-items:center!important;
  justify-content:center!important;
  white-space:nowrap!important;
  border-radius:6px!important;
  font:600 13px/1 'Plus Jakarta Sans','Inter',sans-serif!important;
  text-decoration:none!important;
}
body .rfp-card__add{
  flex:1 1 auto!important;
  padding:0 16px!important;
  border:0!important;
  background:var(--rfp-accent)!important;
  color:#fff!important;
  box-shadow:0 8px 20px -6px rgb(0 102 204 / .45)!important;
}
body .rfp-card__add:hover{background:var(--rfp-accent-hover)!important;color:#fff!important}
body .rfp-card__add.rfd-bcart--oos{background:#d1d1d6!important;color:#6e6e73!important;box-shadow:none!important;cursor:not-allowed!important}
body .rfp-card__view{
  flex:0 0 auto!important;
  padding:0 12px!important;
  border:1px solid var(--rfp-line)!important;
  background:var(--rfp-canvas)!important;
  color:var(--rfp-ink)!important;
}
body .rfp-card__view:hover{background:var(--rfp-paper)!important;color:var(--rfp-ink)!important}
body .rfp-card__add svg,
body .rfp-card__add .rf-cta-arrow,
body .rfp-card__add::before,
body .rfp-card__add::after{display:none!important;content:none!important}
body .rfp-card .rfnc-card__quick,
body .rfp-card .rfd-qa{display:none!important}

/* Reusable single-row rail. Section data determines visible columns. */
body .rfp-rail-shell{position:relative;min-width:0}
body .rfp-rail{
  display:flex!important;
  flex-flow:row nowrap!important;
  align-items:stretch!important;
  gap:var(--rfp-gap)!important;
  grid-template-columns:none!important;
  grid-template-rows:none!important;
  overflow-x:auto!important;
  overflow-y:hidden!important;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
  -ms-overflow-style:none;
  overscroll-behavior-inline:contain;
  touch-action:pan-x pan-y;
}
body .rfp-rail::-webkit-scrollbar{display:none}
body .rfp-section[data-rfp-columns='5'] .rfp-rail > .rfp-card{flex:0 0 calc((100% - 64px)/5)!important}
body .rfp-section[data-rfp-columns='4'] .rfp-rail > .rfp-card{flex:0 0 calc((100% - 48px)/4)!important}
body .rfp-arrow{
  position:absolute!important;
  z-index:12!important;
  top:50%!important;
  display:grid!important;
  place-items:center!important;
  width:46px!important;
  height:46px!important;
  padding:0!important;
  border:1px solid rgba(29,29,31,.18)!important;
  border-radius:999px!important;
  background:rgba(250,250,251,.96)!important;
  color:var(--rfp-ink)!important;
  box-shadow:0 8px 24px rgba(0,0,0,.14)!important;
  cursor:pointer!important;
  transform:translateY(-50%)!important;
  transition:transform .2s ease,box-shadow .2s ease,opacity .18s ease!important;
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
}
body .rfp-arrow--prev{left:-21px!important}
body .rfp-arrow--next{right:-21px!important}
body .rfp-arrow:hover{background:#fff!important;box-shadow:0 10px 28px rgba(0,0,0,.19)!important;transform:translateY(-50%) scale(1.04)!important}
body .rfp-arrow:active{transform:translateY(-50%) scale(.96)!important}
body .rfp-arrow svg{display:block!important;width:19px!important;height:19px!important;stroke:currentColor!important}
body .rfp-arrow[hidden],
body .rfp-arrow:disabled{visibility:hidden!important;opacity:0!important;pointer-events:none!important}
body .rfp-progress{
  position:relative!important;
  width:100%!important;
  height:3px!important;
  margin-top:16px!important;
  overflow:hidden!important;
  border-radius:999px!important;
  background:#d1d1d6!important;
}
body .rfp-progress__bar{
  position:absolute!important;
  inset:0 auto 0 0!important;
  min-width:44px!important;
  height:100%!important;
  border-radius:inherit!important;
  background:#48484a!important;
  transform:translate3d(0,0,0);
  transition:width .22s ease,transform .12s linear!important;
  will-change:width,transform;
}

/* Grok Deals: exact sidebar composition, global card/rail language. */
body #rf-grok-deals.rfp-section{background:var(--rfp-paper)!important}
body #rf-grok-deals .sx-shell{width:100%!important;max-width:none!important;margin:0!important;padding:0!important}
body #rf-grok-deals .sx-frame{
  display:grid!important;
  grid-template-columns:260px minmax(0,1fr)!important;
  grid-template-areas:'head head' 'side main'!important;
  column-gap:32px!important;
  row-gap:32px!important;
}
body #rf-grok-deals .rf-home-deals-topbar{grid-area:head!important;padding:0 0 32px!important;margin:0!important;border-bottom:1px solid var(--rfp-line)!important}
body #rf-grok-deals .dl-topbar-l{min-width:0}
body #rf-grok-deals .dl-tabsrow{grid-area:side!important;display:block!important;margin:0!important;min-width:0}
body #rf-grok-deals .dl-tabs{
  display:flex!important;
  flex-direction:column!important;
  align-items:stretch!important;
  gap:0!important;
  overflow:hidden!important;
  border:1px solid var(--rfp-line)!important;
  border-radius:var(--rfp-radius)!important;
  background:var(--rfp-canvas)!important;
  box-shadow:var(--rfp-shadow-card)!important;
}
body #rf-grok-deals .dl-tabs::before{display:none!important;content:none!important}
body #rf-grok-deals .rf-home-deals-spotlight{display:block!important;border:0!important;background:transparent!important}
body #rf-grok-deals .rf-home-deals-spotlight__media{
  display:flex!important;
  width:100%!important;
  aspect-ratio:4/3!important;
  align-items:center!important;
  justify-content:center!important;
  overflow:hidden!important;
  border:0!important;
  border-bottom:1px solid var(--rfp-line)!important;
  border-radius:0!important;
  background:var(--rfp-paper)!important;
}
body #rf-grok-deals .rf-home-deals-spotlight__media img{width:100%!important;height:100%!important;padding:12px!important;object-fit:contain!important;mix-blend-mode:multiply}
body #rf-grok-deals .rf-home-deals-spotlight__copy{padding:16px!important}
body #rf-grok-deals .rf-home-deals-spotlight__label{font:600 11px/1.4 'Plus Jakarta Sans','Inter',sans-serif!important;letter-spacing:.06em!important;text-transform:uppercase!important}
body #rf-grok-deals .rf-home-deals-spotlight__count{margin-top:8px!important;color:var(--rfp-ink)!important;font:600 40px/1 'Plus Jakarta Sans','Inter',sans-serif!important}
body #rf-grok-deals .rf-home-deals-spotlight__description{margin:8px 0 0!important;color:var(--rfp-muted)!important;font:400 12px/1.45 'Plus Jakarta Sans','Inter',sans-serif!important}
body #rf-grok-deals .rf-home-deals-options{display:flex!important;flex-direction:column!important;gap:2px!important;padding:0 16px 10px!important}
body #rf-grok-deals .rf-home-deal-tab{
  display:flex!important;
  width:100%!important;
  min-height:44px!important;
  align-items:center!important;
  justify-content:space-between!important;
  padding:0 12px!important;
  border:0!important;
  border-radius:6px!important;
  background:transparent!important;
  color:var(--rfp-ink)!important;
  font:500 13px/1.2 'Plus Jakarta Sans','Inter',sans-serif!important;
  text-align:left!important;
}
body #rf-grok-deals .rf-home-deal-tab:hover{background:var(--rfp-paper)!important}
body #rf-grok-deals .rf-home-deal-tab.is-active,
body #rf-grok-deals .rf-home-deal-tab[aria-selected='true']{background:var(--rfp-accent)!important;color:#fff!important}
body #rf-grok-deals .rf-home-deal-count{font-variant-numeric:tabular-nums}
body #rf-grok-deals .rf-home-deals-view-all{margin:0 16px 16px!important}
body #rf-grok-deals .dl-ctrls{display:none!important}
body #rf-grok-deals .sx-main{grid-area:main!important;min-width:0!important;margin:0!important;padding:0!important}
body #rf-grok-deals .rf-home-deals-status{margin:0 0 14px!important;color:var(--rfp-hint)!important;font:600 11px/1.4 'Plus Jakarta Sans','Inter',sans-serif!important;letter-spacing:.08em!important;text-transform:uppercase!important}
body #rf-grok-deals .sx-car{position:relative!important;min-width:0!important}
body #rf-grok-deals .sx-car-rail{padding:0!important}
body #rf-grok-deals .sx-foot{display:block!important;margin:0!important;padding:0!important}
body #rf-grok-deals .sx-showing{display:none!important}
body #rf-grok-deals .rf-home-deals-progress{margin-top:16px!important}

/* The live Deals widget loads highly specific presentation rules after the
   theme bundle. Reassert the global product anatomy so its native controller
   cannot resize or restyle the shared cards. */
html body #rf-grok-deals.rfp-section .sx-main .sx-car .sx-car-rail.rfp-rail{
  display:flex!important;
  gap:var(--rfp-gap)!important;
  grid-auto-columns:none!important;
}
body #rf-grok-deals .rfp-card .rfp-card__copy{padding:12px 16px 0!important}
body #rf-grok-deals .rfp-card .rfp-card__brand{margin:0!important;color:var(--rfp-hint)!important;font:600 11px/1.4 'Plus Jakarta Sans','Inter',sans-serif!important}
body #rf-grok-deals .rfp-card .rfp-card__name{min-height:40px!important;margin:4px 0 0!important;color:var(--rfp-ink)!important;font:600 15px/1.35 'Plus Jakarta Sans','Inter',sans-serif!important;letter-spacing:-.015em!important}
body #rf-grok-deals .rfp-card .rfp-card__description{min-height:35px!important;margin:4px 0 0!important;color:var(--rfp-muted)!important;font:400 13px/1.35 'Plus Jakarta Sans','Inter',sans-serif!important}
body #rf-grok-deals .rfp-card .rfp-card__price{min-height:24px!important;margin:12px 0 0!important;color:var(--rfp-ink)!important;font:600 16px/1.5 'Plus Jakarta Sans','Inter',sans-serif!important}
body #rf-grok-deals .rfp-card .rfp-card__actions{gap:8px!important;padding:12px 16px 16px!important}
body #rf-grok-deals .rfp-card .rfp-card__add,
body #rf-grok-deals .rfp-card .rfp-card__view{height:36px!important;min-height:36px!important;border-radius:6px!important;font:600 13px/1 'Plus Jakarta Sans','Inter',sans-serif!important}
body #rf-grok-deals .rfp-card .rfp-card__add{padding:0 16px!important;background:var(--rfp-accent)!important;color:#fff!important}
body #rf-grok-deals .rfp-card .rfp-card__view{padding:0 12px!important;background:var(--rfp-canvas)!important;color:var(--rfp-ink)!important}
body #rf-grok-deals .rf-home-deals-progress.rfp-progress{background:#d1d1d6!important}
body #rf-grok-deals .rf-home-deals-progress .rf-home-deals-progress-thumb.rfp-progress__bar{background:#48484a!important}

/* The catalogue uses the same system; its category panel determines 4-up. */
body #rfnc-preview.rfp-section{background:var(--rfp-canvas)!important}
body #rfnc-preview .rfnc__shell{width:100%!important;max-width:1560px!important;margin:0 auto!important;padding-inline:24px!important}
body #rfnc-preview .rfnc__header{margin-bottom:32px!important}
body #rfnc-preview .rfnc__track{gap:16px!important}
body #rfnc-preview .rfnc__progress{margin-top:16px!important}

/* A peek is allowed only when the max-width container leaves real room. */
@media(min-width:1740px){
  body #rf-grok-deals .sx-main{width:calc(100% + min(90px, max(0px, (100vw - 1560px)/2)))!important}
  body #rf-grok-deals .rfp-rail > .rfp-card{flex-basis:290px!important}
}
@media(max-width:1279px){
  body .rfp-section[data-rfp-columns='5'] .rfp-rail > .rfp-card{flex-basis:calc((100% - 48px)/4)!important}
  body .rfp-section[data-rfp-columns='4'] .rfp-rail > .rfp-card{flex-basis:calc((100% - 32px)/3)!important}
  body .rfp-arrow--prev{left:8px!important}
  body .rfp-arrow--next{right:8px!important}
  body #rf-grok-deals .sx-frame{grid-template-columns:220px minmax(0,1fr)!important;column-gap:24px!important}
}
@media(max-width:1023px){
  body .rfp-section[data-rfp-columns] .rfp-rail > .rfp-card{flex-basis:calc((100% - 16px)/2)!important}
  body #rf-grok-deals .sx-frame{grid-template-columns:1fr!important;grid-template-areas:'head' 'side' 'main'!important;row-gap:24px!important}
  body #rf-grok-deals .dl-tabs{display:grid!important;grid-template-columns:180px minmax(0,1fr)!important}
  body #rf-grok-deals .rf-home-deals-spotlight{border-right:1px solid var(--rfp-line)!important}
  body #rf-grok-deals .rf-home-deals-options{padding-top:12px!important}
}
@media(max-width:639px){
  body .rfp-section{padding:48px 0}
  body .rfp-section__inner,
  body #rfnc-preview .rfnc__shell{padding-inline:16px!important}
  body .rfp-section__head{align-items:flex-start!important}
  body .rfp-section__title{font-size:26px!important}
  body .rfp-section__link{margin-top:2px;font-size:13px!important}
  body .rfp-rail{gap:12px!important}
  body .rfp-section[data-rfp-columns] .rfp-rail > .rfp-card{flex-basis:88%!important}
  body .rfp-arrow{width:42px!important;height:42px!important}
  body .rfp-arrow--prev{left:7px!important}
  body .rfp-arrow--next{right:7px!important}
  body .rfp-progress{margin-top:13px!important}
  body #rf-grok-deals .rf-home-deals-topbar{padding-bottom:24px!important}
  body #rf-grok-deals .dl-tabs{display:block!important}
  body #rf-grok-deals .rf-home-deals-spotlight{border-right:0!important}
}

/* The Shop plugin prints its Parts hero rules after the theme bundle. */
html body #rf-main#rf-main #rf-shop-v3#rf-shop-v3 #shop-spare-parts#shop-spare-parts .rf-parts-hero{
  display:block!important;
  min-height:0!important;
  margin:0 auto 32px!important;
  padding:0!important;
  overflow:visible!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
}
html body #rf-main#rf-main #rf-shop-v3#rf-shop-v3 #shop-spare-parts#shop-spare-parts .rfs-managed-parts-copy{
  width:100%!important;
  max-width:760px!important;
  margin:0!important;
  padding:0!important;
}
html body #rf-main#rf-main #rf-shop-v3#rf-shop-v3 #shop-spare-parts#shop-spare-parts .rf-parts-eyebrow{
  display:block!important;
  margin:0!important;
  color:var(--rfp-hint)!important;
  font:600 13px/1.4 'Plus Jakarta Sans','Inter',sans-serif!important;
  letter-spacing:.14em!important;
  text-transform:uppercase!important;
}
html body #rf-main#rf-main #rf-shop-v3#rf-shop-v3 #shop-spare-parts#shop-spare-parts .rf-parts-hero h2{
  margin:4px 0 0!important;
  color:var(--rfp-ink)!important;
  font:600 30px/1.2 'Plus Jakarta Sans','Inter',sans-serif!important;
  letter-spacing:-.025em!important;
}
html body #rf-main#rf-main #rf-shop-v3#rf-shop-v3 #shop-spare-parts#shop-spare-parts .rf-parts-hero p{
  max-width:760px!important;
  margin:8px 0 0!important;
  color:var(--rfp-muted)!important;
  font:400 14px/1.5 'Plus Jakarta Sans','Inter',sans-serif!important;
}
html body #rf-main#rf-main #rf-shop-v3#rf-shop-v3 #shop-spare-parts#shop-spare-parts .rfs-hero-trust,
html body #rf-main#rf-main #rf-shop-v3#rf-shop-v3 #shop-spare-parts#shop-spare-parts .rfs-hero-visual{
  display:none!important;
}

/* ============================================================
   SHOP CATALOGUE ADAPTER
   The live Shop uses rfs-* markup and replaces its results during
   filtering. rf-shared.js maps each result into the same product-card
   anatomy; these rules keep the 4-up category-sidebar contract global.
   ============================================================ */
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-grid[data-rfp-grid='shop']{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:16px!important;
  align-items:stretch!important;
}
html body #rf-main#rf-main#rf-main#rf-main#rf-main#rf-main #rf-shop-v3#rf-shop-v3 #rfs-catalogue#rfs-catalogue .rfs-grid[data-rfp-grid='shop']{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:16px!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card{
  min-width:0!important;
  min-height:440px!important;
  margin:0!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfs-card-tools{
  display:none!important;
}
html body #rf-main#rf-main#rf-main#rf-main#rf-main#rf-main #rf-shop-v3#rf-shop-v3 #rfs-catalogue#rfs-catalogue .rfs-card.rfp-card .rfs-card-tools{
  display:none!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfp-card__media{
  aspect-ratio:1/1!important;
  min-height:0!important;
  overflow:hidden!important;
  background:var(--rfp-paper)!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfp-card__media-link{
  display:flex!important;
  width:100%!important;
  height:100%!important;
  align-items:center!important;
  justify-content:center!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfp-card__badges{
  left:12px!important;
  top:12px!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfs-badge.rfp-card__badge{
  color:#19863d!important;
  background:rgba(35,155,73,.12)!important;
  border:0!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfp-card__copy{
  padding:12px 16px 0!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfs-card-meta.rfp-card__brand-row{
  display:flex!important;
  min-height:15px!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:8px!important;
  margin:0!important;
  color:var(--rfp-hint)!important;
  font:600 10.5px/1.4 'Plus Jakarta Sans','Inter',sans-serif!important;
  letter-spacing:.055em!important;
  text-transform:uppercase!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfs-card-meta.rfp-card__brand-row > span{
  color:inherit!important;
  font:inherit!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfp-card__name{
  min-height:40px!important;
  margin:4px 0 0!important;
  color:var(--rfp-ink)!important;
  font:600 15px/1.35 'Plus Jakarta Sans','Inter',sans-serif!important;
  letter-spacing:-.015em!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfp-card__description{
  min-height:35px!important;
  margin:4px 0 0!important;
  color:var(--rfp-muted)!important;
  font:400 13px/1.35 'Plus Jakarta Sans','Inter',sans-serif!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfp-card__price{
  min-height:24px!important;
  margin:12px 0 0!important;
  color:var(--rfp-ink)!important;
  font:600 16px/1.5 'Plus Jakarta Sans','Inter',sans-serif!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfp-shop-card__foot{
  display:block!important;
  margin-top:auto!important;
  padding:0!important;
  background:var(--rfp-canvas)!important;
  border:0!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfp-card__actions{
  display:flex!important;
  gap:8px!important;
  margin:0!important;
  padding:12px 16px 16px!important;
  background:var(--rfp-canvas)!important;
  border:0!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfp-card__add,
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfp-card__view{
  height:36px!important;
  min-height:36px!important;
  border-radius:6px!important;
  font:600 13px/1 'Plus Jakarta Sans','Inter',sans-serif!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfp-card__add{
  padding:0 16px!important;
  color:#fff!important;
  background:var(--rfp-accent)!important;
  border:0!important;
}
/* The Shop plugin adds six-ID late overrides after the theme bundle.
   Beat that one legacy rule so the canonical CTA remains canonical. */
html body #rf-main#rf-main#rf-main#rf-main#rf-main#rf-main #rf-shop-v3#rf-shop-v3 #rfs-catalogue#rfs-catalogue .rfs-card.rfp-card .rfs-add.rfp-card__add{
  display:inline-flex!important;
  width:auto!important;
  min-width:0!important;
  height:36px!important;
  min-height:36px!important;
  flex:1 1 auto!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0 16px!important;
  color:#fff!important;
  background:var(--rfp-accent)!important;
  border:0!important;
  border-radius:6px!important;
  box-shadow:0 8px 20px -6px rgb(0 102 204 / .45)!important;
  font:600 13px/1 'Plus Jakarta Sans','Inter',sans-serif!important;
  letter-spacing:0!important;
}
html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card .rfp-card__view{
  padding:0 12px!important;
  color:var(--rfp-ink)!important;
  background:var(--rfp-canvas)!important;
  border:1px solid var(--rfp-line)!important;
}

@media(max-width:1279px){
  html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-grid[data-rfp-grid='shop']{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
  html body #rf-main#rf-main#rf-main#rf-main#rf-main#rf-main #rf-shop-v3#rf-shop-v3 #rfs-catalogue#rfs-catalogue .rfs-grid[data-rfp-grid='shop']{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
}
@media(max-width:1023px){
  html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-grid[data-rfp-grid='shop']{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  html body #rf-main#rf-main#rf-main#rf-main#rf-main#rf-main #rf-shop-v3#rf-shop-v3 #rfs-catalogue#rfs-catalogue .rfs-grid[data-rfp-grid='shop']{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}
@media(max-width:639px){
  html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-grid[data-rfp-grid='shop']{
    grid-template-columns:1fr!important;
    gap:12px!important;
  }
  html body #rf-main#rf-main#rf-main#rf-main#rf-main#rf-main #rf-shop-v3#rf-shop-v3 #rfs-catalogue#rfs-catalogue .rfs-grid[data-rfp-grid='shop']{
    grid-template-columns:1fr!important;
    gap:12px!important;
  }
  html body #rfs-catalogue[data-rfp-shop-catalogue='1'] .rfs-card.rfp-card{
    min-height:0!important;
  }
}
@media(prefers-reduced-motion:reduce){
  body .rfp-card,
  body .rfp-rail,
  body .rfp-arrow,
  body .rfp-progress__bar{scroll-behavior:auto!important;transition-duration:.01ms!important}
}

/* ============================================================
   GLOBAL SHOP PRODUCT SECTIONS
   Main catalogue, Pre-Owned and Parts now share one section/card
   language. Their category/filter sidebars remain owned by Shop.
   ============================================================ */
body .rfp-shop-preowned,
body .rfp-shop-parts{
  width:100%!important;
  margin:0!important;
  padding:64px 24px!important;
  background:var(--rfp-paper)!important;
  color:var(--rfp-ink)!important;
  font-family:'Plus Jakarta Sans','Inter',sans-serif!important;
}
body .rfp-shop-preowned > .rfp-section__head,
body .rfp-shop-preowned > .rfp-rail,
body .rfp-shop-parts > .rf-parts-hero,
body .rfp-shop-parts > .rf-parts-browser{
  width:100%!important;
  max-width:1560px!important;
  margin-inline:auto!important;
}
body .rfp-shop-preowned .rfp-section__head{
  margin-bottom:32px!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
}
body .rfp-shop-preowned .rfs-preowned-heading{min-width:0!important}
body .rfp-shop-preowned .rfs-preowned-head-actions{display:flex!important;align-items:center!important;gap:14px!important}
body .rfp-shop-preowned .rfs-preowned-controls{position:relative!important;display:flex!important;gap:8px!important}
body .rfp-shop-preowned .rfs-preowned-controls .rfp-arrow{
  position:relative!important;inset:auto!important;width:40px!important;height:40px!important;transform:none!important;
}
body .rfp-shop-preowned .rfs-preowned-controls .rfp-arrow:hover{transform:scale(1.04)!important}
body .rfp-shop-preowned .rfp-preowned-rail{gap:16px!important;padding:0!important}
body .rfp-shop-preowned .rfp-preowned-rail > .rfp-card{flex:0 0 calc((100% - 64px)/5)!important}
body .rfp-shop-preowned .rfp-card__media{display:block!important;aspect-ratio:4/3!important;padding:0!important}
body .rfp-shop-preowned .rfp-card__badges{position:absolute!important;z-index:2!important;top:10px!important;left:10px!important}
body .rfp-shop-preowned .rfp-card__copy{display:flex!important;flex:1 1 auto!important;flex-direction:column!important;padding:12px 16px 0!important}
body .rfp-shop-preowned .rfs-preowned-meta{display:block!important;min-height:18px!important}
body .rfp-shop-preowned .rfs-preowned-meta .is-available{display:none!important}
body .rfp-shop-preowned .rfp-card__name{min-height:40px!important;margin:4px 0 0!important}
body .rfp-shop-preowned .rfp-card__name a{color:inherit!important;text-decoration:none!important}
body .rfp-shop-preowned .rfp-card__actions{padding:12px 16px 16px!important}

body .rfp-shop-parts{background:var(--rfp-canvas)!important}
body .rfp-shop-parts .rf-parts-hero{
  display:block!important;min-height:0!important;margin-bottom:32px!important;padding:0!important;
  border:0!important;background:transparent!important;box-shadow:none!important;
}
body .rfp-shop-parts .rfs-managed-parts-copy{width:100%!important;max-width:760px!important;padding:0!important}
body .rfp-shop-parts .rfs-managed-hero--parts .rfs-hero-visual,
body .rfp-shop-parts .rfs-hero-trust{display:none!important}
body .rfp-shop-parts .rf-parts-browser{align-items:start!important;gap:32px!important}
body .rfp-shop-parts .rf-parts-main{min-width:0!important}
body .rfp-shop-parts .rfp-parts-grid{
  display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:16px!important;align-items:stretch!important;
}
body .rfp-shop-parts .rfp-card__media{aspect-ratio:4/3!important}
body .rfp-shop-parts .rf-part-card__tools{display:none!important}
body .rfp-shop-parts .rfp-card__copy{display:flex!important;flex:1 1 auto!important;flex-direction:column!important;padding:12px 16px 0!important}
body .rfp-shop-parts .rf-part-card__meta{display:block!important;min-height:18px!important}
body .rfp-shop-parts .rf-part-card__meta .is-stock{display:none!important}
body .rfp-shop-parts .rfp-card__name{min-height:40px!important;margin:4px 0 0!important}
body .rfp-shop-parts .rfp-card__name a{color:inherit!important;text-decoration:none!important}
body .rfp-shop-parts .rfp-card__description{min-height:35px!important}
body .rfp-shop-parts .rfp-card__actions{padding:12px 16px 16px!important}

/* Grok Deals category composition, without remnants from the older pill UI. */
html body #rf-grok-deals#rf-grok-deals{padding:64px 24px!important;background:var(--rfp-paper)!important}
html body #rf-grok-deals#rf-grok-deals .rf-home-deals-topbar{align-items:flex-end!important;padding:0!important;border:0!important}
html body #rf-grok-deals#rf-grok-deals .rfp-section__eyebrow{font-size:13px!important;letter-spacing:.14em!important}
html body #rf-grok-deals#rf-grok-deals .rfp-section__title{margin-top:4px!important;font-size:30px!important;line-height:1.2!important;letter-spacing:-.025em!important}
html body #rf-grok-deals#rf-grok-deals .rfp-section__description{margin-top:8px!important;font-size:14px!important;line-height:1.5!important}
html body #rf-grok-deals#rf-grok-deals .rf-home-deals-header-link{
  display:inline-flex!important;width:auto!important;height:auto!important;min-height:0!important;padding:0!important;
  border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important;
  color:var(--rfp-accent)!important;font:500 14px/1.4 'Plus Jakarta Sans','Inter',sans-serif!important;
}
html body #rf-grok-deals#rf-grok-deals .rf-home-deals-header-link .rf-cta-arrow{display:none!important}
html body #rf-grok-deals#rf-grok-deals .rf-home-deals-header-link,
html body #rf-grok-deals#rf-grok-deals .rf-home-deals-header-link > span{
  color:var(--rfp-accent)!important;
}
html body #rf-grok-deals#rf-grok-deals .rf-home-deals-spotlight__label{color:var(--rfp-ink)!important}
html body #rf-grok-deals#rf-grok-deals .rf-home-deals-spotlight__media .rf-home-deals-spotlight__label,
html body #rf-grok-deals#rf-grok-deals .rf-home-deals-spotlight__media::after{background:#1d1d1f!important;color:#fff!important}

@media(max-width:1279px){
  body .rfp-shop-preowned .rfp-preowned-rail > .rfp-card{flex-basis:calc((100% - 48px)/4)!important}
  body .rfp-shop-parts .rfp-parts-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}
}
@media(max-width:1023px){
  body .rfp-shop-preowned .rfp-preowned-rail > .rfp-card{flex-basis:calc((100% - 16px)/2)!important}
  body .rfp-shop-parts .rf-parts-browser{display:grid!important;grid-template-columns:1fr!important}
  body .rfp-shop-parts .rf-parts-sidebar{width:100%!important}
  body .rfp-shop-parts .rfp-parts-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:639px){
  body .rfp-shop-preowned,body .rfp-shop-parts,html body #rf-grok-deals#rf-grok-deals{padding:48px 16px!important}
  body .rfp-shop-preowned .rfp-preowned-rail > .rfp-card{flex-basis:88%!important}
  body .rfp-shop-preowned .rfs-preowned-head-actions{width:100%!important;justify-content:space-between!important}
  body .rfp-shop-parts .rfp-parts-grid{grid-template-columns:1fr!important;gap:12px!important}
  html body #rf-grok-deals#rf-grok-deals .rfp-section__title{font-size:26px!important}
}

/* ============================================================
   REFURBFIT GLOBAL VISUAL SYSTEM — FINAL CONSOLIDATION
   Grok reference typography, repaired Deals rail and the compact
   editorial Why RefurbFit composition. These selectors deliberately
   outrank old inline homepage rules without changing widget behaviour.
   ============================================================ */
:root{
  --rf-font-sans:"Plus Jakarta Sans",ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
}

html body{
  font-family:var(--rf-font-sans)!important;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
html body #site-header#site-header :is(button,input,a,span,strong,small),
html body #rf-main#rf-main :is(h1,h2,h3,h4,h5,h6,p,a,span,strong,small,button,input,select,textarea,label,li,dt,dd,th,td),
html body main#main#main :is(h1,h2,h3,h4,h5,h6,p,a,span,strong,small,button,input,select,textarea,label,li,dt,dd,th,td),
html body main.rf-page.rf-page :is(h1,h2,h3,h4,h5,h6,p,a,span,strong,small,button,input,select,textarea,label,li,dt,dd,th,td),
html body footer.v1f-root.v1f-root :is(h1,h2,h3,h4,h5,h6,p,a,span,strong,small,button,input,select,textarea,label,li,dt,dd,th,td){
  font-family:var(--rf-font-sans)!important;
}

/* Deals: remove the obsolete fallback cover that obscures the image. */
html body #rf-grok-deals#rf-grok-deals .rf-home-deals-spotlight__media::before,
html body #rf-grok-deals#rf-grok-deals .rf-home-deals-spotlight__media::after{
  display:none!important;
  content:none!important;
  background:none!important;
}
html body #rf-grok-deals#rf-grok-deals .rf-home-deals-spotlight__media img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  padding:12px!important;
  object-fit:contain!important;
  object-position:center!important;
  mix-blend-mode:multiply!important;
  background:var(--rfp-paper)!important;
}

/* Deals: same card proportions and inner rhythm as Featured. */
@media(min-width:1024px){
  html body #rf-grok-deals#rf-grok-deals .rfp-section__inner{
    width:100%!important;
    max-width:1560px!important;
    padding-inline:0!important;
  }
  html body #rf-grok-deals#rf-grok-deals .sx-frame{
    grid-template-columns:240px minmax(0,1fr)!important;
    column-gap:24px!important;
    row-gap:32px!important;
  }
}
html body #rf-grok-deals#rf-grok-deals .dl-tabsrow,
html body #rf-grok-deals#rf-grok-deals .sx-main{
  align-self:start!important;
  min-height:0!important;
}
html body #rf-grok-deals#rf-grok-deals .sx-car{
  min-height:0!important;
  overflow:visible!important;
}
html body #rf-grok-deals#rf-grok-deals .sx-car-rail.pgrid.rfp-rail{
  display:flex!important;
  align-items:flex-start!important;
  gap:16px!important;
  min-height:0!important;
  overflow-x:auto!important;
  overflow-y:hidden!important;
  scroll-snap-type:x proximity!important;
  scrollbar-width:none!important;
}
html body #rf-grok-deals#rf-grok-deals .sx-car-rail.pgrid.rfp-rail::-webkit-scrollbar{display:none!important}
html body #rf-grok-deals#rf-grok-deals .sx-car-rail.pgrid.rfp-rail > .rfp-card{
  display:flex!important;
  flex:0 0 min(288px,calc((100% - 48px)/4))!important;
  width:min(288px,calc((100% - 48px)/4))!important;
  min-width:0!important;
  max-width:none!important;
  height:auto!important;
  min-height:0!important;
  max-height:none!important;
  flex-direction:column!important;
  scroll-snap-align:start!important;
}
html body #rf-grok-deals#rf-grok-deals .rfp-card .rfp-card__media{
  display:flex!important;
  flex:0 0 auto!important;
  width:100%!important;
  height:auto!important;
  min-height:0!important;
  max-height:none!important;
  aspect-ratio:4/3!important;
  overflow:hidden!important;
}
html body #rf-grok-deals#rf-grok-deals .rfp-card .rfp-card__media img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  object-position:center!important;
}
html body #rf-grok-deals#rf-grok-deals .rfp-card .rfp-card__copy{
  display:flex!important;
  flex:0 0 147px!important;
  height:147px!important;
  min-height:147px!important;
  max-height:147px!important;
  flex-direction:column!important;
  overflow:hidden!important;
  padding:12px 16px 0!important;
}
html body #rf-grok-deals#rf-grok-deals .rfp-card .rfp-card__actions{
  display:flex!important;
  flex:0 0 64px!important;
  height:64px!important;
  min-height:64px!important;
  max-height:64px!important;
  align-items:flex-end!important;
  gap:8px!important;
  padding:12px 16px 16px!important;
}

/* The progress track is also the carousel scrubber. */
html body #rf-grok-deals#rf-grok-deals .rf-home-deals-progress.rfp-progress{
  height:10px!important;
  margin-top:12px!important;
  overflow:visible!important;
  border-radius:999px!important;
  background:linear-gradient(transparent 0 3px,#d1d1d6 3px 6px,transparent 6px)!important;
  cursor:grab!important;
  touch-action:none!important;
  user-select:none!important;
}
html body #rf-grok-deals#rf-grok-deals .rf-home-deals-progress.rfp-progress.is-dragging{cursor:grabbing!important}
html body #rf-grok-deals#rf-grok-deals .rf-home-deals-progress .rf-home-deals-progress-thumb.rfp-progress__bar{
  top:3px!important;
  bottom:auto!important;
  height:3px!important;
  pointer-events:none!important;
  transition:width .16s ease,transform .08s linear!important;
}

/* Why RefurbFit: Grok's light editorial/card language, current copy retained. */
html body.home #rf-main#rf-main > section.rf-why{
  --rfw-ink:#1d1d1f;
  --rfw-muted:#6e6e73;
  --rfw-line:#e8e8ed;
  width:100%!important;
  padding:80px 24px!important;
  background:#fbfbfd!important;
  color:var(--rfw-ink)!important;
}
html body.home #rf-main#rf-main > section.rf-why .rf-why__inner{
  display:grid!important;
  width:100%!important;
  max-width:1560px!important;
  margin:0 auto!important;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr)!important;
  gap:64px!important;
  align-items:center!important;
}
html body.home #rf-main#rf-main > section.rf-why .rf-why__copy{min-width:0!important}
html body.home #rf-main#rf-main > section.rf-why .rf-why__eyebrow{
  display:block!important;
  margin:0 0 8px!important;
  color:#86868b!important;
  font:600 13px/1.4 var(--rf-font-sans)!important;
  letter-spacing:.14em!important;
  text-transform:uppercase!important;
}
html body.home #rf-main#rf-main > section.rf-why .rf-why__eyebrow::before{display:none!important;content:none!important}
html body.home #rf-main#rf-main > section.rf-why h2#rf-why-title{
  margin:0!important;
  color:var(--rfw-ink)!important;
  font:600 40px/1.1 var(--rf-font-sans)!important;
  letter-spacing:-.035em!important;
  text-wrap:balance!important;
}
html body.home #rf-main#rf-main > section.rf-why .rf-why__lead{
  max-width:680px!important;
  margin:18px 0 0!important;
}
html body.home #rf-main#rf-main > section.rf-why .rf-why__lead h3{
  margin:0!important;
  color:var(--rfw-ink)!important;
  font:600 22px/1.3 var(--rf-font-sans)!important;
  letter-spacing:-.025em!important;
}
html body.home #rf-main#rf-main > section.rf-why .rf-why__lead p{
  max-width:640px!important;
  margin:14px 0 0!important;
  color:var(--rfw-muted)!important;
  font:400 15px/1.65 var(--rf-font-sans)!important;
}
html body.home #rf-main#rf-main > section.rf-why .rf-why__grid{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:16px!important;
  align-self:center!important;
  margin:0!important;
  border:0!important;
}
html body.home #rf-main#rf-main > section.rf-why .rf-why__item,
html body.home #rf-main#rf-main > section.rf-why .rf-why__item:nth-child(n){
  min-width:0!important;
  min-height:186px!important;
  padding:20px!important;
  border:1px solid var(--rfw-line)!important;
  border-radius:8px!important;
  background:#f5f5f7!important;
  transform:none!important;
}
html body.home #rf-main#rf-main > section.rf-why .rf-why__icon{
  display:grid!important;
  place-items:center!important;
  width:36px!important;
  height:36px!important;
  margin:0 0 16px!important;
  border:1px solid rgba(0,102,204,.18)!important;
  border-radius:8px!important;
  background:#fbfbfd!important;
  color:#0066cc!important;
}
html body.home #rf-main#rf-main > section.rf-why .rf-why__icon svg{width:18px!important;height:18px!important}
html body.home #rf-main#rf-main > section.rf-why .rf-why__item h3{
  margin:0!important;
  color:var(--rfw-ink)!important;
  font:600 16px/1.35 var(--rf-font-sans)!important;
  letter-spacing:-.015em!important;
}
html body.home #rf-main#rf-main > section.rf-why .rf-why__item p{
  margin:8px 0 0!important;
  color:var(--rfw-muted)!important;
  font:400 13px/1.5 var(--rf-font-sans)!important;
}

@media(max-width:1023px){
  html body #rf-grok-deals#rf-grok-deals .sx-car-rail.pgrid.rfp-rail > .rfp-card{
    flex-basis:calc((100% - 16px)/2)!important;
    width:auto!important;min-width:0!important;max-width:none!important;
  }
  html body.home #rf-main#rf-main > section.rf-why .rf-why__inner{grid-template-columns:1fr!important;gap:40px!important}
}
@media(max-width:639px){
  html body #rf-grok-deals#rf-grok-deals{padding-inline:0!important}
  html body #rf-grok-deals#rf-grok-deals .rfp-section__inner{padding-inline:16px!important}
  html body #rf-grok-deals#rf-grok-deals .sx-frame.rfp-section__inner{padding-inline:16px!important}
  html body #rf-grok-deals#rf-grok-deals .sx-car{min-height:0!important}
  html body #rf-grok-deals#rf-grok-deals .sx-car-rail.pgrid.rfp-rail > .rfp-card{
    flex:0 0 88%!important;width:88%!important;min-width:88%!important;max-width:88%!important;
  }
  html body.home #rf-main#rf-main > section.rf-why{padding:48px 16px!important}
  html body.home #rf-main#rf-main > section.rf-why .rf-why__inner{gap:32px!important}
  html body.home #rf-main#rf-main > section.rf-why h2#rf-why-title{font-size:32px!important}
  html body.home #rf-main#rf-main > section.rf-why .rf-why__lead h3{font-size:20px!important}
  html body.home #rf-main#rf-main > section.rf-why .rf-why__grid{grid-template-columns:1fr!important;gap:12px!important}
  html body.home #rf-main#rf-main > section.rf-why .rf-why__item,
  html body.home #rf-main#rf-main > section.rf-why .rf-why__item:nth-child(n){min-height:0!important;padding:18px!important}
}
