

@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/source-sans-3.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/source-sans-3-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/barlow-condensed-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/barlow-condensed-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* Reset-ish helpers Bootstrap pages rely on */
*,
*::before,
*::after { box-sizing: border-box; }

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}
.g-0 { --bs-gutter-x: 0; --bs-gutter-y: 0; }
.g-3 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
.g-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
.row.g-0, .row.g-3, .row.g-4 {
  margin-left: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
  margin-right: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
}
.row.g-0 > *, .row.g-3 > *, .row.g-4 > * {
  padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  margin-top: var(--bs-gutter-y, 0);
}
.col { flex: 1 0 0%; }
.col-md-3, .col-md-4, .col-md-8, .col-md-9, .col-lg-10 { flex: 0 0 auto; }
.row-cols-2 > * { flex: 0 0 auto; width: 50%; }
@media (min-width: 768px) {
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333333%; }
  .col-md-8 { width: 66.666667%; }
  .col-md-9 { width: 75%; }
  .row-cols-md-5 > * { width: 20%; }
}
@media (min-width: 992px) {
  .col-lg-10 { width: 83.333333%; }
}

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-grid { display: grid !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-fill { flex: 1 1 auto !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }

.m-0 { margin: 0 !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.mx-4 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mt-auto { margin-top: auto !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }

.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-muted { color: #6c757d !important; }
.text-success { color: #198754 !important; }
.text-danger { color: #dc3545 !important; }
.text-white { color: #fff !important; }
.text-dark { color: #212529 !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-decoration-none { text-decoration: none !important; }
.fw-bold { font-weight: 700 !important; }
.small, small { font-size: 0.875em; }
.lead { font-size: 1.15rem; font-weight: 400; }
.h6 { font-size: 1rem; font-weight: 700; }
.list-unstyled { padding-left: 0; list-style: none; }
.img-fluid { max-width: 100%; height: auto; }
.rounded { border-radius: 0.375rem !important; }
.rounded-pill { border-radius: 50rem !important; }
.rounded-start { border-top-left-radius: 0.375rem; border-bottom-left-radius: 0.375rem; }
.border { border: 1px solid #dee2e6 !important; }
.border-0 { border: 0 !important; }
.border-top { border-top: 1px solid #dee2e6 !important; }
.bg-light { background-color: #f8f9fa !important; }
.bg-danger { background-color: #dc3545 !important; }
.shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075) !important; }
.shadow-lg { box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.btn {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  background: transparent;
  color: inherit;
}
.btn:disabled, .btn.disabled { opacity: 0.65; pointer-events: none; }
.btn-sm { padding: 0.25rem 0.6rem; font-size: 0.875rem; }
.btn-lg { padding: 0.7rem 1.25rem; font-size: 1.1rem; }
.btn-primary {
  background: var(--ford-blue, #003478);
  border-color: var(--ford-blue, #003478);
  color: #fff;
}
.btn-primary:hover { filter: brightness(1.08); color: #fff; }
.btn-outline-primary {
  color: var(--ford-blue, #003478);
  border-color: var(--ford-blue, #003478);
  background: #fff;
}
.btn-outline-primary:hover {
  background: var(--ford-blue, #003478);
  color: #fff;
}
.btn-light {
  background: #f8f9fa;
  border-color: #f8f9fa;
  color: #212529;
}
.btn-light:hover { background: #e9ecef; }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: 0.5rem;
}
.card-body { flex: 1 1 auto; padding: 1rem; }
.card-title { margin-bottom: 0.5rem; font-size: 1.1rem; font-weight: 700; }
.card-text { margin-top: 0; }
.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.5rem - 1px);
  border-top-right-radius: calc(0.5rem - 1px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
  list-style: none;
  font-size: 0.9rem;
}
.breadcrumb-item + .breadcrumb-item { padding-left: 0.5rem; }
.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding-right: 0.5rem;
  color: #6c757d;
}
.breadcrumb-item.active { color: #6c757d; }

.pagination {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
  gap: 0.25rem;
}
.page-link {
  display: block;
  padding: 0.4rem 0.75rem;
  color: var(--ford-blue, #003478);
  text-decoration: none;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
}
.page-item.active .page-link {
  background: var(--ford-blue, #003478);
  border-color: var(--ford-blue, #003478);
  color: #fff;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background: #fff;
}

.form-control,
.form-select {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.25rem;
}

:root {
  color-scheme: light;
  interpolate-size: allow-keywords;
  --ford-blue: #003478;
  --ford-blue-mid: #0a4a8a;
  --ford-blue-soft: #d6e4f5;
  --ink: #12151c;
  --ink-muted: #4a5260;
  --steel-950: #0b0e14;
  --steel-900: #151922;
  --steel-800: #222833;
  --steel-200: #c8d0dc;
  --steel-100: #e6ebf2;
  --paper: #f2f5f9;
  --surface: #ffffff;
  --line: rgba(18, 21, 28, 0.12);
  --save: #b45309;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(11, 14, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 14, 20, 0.1);
  --font-body: "Source Sans 3", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --menu-h: 52px;
  --footer-h: 22px;
  font-size-adjust: from-font;
}

@media (prefers-reduced-motion: no-preference) {
  @view-transition {
    navigation: auto;
  }
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.28s;
  animation-timing-function: ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Force dark scrollbars (Firefox + Chromium/WebKit) */
* {
  scrollbar-width: thin;
  scrollbar-color: #4a5260 #151922;
}
*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
*::-webkit-scrollbar-track {
  background: #151922;
}
*::-webkit-scrollbar-thumb {
  background: #4a5260;
  border-radius: 6px;
  border: 2px solid #151922;
}
*::-webkit-scrollbar-thumb:hover {
  background: #6b7382;
}
*::-webkit-scrollbar-corner {
  background: #151922;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size-adjust: from-font;
  color: var(--ink);
  background: #f4f6f9;
  margin: 0;
  padding: 0;
  padding-bottom: var(--footer-h);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.show-details {
  background: #f4f6f9;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 10000;
  padding: 0.6rem 1rem;
  background: var(--ford-blue);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid #fff;
  outline-offset: 2px;
}

:where(a, button, .btn, .form-control, .form-select, .nav-item, .vehicle-pill, .menu-toggle):focus-visible {
  outline: 3px solid var(--ford-blue-mid);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.landing-brand-heading,
.card-title {
  text-wrap: balance;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

p, li, .card-text, .license-text, .search-help, .vehicle-finder-hint {
  text-wrap: pretty;
}

/* Menu Bar */
.menu-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--menu-h);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 40%),
    var(--steel-950);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  backdrop-filter: saturate(1.2);
}

.trust-ticker {
  position: relative;
  width: 100%;
  min-height: 64px;
  z-index: 1;
  overflow: hidden;
  background: #b91c1c;
  color: #fff;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.trust-ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: trustTickerScroll 55s linear infinite;
}
.trust-ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1;
  padding: 1.1rem 0;
}
.trust-ticker-item {
  padding: 0 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.trust-ticker-item .icon {
  width: 1.15em;
  height: 1.15em;
  opacity: 0.95;
}
@keyframes trustTickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-ticker-track {
    animation: none;
    width: 100%;
    justify-content: center;
  }
  .trust-ticker-group:last-child {
    display: none;
  }
}

.container {
  padding-top: calc(var(--menu-h) + 12px);
  max-width: 1040px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  flex: 1;
}

/* When landing/header search is present, it owns the menu offset */
main:has(#searchContainer.landing) > .container {
  padding-top: 1.75rem;
}
main:has(#searchContainer.header) > .container {
  padding-top: 0.5rem;
}

#searchContainer.landing,
#searchContainer.header {
  margin: 0 auto;
}

/* Full-bleed photo hero */
#searchContainer.landing {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  margin-top: var(--menu-h);
  min-height: min(78vh, 720px);
  padding: 2rem 1.25rem 2.25rem;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  background: #0b1018;
  color: #eef3f9;
  box-shadow: none;
  transition: min-height 0.35s ease, padding 0.35s ease;
}
#searchContainer.landing.has-products {
  min-height: min(68vh, 620px);
  padding: 2rem 1.25rem 2.5rem;
}
.landing-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 42%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.landing-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 10, 18, 0.55) 0%, rgba(6, 10, 18, 0.35) 40%, rgba(6, 10, 18, 0.78) 100%),
    linear-gradient(90deg, rgba(6, 10, 18, 0.4) 0%, rgba(6, 10, 18, 0.28) 36%, rgba(6, 10, 18, 0.72) 68%, rgba(6, 10, 18, 0.88) 100%);
}
.landing-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(340px, 1.15fr);
  gap: 1.5rem 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.landing-copy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  padding: 1.15rem 1.25rem 1.2rem;
  border-radius: 12px;
  background: rgba(6, 10, 18, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}
#searchContainer.landing::before {
  display: none;
}
#searchContainer.header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1040px;
  padding: 1rem 15px 0.75rem;
  height: auto;
  margin: 0 auto;
  margin-top: var(--menu-h);
  background: transparent;
  color: inherit;
  box-shadow: none;
  border-radius: 0;
  min-height: 0;
  overflow: visible;
}
#searchContainer.header .landing-logo-link {
  transform: none;
  align-self: center;
}
#searchContainer.header .landing-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: none;
  width: 100%;
  gap: 0;
}
#searchContainer.header .landing-copy {
  flex: 1;
  min-width: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
}
#searchContainer.header .landing-hero-media,
#searchContainer.header .landing-hero-scrim,
#searchContainer.header::before {
  display: none;
}
#searchContainer.header .search-help,
#searchContainer.header .landing-tagline,
#searchContainer.header .landing-brand-heading,
#searchContainer.header #vehicleFinder,
#searchContainer.header .license-box {
  display: none;
}
#searchContainer.header .position-relative,
#searchContainer.header .landing-search {
  margin-top: 0;
  margin-bottom: 0;
  flex: 1;
}

#logo {
  max-width: 210px;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.45));
  transition: max-width 0.3s ease, margin 0.3s ease, filter 0.3s ease;
}
#searchContainer.landing #logo {
  max-width: min(420px, 100%);
  animation: heroRise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.landing-logo-link {
  display: block;
  line-height: 0;
  justify-self: center;
  align-self: center;
  transform: translateY(-14px);
}
.landing-brand-heading {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.4rem;
  text-align: left;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.3;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
  animation: heroRise 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}
.landing-tagline {
  margin: 0 0 1.15rem;
  max-width: 34rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
  animation: heroRise 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#searchContainer.header #logo {
  max-width: 100px;
  margin: 0 20px 0 0;
  filter: none;
}

h1 {
  color: var(--ink);
  margin-bottom: 1.25rem;
}

/* Search */
#searchContainer.landing .position-relative,
#searchContainer.landing .landing-search {
  max-width: none;
  position: relative;
  z-index: 30;
  animation: heroRise 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}
.form-control {
  border-radius: 999px;
  padding: 1rem 1.35rem;
  font-size: 1.08rem;
  font-family: var(--font-body);
  border: 2px solid transparent;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control::placeholder {
  color: #7a8494;
}
.form-control:focus {
  border-color: var(--ford-blue-mid);
  box-shadow: 0 0 0 4px rgba(26, 90, 173, 0.28), 0 10px 28px rgba(0,0,0,0.22);
}
#searchContainer.header .form-control {
  box-shadow: var(--shadow-sm);
  border-color: var(--steel-200);
}

.suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background-color: #fff;
  background-image: none;
  opacity: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-height: 320px;
  overflow-y: auto;
  transition: opacity 0.3s ease;
  z-index: 1000;
  color: var(--ink);
  isolation: isolate;
}
.suggestion-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.suggestion-item:hover,
.suggestion-item:focus-visible,
.suggestion-item.is-active,
.suggestion-item[aria-selected="true"] {
  background: var(--ford-blue-soft);
}
.thumb {
  width: 50px;
  height: auto;
  margin-right: 12px;
  border-radius: 4px;
  object-fit: cover;
}

#detailBox {
  margin: 1.5rem 0;
}
.detail-thumb {
  width: 300px;
  max-width: 100%;
  height: auto;
  margin-right: 20px;
  border-radius: 8px;
  object-fit: cover;
}

/* Product cards — interaction containers */
.card,
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  background: var(--surface);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card:hover,
.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 52, 120, 0.28);
  transform: translateY(-3px);
}
.card-title,
.product-card .card-title {
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.card-text,
.product-card .card-text {
  color: var(--ink-muted);
  font-size: 0.875rem;
}
.product-card .card-img-top {
  height: 200px;
  width: 100%;
  object-fit: contain;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  padding: 14px;
  transition: transform 0.25s ease;
}
.product-card:hover .card-img-top {
  transform: scale(1.03);
}
.product-card .card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .card-text {
  font-size: 0.8125rem;
  margin-bottom: 8px;
  flex: 1;
  background: var(--steel-100) !important;
  border-radius: 6px;
}
.product-card .btn {
  font-size: 0.875rem;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: auto;
}

#featuredProducts .card-img-top,
#otherItems .card-img-top,
.shop-section .card-img-top {
  height: 200px;
  width: 100%;
  object-fit: contain;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  padding: 12px;
  display: block;
}

.product-price-block {
  gap: 0.25rem;
}
.product-price-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.product-price-msrp {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  line-height: 1.15;
  display: block;
}
.product-price-current {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.1;
}
.product-price-arrow {
  font-size: 1.35rem;
}

.product-card .price-container {
  margin: 8px 0;
}
.product-card .price-current {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.product-card .price-original {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  text-decoration: line-through;
  margin-left: 4px;
}
.product-card .price-save {
  font-size: 0.75rem;
  color: var(--save);
  font-weight: 600;
  margin-top: 2px;
}

.shop-section {
  padding: 0.5rem 0 0;
  margin-top: 0.5rem;
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

body.show-details #featuredProducts,
body.show-details #featuredBlog,
body.show-details #vehicleFinder,
body.show-details .trust-ticker,
#featuredProducts.hidden,
#featuredBlog.hidden,
#vehicleFinder.hidden {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Vehicle finder */
.vehicle-finder {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0.15rem 0 0;
  animation: heroRise 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}
.vehicle-finder-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0.35rem 0 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.vehicle-finder-divider::before,
.vehicle-finder-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.28);
}
.vehicle-finder-panel {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: left;
  backdrop-filter: none;
}
.vehicle-finder-heading {
  display: none;
}
.vehicle-finder-controls {
  display: grid;
  grid-template-columns: 1fr 1.35fr auto;
  gap: 0.55rem;
  align-items: end;
}
.vehicle-finder-field {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  min-width: 0;
}
.vehicle-finder-field .form-select {
  appearance: none;
  -webkit-appearance: none;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: normal;
  height: 44px;
  line-height: 1.2;
  padding: 0 2rem 0 0.75rem;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a5260' d='M1.4 0.6L6 5.2 10.6 0.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px 8px;
  color: var(--ink);
  box-shadow: none;
  width: 100%;
}
.vehicle-finder-field .form-select:focus {
  border-color: var(--ford-blue-mid);
  box-shadow: 0 0 0 3px rgba(26, 90, 173, 0.35);
  outline: none;
}

.vehicle-finder-submit {
  white-space: nowrap;
  border-radius: var(--radius);
  height: 44px;
  padding: 0 1.05rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  align-self: end;
}
.vehicle-finder-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  color: #fff !important;
  background-color: #3d5f8a !important;
  border-color: #3d5f8a !important;
}
.vehicle-finder-hint {
  margin: 0.55rem 0 0;
  min-height: 1.2em;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}
.vehicle-finder-popular {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
  justify-content: flex-start;
}
.vehicle-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.84rem;
  font-weight: 600;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.vehicle-pill:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink) !important;
  transform: none;
}

.browse-chip,
.btn.browse-chip {
  border-radius: 4px;
  border: 1px solid var(--steel-200);
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.35rem 0.75rem;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.browse-chip:hover,
.btn.browse-chip:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

@media (max-width: 640px) {
  .vehicle-finder-controls {
    grid-template-columns: 1fr 1fr;
  }
  .vehicle-finder-submit {
    grid-column: 1 / -1;
    width: 100%;
  }
}
@media (max-width: 420px) {
  .vehicle-finder-controls {
    grid-template-columns: 1fr;
  }
}

/* Buttons */
.btn-primary {
  background-color: var(--ford-blue) !important;
  border-color: var(--ford-blue) !important;
  color: #fff !important;
  border-radius: var(--radius);
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--ford-blue-mid) !important;
  border-color: var(--ford-blue-mid) !important;
  color: #fff !important;
}

.btn-ford-blue {
  transition: all 0.2s ease;
}
.btn-ford-blue:hover,
.btn-ford-blue:focus {
  background-color: #002855 !important;
  border-color: #002855 !important;
  color: #fff !important;
}

.btn-outline-primary,
.card .btn-outline-primary,
button.btn-outline-primary {
  color: var(--ink) !important;
  border-color: var(--ink) !important;
  background-color: transparent !important;
  font-weight: 600;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.card .btn-outline-primary:hover,
.card .btn-outline-primary:focus,
.card .btn-outline-primary:active,
button.btn-outline-primary:hover,
button.btn-outline-primary:focus,
button.btn-outline-primary:active {
  background-color: var(--ink) !important;
  border-color: var(--ink) !important;
  color: #fff !important;
}

.description-box {
  min-height: 150px;
  max-height: 300px;
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafbfc;
  display: flex;
  flex-direction: column;
}

.search-help {
  text-align: left;
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  animation: heroRise 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
}

/* License / trust strip */
.license-box {
  margin-top: 1.35rem;
  width: 100%;
  max-width: none;
  animation: heroRise 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}
#searchContainer.landing .license-box {
  display: block;
}
#searchContainer.header .license-box {
  display: none;
}
.license-box .trust-strip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  padding: 0;
  border: none;
  background: transparent;
}
.license-box .trust-strip img {
  width: 40px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.9;
}
.license-box .trust-strip p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
}
.license-box .trust-strip strong {
  color: #fff;
  font-weight: 700;
}
.license-info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.license-info img {
  width: 85px;
  height: 85px;
  max-width: 85px;
  margin-right: 15px;
  object-fit: contain;
}
.license-text {
  text-align: left;
  font-size: 0.9em;
  color: #555;
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0;
  background: var(--steel-950);
  z-index: 998;
  height: var(--footer-h);
  display: flex;
  align-items: center;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-content {
  text-align: center;
  color: #fff;
  font-size: 0.78em;
  width: 100%;
  line-height: var(--footer-h);
  margin: 0;
  padding: 0;
  position: relative;
}
.footer-content .container {
  margin: 0 auto;
  padding: 0;
  width: 50%;
  line-height: var(--footer-h);
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-content small {
  line-height: var(--footer-h);
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}
.footer-content .footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  right: 15px;
  top: 0;
  height: 100%;
}
.footer-content a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-content a:hover {
  text-decoration: underline;
}
.footer-content .icon {
  width: 0.9em;
  height: 0.9em;
}

.nav-menu {
  display: flex;
  gap: 8px;
  margin-left: auto;
  margin-right: 8px;
  transition: all 0.3s ease;
}

a.nav-item {
  color: #fff !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

a.nav-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  transform: translateY(-1px);
}

a.nav-item span {
  color: #fff !important;
}

.menu-toggle {
  display: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}
.nav-menu.active {
  right: 0;
}

.animate-pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }
}
.btn-light {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
}
.btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3) !important;
}
.shadow-hover {
  transition: all 0.2s ease-in-out;
  border: 2px solid #343a40;
}
.shadow-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  background: #343a40;
  color: white !important;
}
.shadow-hover:hover .text-danger {
  color: #ff6b6b !important;
}

.category-links {
  padding: 28px 20px 24px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-radius: 0;
  margin: 0;
  width: 100%;
  max-width: none;
  position: relative;
  box-sizing: border-box;
}
.browse-categories {
  width: 100vw;
  max-width: 100vw;
  margin: 48px 0 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 0 calc(var(--footer-h) + 8px);
  background: var(--steel-900);
  box-sizing: border-box;
}
.category-links .row {
  max-width: 1100px;
  margin: 0 auto;
}
.category-links h3 {
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.category-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease;
}
.category-links a:hover {
  background: #fff;
  color: var(--ink);
}
.category-links p {
  color: rgba(255,255,255,0.55) !important;
}
#searchContainer.header .category-links {
  display: none;
}

.menu-left {
  flex: 0 0 auto;
}

.btn-browse {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  padding: 5px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn-browse:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: translateY(-1px);
}

.featured-blog-section {
  content-visibility: auto;
  contain-intrinsic-size: 280px;
}

.browse-page-header h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

@media (max-width: 900px) {
  .landing-inner {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    justify-items: center;
  }
  .landing-brand-heading,
  .landing-tagline,
  .search-help {
    text-align: center;
  }
  .vehicle-finder-popular,
  .license-box .trust-strip {
    justify-content: center;
  }
  #searchContainer.landing #logo {
    max-width: 280px;
  }
}

@media (max-width: 765px) {
  .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .card {
    width: 100%;
    margin: 0 auto;
    font-size: 0.9rem;
  }
  .product-card .card-img-top {
    height: 120px;
    margin: 0 auto;
    display: block;
  }
  #featuredProducts .card-img-top,
  #otherItems .card-img-top,
  .shop-section .card-img-top {
    max-height: 180px;
    width: auto;
    margin: 0 auto;
    display: block;
  }
  .card-img-top {
    max-height: 400px;
    object-fit: contain;
    background: #f8f9fa;
  }
  .shop-section {
    padding: 20px 0;
  }
  .section-title {
    font-size: 1.45rem;
  }
  #searchContainer.landing {
    min-height: auto;
    padding: 1.75rem 1rem 1.75rem;
    border-radius: 0;
  }
  .landing-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    justify-items: center;
    text-align: center;
  }
  .landing-copy {
    align-items: stretch;
  }
  .landing-brand-heading,
  .landing-tagline,
  .search-help {
    text-align: center;
  }
  .vehicle-finder-popular,
  .license-box .trust-strip {
    justify-content: center;
  }
  .landing-brand-heading {
    font-size: 1.05rem;
  }
  .landing-tagline {
    font-size: 0.92rem;
    margin-bottom: 1.1rem;
  }
  #searchContainer.landing #logo {
    max-width: 220px;
  }
  #logo {
    max-width: 180px;
  }
  .card-body {
    padding: 0.75rem;
  }
  .card-title {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }
  .col-md-4 {
    padding: 0.5rem;
  }
  .card .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
  }
  .category-links .row > div {
    margin-bottom: 20px;
  }
  .btn-browse span {
    display: none;
  }
  .btn-browse {
    padding: 5px 10px;
  }
  .search-help {
    display: none;
  }
  .nav-menu {
    gap: 0;
    position: fixed;
    top: var(--menu-h);
    right: -100%;
    width: 220px;
    background-color: var(--steel-950);
    flex-direction: column;
    margin: 0;
    padding: 10px 0;
    border-radius: 0 0 0 8px;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.3);
    color: #fff !important;
    transition: right 0.25s ease;
  }
  a.nav-item,
  a.nav-item span,
  a.nav-item:hover span {
    color: #fff !important;
  }
  .menu-toggle {
    display: block;
  }
  a.nav-item {
    width: 100%;
    padding: 12px 20px;
    border-radius: 0;
    color: #fff !important;
  }
  .footer-content .container {
    width: 100%;
    justify-content: flex-start;
    padding-left: 15px;
  }
  .footer-content small {
    text-align: left;
  }

  footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  body {
    padding-bottom: var(--footer-h);
  }

  #searchContainer.header {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    width: 100%;
    max-width: none;
  }
  #searchContainer.header .landing-inner {
    flex-direction: row;
  }
  #searchContainer.header #logo {
    flex-shrink: 0;
    margin: 0;
    max-width: 75px !important;
  }
  #searchContainer.header .position-relative,
  #searchContainer.header .landing-search {
    flex-grow: 1;
    margin: 0;
  }
  #searchContainer.header .form-control {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

nav.breadcrumb a,
.breadcrumb-item a {
  color: var(--ford-blue);
}

.breadcrumb .breadcrumb-item a {
  color: var(--ford-blue);
}

.nav-item,
.nav-item span,
.nav-item:hover span {
  color: #fff !important;
  text-decoration: none;
}

.share-btn {
  min-width: 100px;
  font-size: 0.85rem;
}
.share-btn .icon {
  margin-right: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .card:hover,
  .product-card:hover,
  .vehicle-pill:hover,
  a.nav-item:hover,
  .btn-browse:hover {
    transform: none;
  }
}

/* Native dialogs (replaces Bootstrap modals) */
.site-dialog {
  border: none;
  padding: 0;
  max-width: min(720px, calc(100vw - 2rem));
  width: 100%;
  background: transparent;
  color: var(--ink);
}
.site-dialog.site-dialog-lg {
  max-width: min(960px, calc(100vw - 2rem));
}
.site-dialog::backdrop {
  background: rgba(11, 14, 20, 0.55);
}
.site-dialog-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-height: min(85vh, 900px);
  display: flex;
  flex-direction: column;
}
.site-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.site-dialog-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ford-blue);
}
.site-dialog-close {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--ink-muted);
  font-size: 1.75rem;
  line-height: 1;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  cursor: pointer;
}
.site-dialog-close:hover,
.site-dialog-close:focus-visible {
  color: var(--ink);
  background: var(--steel-100);
}
.site-dialog-body {
  padding: 1.25rem;
  overflow-y: auto;
}
.site-dialog-body .lead {
  font-size: 1.05rem;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  flex-shrink: 0;
}
.icon-2xl {
  width: 2em;
  height: 2em;
}
.icon-hero {
  width: 4rem;
  height: 4rem;
  color: #6c757d;
  opacity: 0.5;
}
.not-found-icon .icon {
  width: 6rem;
  height: 6rem;
}
