
  :root {
    --whiteGray: #fbfbfb;
    --lightGray: #d3d3d3;
    --textMobileGray: #6b6b6b;
  }
  .custom-html-module img {
    height: auto;
    max-width: 100%
  }
  /* -------------------- BASE -------------------- */
  html {
    scroll-behavior: smooth;
  }
  html body {
    font-size: 16px;
  }
  ul {
    list-style: none;
    padding: 0;
  }
  .base-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 11rem;
    padding: .6rem 2rem;
    border-radius: .2rem;
    font-size: 1rem;
    text-transform: uppercase;
    transition: .2s ease;
    text-decoration: none !important;
    text-align: center;
  }
  /* -------------------- HERO -------------------- */
  #hero-wrap {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8rem 0 4rem;
    background-color: black;
  }
  #hero-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.4;
  }
  #hero-wrap .hero {
    padding-bottom: 4rem;
  }
  #hero-wrap .hero .caption {
    color: white;
    text-align: center;
  }
  #hero-wrap .hero h1 {
    font-size: 3.75rem;
    text-shadow: 2px 3px 5px black;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  #hero-wrap .hero .content {
    display: inline-block;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: .2rem;
    margin-bottom: 2rem;
    max-width: 600px;
  }
  #hero-wrap .hero p {
    font-size: 1.1rem;
    color: black;
    margin: 0;
    line-height: 1.5;
  }
  #hero-wrap #search-tabs-nav {
    display: flex;
    justify-content: space-between;
    border: none;
    margin: 0;
  }
  #hero-wrap #search-tabs-nav:after {
    display: none;
  }
  #hero-wrap #search-tabs-nav .nav-item {
    width: 32.5%;
    float: none;
    text-align: center;
    margin: 0 0 .75rem 0;
    cursor: pointer;
  }
  #hero-wrap #search-tabs-nav .nav-item .nav-link {
    display: block;
    background: #1c69d3;
    color: white;
    border-radius: .25rem;
    transition: all .2s ease;
    padding: .6rem 2rem;
    border-radius: .2rem;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
  }
  #hero-wrap #search-tabs-nav .nav-item .nav-link:hover,
  #hero-wrap #search-tabs-nav .nav-item .nav-link.active {
    background: white;
    color: black;
  }
  #hero-wrap #search-tabs-nav .nav-item .nav-link .fa {
    font-size: 1.1rem;
    margin-right: 1rem;
  }
  #hero-wrap #search-tabs-body-wrap {
    margin: 0;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body {
    position: relative;
    display: flex;
    align-items: center;
    height: 7rem;
    padding: 2rem 3rem;
    background: white;
    border-radius: .25rem;
    overflow: visible; /* FIX #1: Allow dropdown menu to show */
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane {
    display: none;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane.active {
    display: block;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane .vehicle-picker-dropdown-module {
    margin: 0;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane .vehicle-picker-dropdown-module .vehicle-picker-dropdown.inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane .vehicle-picker-dropdown-module .vehicle-picker-dropdown.inline .dropdown {
    flex: 1;
    position: relative; /* Added for dropdown positioning */
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane .vehicle-picker-dropdown-module .vehicle-picker-dropdown.inline .dropdown:not(:first-of-type) {
    margin-left: 1rem;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane .vehicle-picker-dropdown-module .vehicle-picker-dropdown.inline .dropdown .dropdown-toggle {
    width: 100%;
    padding: .6rem 1rem;
    border-radius: .2rem;
    max-width: unset;
    min-width: unset;
    line-height: 1.4;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane .vehicle-picker-dropdown-module .vehicle-picker-dropdown.inline .dropdown .dropdown-toggle.disabled {
    background: #adadad;
    cursor: not-allowed;
    opacity: 0.7;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane#vehicle-search-tab {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane#part-search-tab {
    width: 100%;
    margin: 0;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane#part-search-tab .main-search-wrapper {
    display: flex;
    align-items: center;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane#part-search-tab .search-by-part-module input[type=text] {
    flex: 1;
    padding: .6rem 1rem;
    margin: 0;
    font-size: 1rem;
    border-radius: .2rem;
    border: 1px solid var(--lightGray);
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane#part-search-tab .search-by-part-module input[type=text]::placeholder {
    font-size: 1rem;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane#part-search-tab .search-by-part-module .btn {
    flex: 0;
    min-width: 12rem;
    padding: .6rem 2rem;
    margin-left: 1rem;
    border-radius: .2rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: .2s ease;
    text-decoration: none !important;
    text-align: center;
    background: #1c69d3;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane#part-search-tab .search-by-part-module .btn:hover {
    background: white;
    color: #211f1f;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane#vin-search-tab {
    width: 100%;
    margin: 0;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane#vin-search-tab .search-by-vin-module .search_by_vin {
    display: flex;
    align-items: center;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane#vin-search-tab .search-by-vin-module input[type=text] {
    flex: 1;
    padding: .6rem 1rem;
    margin: 0;
    font-size: 1rem;
    border-radius: .2rem;
    border: 1px solid var(--lightGray);
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane#vin-search-tab .search-by-vin-module input[type=text]::placeholder {
    font-size: 1rem;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane#vin-search-tab .search-by-vin-module .btn {
    flex: 0;
    min-width: 12rem;
    padding: .6rem 2rem;
    margin-left: 1rem;
    margin-bottom: 0;
    border-radius: .2rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: .2s ease;
    text-decoration: none !important;
    text-align: center;
    background: #1c69d3;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane#vin-search-tab .search-by-vin-module .btn:hover {
    background: white;
    color: #211f1f;
  }
  #hero-wrap #search-tabs-body-wrap #search-tabs-body .tab-pane#vin-search-tab .search-by-vin-module #where-is-vin {
    display: none;
  }
  
  /* --- DROPDOWN CSS --- */
  #hero-wrap .vehicle-picker-dropdown .dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 100%;
    margin-top: .25rem;
    padding: .5rem 0;
    list-style: none;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.175);
    max-height: 250px;
    overflow-y: auto;
  }

  #hero-wrap .vehicle-picker-dropdown .dropdown.open .dropdown-menu {
    display: block;
  }
  
  #hero-wrap .vehicle-picker-dropdown .dropdown .dropdown-item {
    display: block;
    width: 100%;
    padding: .5rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: left;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
  }
  
  #hero-wrap .vehicle-picker-dropdown .dropdown .dropdown-item:hover,
  #hero-wrap .vehicle-picker-dropdown .dropdown .dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
  }
  
  #hero-wrap .vehicle-picker-dropdown .dropdown .search-wrapper {
    position: relative;
    padding: 0 .75rem .5rem;
    border-bottom: 1px solid #eee;
    margin-bottom: .5rem;
  }

  #hero-wrap .vehicle-picker-dropdown .dropdown .search-wrapper .dropdown-search-input {
    width: 100%;
    padding: .375rem .75rem .375rem 2rem;
    border: 1px solid #ced4da;
    border-radius: .2rem;
  }
  
  #hero-wrap .vehicle-picker-dropdown .dropdown .search-wrapper .fa-search {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
  }

  @media (min-width: 768px) {
    #hero-wrap .hero .caption .hero-mobile-button {
      display: none;
    }
  }
  @media (max-width: 991px) {
    #hero-wrap {
      padding: 4rem 0;
    }
    #hero-wrap .hero {
      padding-bottom: 2rem;
    }
    #hero-wrap .hero .caption {
      padding: 2rem;
    }
    #hero-wrap .hero .caption p {
      border: none;
      border-radius: .2rem;
    }
    #hero-wrap .hero .caption .hero-mobile-button {
      border: none;
      background: white;
      color: white;
      background: #1c69d3;
    }
    #hero-wrap .hero .caption .hero-mobile-button:hover {
      color: white;
      background: #211f1f;
    }
    #hero-wrap #search-tabs-body {
      padding: 2rem;
      height: auto;
    }
  }
  @media (max-width: 767px) {
    #hero-wrap:before {
      display: none;
    }
    #hero-wrap .hero {
      padding-bottom: 0;
    }
    #hero-wrap .hero .caption {
      padding-bottom: 0;
    }
    #hero-wrap .hero .caption h1 {
      color: #1c69d3;
      font-size: 3rem;
      text-shadow: none;
      margin-bottom: .5rem;
    }
    #hero-wrap .hero .caption .content {
      margin-bottom: 1rem;
    }
    #hero-wrap .hero .caption .content p {
      font-size: 1rem;
    }
    #hero-wrap .nav-item .nav-link {
      padding: .5rem;
      font-size: .9rem;
      font-weight: 600;
    }
    #hero-wrap #search-tabs-nav-wrap,
    #hero-wrap #search-tabs-body-wrap {
      display: none;
    }
    #hero-wrap #search-tabs-body {
      padding: 1rem;
    }
  }
  @media (max-width: 575px) {
    #hero-wrap .hero {
      text-align: center;
      padding: 0;
    }
    #hero-wrap .hero .caption {
      padding: 0;
    }
    #hero-wrap .hero p {
      max-width: none;
    }
    #hero-wrap #search-tabs-nav-wrap,
    #hero-wrap #search-tabs-body-wrap {
      display: none;
    }
  }
  /* -------------------- MODALS -------------------- */
  .modal {
    z-index: 5000;
  }