.category-page {
  --cp-ink: #101828;
  --cp-muted: #667085;
  --cp-line: #dbe3ee;
  --cp-soft: #f5f8fc;
  --cp-blue: #2864e8;
  --cp-blue-dark: #1f4fb7;
  width: calc(100% - 48px);
  max-width: 1440px;
  min-width: 0;
  margin: 0 auto;
  padding: 22px 0 72px;
  color: var(--cp-ink);
}
.category-page *,
.category-page *::before,
.category-page *::after {
  box-sizing: border-box;
}

.category-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  margin-bottom: 18px;
  color: #7a879a;
  font-size: 13px;
  overflow-x: auto;
  white-space: nowrap;
}
.category-breadcrumb a {
  color: #5d6c82;
  text-decoration: none;
}
.category-breadcrumb a:hover {
  color: var(--cp-blue);
}
.category-breadcrumb strong {
  color: #344054;
  font-weight: 700;
}

.category-hero {
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
  align-items: center;
  gap: 34px;
  padding: 42px 52px;
  overflow: hidden;
  border: 1px solid #d9e3f1;
  border-radius: 25px;
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(58, 118, 244, 0.14),
      transparent 36%
    ),
    linear-gradient(135deg, #f6f9ff 0%, #fff 64%);
}
.category-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--cp-blue-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.02em;
}
.category-hero h1 {
  max-width: 850px;
  margin: 0 0 15px;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 810;
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--cp-ink);
}
.category-hero-copy > p {
  max-width: 760px;
  margin: 0;
  color: #536177;
  font-size: 17px;
  line-height: 1.6;
}
.category-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 21px;
  margin-top: 22px;
  color: #344054;
  font-size: 13px;
  font-weight: 650;
}
.category-hero-image {
  height: 230px;
  display: grid;
  place-items: center;
  position: relative;
}
.category-hero-image::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 20px 50px rgba(32, 71, 131, 0.12);
}
.category-hero-image img {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  height: 225px !important;
  object-fit: contain;
}

.category-section,
.category-vehicle-section,
.category-guide,
.other-categories {
  margin-top: 50px;
}
.category-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.category-section-head h2,
.category-endpoint h2,
.category-guide h2,
.category-help-card h2 {
  margin: 0;
  color: var(--cp-ink);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 780;
  line-height: 1.16;
  letter-spacing: -0.025em;
}
.category-section-head > p,
.vehicle-section-head > p {
  max-width: 500px;
  margin: 0;
  color: var(--cp-muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: right;
}
.category-section-head > a {
  color: var(--cp-blue-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.category-vehicle-section {
  padding: 29px 31px 31px;
  border: 1px solid var(--cp-line);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(19, 39, 75, 0.05);
}
.category-vehicle-section .category-section-head {
  margin-bottom: 19px;
}
.category-vehicle-finder .side-card {
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.category-vehicle-finder .side-card-head {
  display: none !important;
}
.category-vehicle-finder .side-card-body {
  padding: 0 !important;
}
.category-vehicle-finder .side-form {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(190px, 0.72fr) !important;
  align-items: end !important;
  gap: 14px !important;
}
.category-vehicle-finder .side-form-field {
  min-width: 0;
}
.category-vehicle-finder .side-form label {
  display: block;
  margin: 0 0 7px !important;
  color: #667085 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.category-vehicle-finder .side-form select {
  height: 50px !important;
  border: 1px solid #cfd9e7 !important;
  border-radius: 11px !important;
  background-color: #fff !important;
  color: var(--cp-ink) !important;
  font-size: 15px !important;
}
.category-vehicle-finder .side-form select:focus {
  border-color: var(--cp-blue) !important;
  box-shadow: 0 0 0 3px rgba(40, 100, 232, 0.12);
}
.category-vehicle-finder .side-form select:disabled {
  background-color: #f5f7fa !important;
  color: #98a2b3 !important;
}
.category-vehicle-finder .side-form-btn {
  height: 50px !important;
  margin: 0 !important;
  border-radius: 11px !important;
  background: var(--cp-blue) !important;
  font-size: 14px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.category-vehicle-finder .side-form-btn:hover {
  background: var(--cp-blue-dark) !important;
}
.category-vehicle-finder .side-form-btn:disabled {
  background: #e4e9f0 !important;
  color: #98a2b3 !important;
}
.category-vehicle-finder .side-form-btn-reset {
  display: none !important;
}
.category-vehicle-popup-action {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 17px 18px;
  border: 1px solid #dbe3ee;
  border-radius: 15px;
  background: #f8fafc;
}
.category-vehicle-popup-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: #edf4ff;
  font-size: 23px;
}
.category-vehicle-popup-action > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}
.category-vehicle-popup-action strong {
  color: #172033;
  font-size: 15px;
}
.category-vehicle-popup-action small {
  color: #718096;
  font-size: 12px;
}
.category-vehicle-popup-action button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: #b8612b;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}
.category-vehicle-popup-action button:hover {
  background: #9d4f22;
}
.category-selected-vehicle {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}
.category-selected-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #eaf2ff;
  color: var(--cp-blue);
}
.category-selected-copy .category-kicker {
  margin-bottom: 5px;
}
.category-selected-copy h2 {
  margin: 0;
  color: var(--cp-ink);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 790;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.category-selected-copy p {
  margin: 8px 0 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.5;
}
.category-selected-copy p strong {
  color: #3d4b61;
}
.category-selected-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}
.category-selected-actions a,
.category-selected-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 11px;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
}
.category-selected-primary {
  gap: 13px;
  border: 1px solid var(--cp-blue);
  background: var(--cp-blue);
  color: #fff;
  text-decoration: none;
}
.category-selected-primary:hover {
  background: var(--cp-blue-dark);
  border-color: var(--cp-blue-dark);
}
.category-selected-actions button {
  border: 1px solid #cdd8e7;
  background: #fff;
  color: #40516a;
}
.category-selected-actions button:hover {
  border-color: #9db8ea;
  color: var(--cp-blue-dark);
}
.category-general-note {
  margin: 21px -31px -31px;
  padding: 14px 31px;
  border-top: 1px solid #e4eaf2;
  border-radius: 0 0 21px 21px;
  background: #f8fafc;
  color: #667085;
  font-size: 12px;
  line-height: 1.5;
}
.category-general-note strong {
  color: #344054;
}

.subcategory-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.subcategory-card {
  min-width: 0;
  max-width: 100%;
  min-height: 112px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--cp-line);
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: 0.17s;
  overflow: hidden;
}
.subcategory-card:hover {
  transform: translateY(-2px);
  border-color: #a9c4fb;
  box-shadow: 0 10px 24px rgba(27, 57, 105, 0.075);
}
.subcategory-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #f1f5fa;
  color: #607087;
  font-size: 13px;
  font-weight: 800;
}
.subcategory-placeholder {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #f1f5fa;
  color: #7b8ca3;
}
.subcategory-placeholder[hidden] {
  display: none;
}
.subcategory-placeholder svg {
  width: 23px;
  height: 23px;
}
.subcategory-image {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border-radius: 14px;
  background: #f4f7fb;
  overflow: hidden;
}
.subcategory-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  box-sizing: border-box;
}
.subcategory-card:has(.subcategory-image) {
  grid-template-columns: 56px minmax(0, 1fr) 24px;
}
.subcategory-copy {
  min-width: 0;
}
.subcategory-copy strong {
  display: block;
  color: #1d2939;
  font-size: 15px;
  font-weight: 740;
  line-height: 1.3;
}
.subcategory-copy small {
  display: block;
  margin-top: 5px;
  color: #7a8799;
  font-size: 11px;
  line-height: 1.4;
}
.subcategory-arrow {
  color: #8b98aa;
  font-size: 19px;
}
.subcategory-card:hover .subcategory-arrow {
  color: var(--cp-blue-dark);
}
.category-hero-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  color: #68788f;
}
.category-hero-placeholder svg {
  width: 88px;
  height: 88px;
}

.category-endpoint {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 31px;
  border: 1px solid #f0d4bd;
  border-radius: 18px;
  background: #fff9f5;
}
.category-endpoint p {
  max-width: 780px;
  margin: 9px 0 0;
  color: #735c4d;
  font-size: 14px;
  line-height: 1.6;
}
.category-endpoint > a {
  flex: 0 0 auto;
  padding: 12px 17px;
  border-radius: 10px;
  background: #b65f2f;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.category-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.category-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--cp-line);
  border-radius: 17px;
  background: #fff;
  transition: 0.17s;
}
.category-product-card:hover {
  transform: translateY(-2px);
  border-color: #a9c4fb;
  box-shadow: 0 10px 25px rgba(27, 57, 105, 0.08);
}
.category-product-image {
  height: 190px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-bottom: 1px solid #edf1f6;
  background: #fafbfd;
}
.category-product-image img {
  display: block;
  max-width: 100%;
  max-height: 154px;
  object-fit: contain;
}
.category-product-image > span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  color: #617086;
}
.category-product-image svg {
  max-width: 68px;
  max-height: 68px;
}
.category-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}
.category-product-brand {
  margin-bottom: 5px;
  color: var(--cp-blue-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.category-product-card h3 {
  margin: 0 0 7px;
  font-size: 15px;
  line-height: 1.4;
}
.category-product-card h3 a {
  color: var(--cp-ink);
  text-decoration: none;
}
.category-product-number {
  margin-bottom: 16px;
  color: #8692a4;
  font-size: 11px;
}
.category-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid #edf1f6;
}
.category-product-bottom strong {
  font-size: 19px;
}
.category-product-bottom a {
  color: var(--cp-blue-dark);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.category-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}
.category-pagination a {
  padding: 10px 14px;
  border: 1px solid var(--cp-line);
  border-radius: 9px;
  background: #fff;
  color: var(--cp-blue-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.category-pagination span {
  color: var(--cp-muted);
  font-size: 12px;
}
.category-stock-note {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 17px 19px;
  border: 1px solid var(--cp-line);
  border-radius: 13px;
  background: var(--cp-soft);
}
.category-stock-note strong {
  font-size: 14px;
}
.category-stock-note span {
  color: var(--cp-muted);
  font-size: 12px;
}

.related-group-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.related-group-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--cp-line);
  border-radius: 12px;
  background: #fff;
  color: #344054;
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
}
.related-group-links a:hover {
  border-color: #a9c4fb;
  color: var(--cp-blue-dark);
}
.category-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 11px;
}
.category-brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  min-height: 104px;
  padding: 13px 10px;
  border: 1px solid var(--cp-line);
  border-radius: 14px;
  background: #fff;
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition: 0.16s;
}
.category-brand-card:hover {
  transform: translateY(-2px);
  border-color: #a9c4fb;
  box-shadow: 0 8px 20px rgba(27, 57, 105, 0.06);
}
.category-brand-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 40px;
  color: #667085;
  font-size: 16px;
}
.category-brand-logo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.category-brand-card strong {
  color: #344054;
  font-size: 12px;
  font-weight: 700;
}
.category-brand-extra {
  display: none;
}
.category-brand-grid.is-expanded .category-brand-extra {
  display: flex;
}
.category-brand-toggle {
  display: block;
  min-width: 250px;
  margin: 18px auto 0;
  padding: 13px 20px;
  border: 1px solid #cbd7e7;
  border-radius: 12px;
  background: #fff;
  color: #315db4;
  font: 700 13px/1.2 inherit;
  cursor: pointer;
}
.category-brand-toggle:hover {
  border-color: #9cb9ee;
  background: #f7faff;
}

.category-makes-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 11px;
}
.category-make-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 7px;
  border: 1px solid var(--cp-line);
  border-radius: 14px;
  background: #fff;
  color: #27354a;
  text-align: center;
  text-decoration: none;
  transition: 0.16s;
}
.category-make-card:hover {
  transform: translateY(-2px);
  border-color: #a9c4fb;
  color: var(--cp-blue-dark);
}
.category-make-logo {
  width: 56px;
  height: 48px;
  display: grid;
  place-items: center;
  position: relative;
}
.category-make-logo b {
  color: #718096;
  font-size: 14px;
}
.category-make-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 48px !important;
  object-fit: contain;
  background: #fff;
}
.category-make-card > strong {
  font-size: 12px;
}

.category-guide {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--cp-line);
  border-radius: 21px;
  background: #fff;
}
.category-guide > div > p {
  margin: 16px 0 0;
  color: #5b687b;
  font-size: 14px;
  line-height: 1.75;
}
.category-help-card {
  padding: 24px;
  border-radius: 16px;
  background: var(--cp-soft);
}
.category-help-card h2 {
  font-size: 22px;
}
.category-help-card p {
  margin: 10px 0 18px;
  color: #667085;
  font-size: 13px;
  line-height: 1.6;
}
.category-help-card a {
  color: var(--cp-blue-dark);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.other-categories {
  padding: 31px;
  border: 1px solid var(--cp-line);
  border-radius: 21px;
  background: var(--cp-soft);
}
.other-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
}
.other-category-grid a {
  min-height: 90px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid #e0e7f0;
  border-radius: 13px;
  background: #fff;
  color: #27354a;
  text-decoration: none;
}
.other-category-grid img {
  width: 76px;
  height: 88px !important;
  padding: 5px;
  object-fit: contain;
  background: #eef3f8;
}
.other-category-fallback {
  display: grid;
  place-items: center;
  width: 76px;
  height: 88px;
  padding: 18px;
  background: #eef3f8;
  color: #68788f;
}
.other-category-fallback[hidden] {
  display: none;
}
.other-category-fallback svg {
  width: 100%;
  height: 100%;
}
.other-category-grid strong {
  padding: 10px 12px 10px 0;
  font-size: 13px;
  line-height: 1.3;
}
.category-faq {
  margin-top: 50px;
  padding: 31px 34px;
  border: 1px solid var(--cp-line);
  border-radius: 21px;
  background: #fff;
}
.category-faq h2 {
  margin: 0;
  color: var(--cp-ink);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.2;
}
.category-faq-list {
  margin-top: 20px;
  border-top: 1px solid #e2e8f0;
}
.category-faq details {
  border-bottom: 1px solid #e2e8f0;
}
.category-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 2px;
  color: #344054;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.category-faq summary::-webkit-details-marker {
  display: none;
}
.category-faq summary span {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #edf4ff;
  color: #2964e8;
  font-size: 18px;
  transition: transform 0.15s;
}
.category-faq details[open] summary span {
  transform: rotate(45deg);
}
.category-faq p {
  max-width: 980px;
  margin: -3px 42px 18px 2px;
  color: #667085;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .category-page {
    width: min(100% - 32px, 1440px);
  }
  .category-vehicle-finder .side-form {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .category-vehicle-finder .side-form-btn {
    grid-column: 1/-1;
  }
  .category-makes-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .category-hero {
    grid-template-columns: 1fr 250px;
    padding: 36px 32px;
  }
  .category-hero-image {
    height: 200px;
  }
  .category-hero-image::before {
    width: 200px;
    height: 200px;
  }
  .category-hero-image img {
    height: 195px !important;
  }
  .category-selected-vehicle {
    grid-template-columns: 52px minmax(0, 1fr);
  }
  .category-selected-actions {
    grid-column: 1/-1;
    margin-top: 3px;
  }
  .category-selected-actions a {
    flex: 1;
  }
  .subcategory-grid,
  .related-group-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-makes-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .category-brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .category-guide {
    grid-template-columns: 1fr;
  }
  .other-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .category-breadcrumb {
    flex-wrap: wrap;
    overflow-x: visible;
    white-space: normal;
  }
  .category-breadcrumb :is(a, strong) {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .category-page {
    width: calc(100% - 24px);
    padding: 12px 0 45px;
  }
  .category-breadcrumb {
    margin-bottom: 12px;
    font-size: 12px;
  }
  .category-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 27px 21px 21px;
    border-radius: 19px;
  }
  .category-hero h1 {
    font-size: 34px;
  }
  .category-hero-copy > p {
    font-size: 15px;
  }
  .category-hero-points {
    gap: 7px;
    font-size: 12px;
  }
  .category-hero-image {
    height: 145px;
  }
  .category-hero-image::before {
    width: 145px;
    height: 145px;
  }
  .category-hero-image img {
    height: 150px !important;
    width: 210px;
  }
  .category-section,
  .category-vehicle-section,
  .category-guide,
  .other-categories {
    margin-top: 37px;
  }
  .category-section-head {
    display: block;
    margin-bottom: 16px;
  }
  .category-section-head > p,
  .vehicle-section-head > p {
    margin-top: 9px;
    text-align: left;
  }
  .category-section-head > a {
    display: inline-block;
    margin-top: 10px;
  }
  .category-section-head h2,
  .category-guide h2 {
    font-size: 24px;
  }
  .category-vehicle-section {
    padding: 22px 17px 19px;
    border-radius: 17px;
  }
  .category-selected-vehicle {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
  }
  .category-selected-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }
  .category-selected-copy h2 {
    font-size: 22px;
  }
  .category-selected-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 5px;
  }
  .category-selected-actions a,
  .category-selected-actions button {
    width: 100%;
  }
  .category-general-note {
    margin: 19px -17px -19px;
    padding: 13px 17px;
    border-radius: 0 0 17px 17px;
  }
  .category-vehicle-popup-action {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }
  .category-vehicle-popup-icon {
    width: 44px;
    height: 44px;
  }
  .category-vehicle-popup-action button {
    grid-column: 1/-1;
    width: 100%;
  }
  .category-vehicle-finder .side-form {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .category-vehicle-finder .side-form-btn {
    grid-column: auto;
    margin-top: 3px !important;
  }
  .subcategory-grid,
  .related-group-links {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .subcategory-card {
    min-height: 94px;
    padding: 14px;
    grid-template-columns: 42px minmax(0, 1fr) 20px;
  }
  .subcategory-number,
  .subcategory-placeholder {
    width: 42px;
    height: 42px;
  }
  .subcategory-placeholder svg {
    width: 20px;
    height: 20px;
  }
  .subcategory-image {
    width: 54px;
    height: 54px;
    margin-left: -6px;
  }
  .subcategory-card:has(.subcategory-image) {
    grid-template-columns: 48px minmax(0, 1fr) 20px;
  }
  .category-hero-placeholder {
    width: 150px;
    height: 150px;
  }
  .category-hero-placeholder svg {
    width: 58px;
    height: 58px;
  }
  .subcategory-copy strong {
    font-size: 14px;
  }
  .category-endpoint {
    display: block;
    margin-top: 32px;
    padding: 22px;
  }
  .category-endpoint > a {
    display: inline-flex;
    margin-top: 17px;
  }
  .category-product-grid {
    grid-template-columns: 1fr;
  }
  .category-product-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
  }
  .category-product-image {
    width: 118px;
    height: 100%;
    min-height: 176px;
    padding: 10px;
    border-right: 1px solid #edf1f6;
    border-bottom: 0;
  }
  .category-product-image img {
    max-height: 135px;
  }
  .category-product-body {
    padding: 14px;
  }
  .category-product-bottom {
    display: block;
  }
  .category-product-bottom a {
    display: block;
    margin-top: 8px;
  }
  .category-makes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .category-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .category-brand-card {
    min-height: 92px;
  }
  .category-brand-card img {
    max-width: 90px;
    height: 32px;
  }
  .category-make-card {
    min-height: 100px;
  }
  .category-make-logo {
    width: 48px;
    height: 40px;
  }
  .category-make-logo img {
    height: 40px !important;
  }
  .category-make-card > strong {
    font-size: 10px;
  }
  .category-guide {
    padding: 22px 18px;
    border-radius: 17px;
  }
  .category-help-card {
    padding: 19px;
  }
  .other-categories {
    padding: 22px 16px;
    border-radius: 17px;
  }
  .other-category-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .other-category-grid a {
    min-height: 82px;
  }
  .other-category-grid img {
    height: 80px !important;
  }
  .category-faq {
    margin-top: 37px;
    padding: 22px 17px;
    border-radius: 17px;
  }
  .category-faq summary {
    font-size: 13px;
  }
  .category-faq p {
    margin-right: 4px;
  }
}
