@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


.cus-text-us {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: black;
    color: white;
    width: 100%;
}
.cus-text-us:hover,
.cus-text-us:focus,
.cus-text-us:active {
    background: #444;
    color: white;
    text-decoration: none;
}

/* ============================================
   TRADEIN FORM
============================================ */
.trade-in-form input#btnFindCar {
 color: #fff!important;
}

/* ============================================
   BUTTONS
============================================ */
.button-group {
    display: flex;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
  }

  .button-group a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 14px 0;
    color: white;
    background-color: #000;
    border-right: 1px solid #444;
    transition: background-color 0.2s;
    font-size: 16px;
  }

  .button-group a:last-child {
    border-right: none;
  }

  .button-group a:hover {
    background-color: #444;
  }

  /* Mobile-friendly stacking */
  @media (max-width: 500px) {
    .button-group {
      flex-direction: column;
    }
    .button-group a {
      border-right: none;
      border-bottom: 1px solid #444;
    }
    .button-group a:last-child {
      border-bottom: none;
    }
  }

/* ============================================
   700CREDIT
============================================ */
.banner700 .btn.btn-default {
    padding: 0px!important;
    border-color: #00003a;
}

/* ============================================
   FORMS
============================================ */
.g-recaptcha {
    margin-bottom: 16px;
}

/* ============================================
   VDP
============================================ */
.vehicle-links-container a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #000;
    border-color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: capitalize;
    width: 100%;
    transition: all 0.3s;
}

.vehicle-links-container a:hover,
.vehicle-links-container a:focus,
.vehicle-links-container a:active {
    background-color: #1d1d1d;
    border-color: #1d1d1d;
    text-decoration: none;
    color: #fff;
}
.vehicle-links-container div {
    width: 100%;
}

/* ============================================
   INVENTORY LIST DESIGN - Main
============================================ */
div.col-.dynamic-col > .clearfix.inventory-panel.palette-bg2.vehicle {
    border-top: 0;
}
/***Price****/
.inv-list-price .inventory-price-container {
    padding: 8px 32px;
    border-radius: 0px;
}
@media(min-width: 992px) {
.inv-list-price {
    position: absolute;
    top: 0;
    right: 0;
    width: max-content !important;
}
}

/*** button ****/
.inv-list-bttn a {
    background-color: #000;
    border-color: #000;
    color: #fff;
    padding: 8px 16px;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 8px 0px;
    text-align: center;
}

.inv-list-bttn a:hover,
.inv-list-bttn a:focus,
.inv-list-bttn a:active {
    background-color: #1d1d1d;
    border-color: #1d1d1d;
    text-decoration: none;
    color: #fff;
}

/*** thumbnail ****/

.thumb-img {
    margin-bottom: 8px!important;
}

.thumb-img .inventory-photo-column {
    -ms-border-radius: 0px;
    border-radius: 0px;
}

.thumb-img .inventory-photo-column .clearfix {
    display: flex;
    gap: 8px;
}

.thumb-img .inventory-photo-column .pull-left {
    display: flex;
    align-items: center;
    margin: 0;
}

.thumb-img .palette-bg1 {
    background-color: #e6e6e6;
}
.thumb-img .fancybox-video,
.thumb-img .photo-button,
.thumb-img i.fa.fa-camera.accent-color1.accent-color1 {
    color: #121212!important;
} 
/*** price ****/
.inv-list-price .palette-bg1.inventory-price-container {
    background: #e6e6e6;
    background-color: #e6e6e6;
}
.inv-list-price .pricelabel,
.pricevalue1.accent-color1 b {
   color: #121212!important;
}

/* ============================================
   INVENTORY CARDS - HOMEPAGE
============================================ */
.shop-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.shop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
}

.shop-card:hover {
  transform: scale(1.03);
}

.shop-card img {
  max-width: 100%;
  height: 165px;
  object-fit: contain;
  border-radius: 8px;
}

.shop-title {
  font-weight: 600;
  margin: 12px 0;
}

.shop-link {
  margin-top: 8px;
  background-color: #007bff;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
}

.shop-link {
    background-color: #000;
    border-radius: 0px;
    font-size: 16px;
}

.shop-link:hover,
.shop-link:active,
.shop-link:focus {
    background-color: #121212;
    color: #fff;
    text-decoration: none;
}

/* Tablet: 3 items */
@media (min-width: 768px) {
  .shop-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }
}

/* Desktop: 5 items */
@media (min-width: 1200px) {
  .shop-card {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
  }
}

/* ============================================
   FOOTER
============================================ */
button#backToTopBtn {
  bottom: 0;
  right: 0;
  background-color: transparent;
  border: 3px solid white;
  border-radius: 0px;
  padding: 10px 16px;
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

#backToTopBtn:hover {
  background-color: red;
  border-color: red;
}

#backToTopBtn i {
  font-size: 18px;
}

@media(min-width: 768px) {
button#backToTopBtn {
    position: absolute;
}
}


div.footer-container {
    background-color: transparent;
    padding: 0px; 
    border: none;
}


.custom-footer {
  color: #fff;
  padding: 60px 15px;
  font-size: 18px;
}

.custom-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  gap: 30px;
}

.custom-footer-column {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.custom-footer-column-large {
  flex: 2;
}

.custom-footer-logo {
  width: 200px;
  margin-bottom: 15px;
}

.custom-footer-tagline,
.custom-footer-location,
.custom-footer-phone {
  margin: 6px 0;
  font-size: 18px;
 text-wrap: balance;
}

.custom-footer-heading {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: bold;
}

.custom-footer-links,
.custom-footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-footer-links li,
.custom-footer-hours li {
  margin-bottom: 10px;
  font-size: 18px;
}

.custom-footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 18px;
}

.custom-footer-links a:hover {
  color: #f00;
}

/* ============================================
   BRAND GRID - HOMEPAGE
============================================ */
.brand-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Mobile default */
  gap: 1rem;
  padding: 2rem;
  justify-content: center;
}

.brand-grid-item {
  aspect-ratio: 6 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid #ddd;
  background-color: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.brand-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

.brand-grid-item:hover img,
.brand-grid-item:focus img {
  transform: scale(1.1);
}

/* Tablet: 3 columns */
@media (min-width: 768px) and (max-width: 991.98px) {
  .brand-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop: 5 columns */
@media (min-width: 992px) {
  .brand-grid-container {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ============================================
   WELCOME - HOMEPAGE
============================================ */
.welcome-row {
text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: #ff0000;
  text-decoration: none;
}

.read-more-link i {
  transition: transform 0.3s ease;
}

.read-more-link:hover i {
  transform: translateX(4px);
}


/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3,
h4, h5, h6,
h1.pagetitle {
    font-family: "Bebas Neue", sans-serif;
    font-style: normal;
}

/* ============================================
   CARDS - HOMEPAGE
============================================ */
.carbon-bg {
    background: linear-gradient(27deg, #151515 5px, transparent 5px) 0 5px, linear-gradient(207deg, #151515 5px, transparent 5px) 10px 0px, linear-gradient(27deg, #222 5px, transparent 5px) 0px 10px, linear-gradient(207deg, #222 5px, transparent 5px) 10px 5px, linear-gradient(90deg, #1b1b1b 10px, transparent 10px), linear-gradient(#1d1d1d 25%, #1a1a1a 25%, #1a1a1a 50%, transparent 50%, transparent 75%, #242424 75%, #242424);
    background-color: #131313;
    background-size: 20px 20px;
    background-attachment: scroll;
}

.carbon-bg .container {
    background: transparent;
}

.card a {
    font-family: "Bebas Neue", sans-serif;
    font-style: normal;
    clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: white;
    width: 100%;
    padding: 10px 10px;
    text-transform: uppercase;
    font-weight: 800!important;
    text-align: center;
    color: #242424!important;
    font-size: 24px;
    transition: transform 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.card a:hover {
    text-decoration: none;
}

@media (min-width: 768px) {
.card a {
    font-size: 32px;
    padding: 40px 20px;
}
.card a:hover {
    transform: scale(1.1);
}
}

/* ============================================
   BANNER - TOP
============================================ */
.banner-links-bar {
    padding: 0px;
    font-size: 16px;
}

a.banner-link {
    text-shadow: none;
    font-size: 16px;
}

.media-icon-circle {
    box-shadow: none;
}

.banner-links-bar .phonenumber-link, 
.banner-links-bar .address-link, 
.banner-links-bar .social-media-links {
    padding: 10px 0px;
}

.banner-links-bar .social-media-links {
    margin-right: 10px;
}

.banner-links-bar-wrapper > div:not(:first-child) {
    border-right: 1px solid #5c5c5c; 
    padding-right: 1rem;
    margin-right: 1rem;
}

/* ============================================
   MISC
============================================ */
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}

@media (min-width: 1400px) {
    .container {
        width: 1400px;
    }
}
@media (min-width: 1600px) {
    .container {
        width: 1600px;
    }
}
/* ============================================
   BANNER
============================================ */
.banner-container.main-container {
    border-bottom: 3px solid #000;
    background: #1a1a1a;
}

@media (min-width: 768px) {
.banner-container.main-container {
    border-bottom: 6px solid #000;
}
}

/* Social media
***********************/
    .social-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    margin-top: 25px;
    }

    .social-button {
      width: 50px;
      height: 50px;
      border: 2px solid white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .social-button.facebook:hover,
    .social-button.facebook:focus,
    .social-button.facebook:active {
      background-color: #1877f2;
      color: white;
      border-color: #1877f2;
    text-decoration: none;
    }

    .social-button.youtube:hover,
.social-button.youtube:focus,
.social-button.youtube:active {
      background-color: #ff0000;
      color: white;
      border-color: #ff0000;
    text-decoration: none;
    }

    .social-button.instagram:hover,
    .social-button.instagram:focus,
    .social-button.instagram:active {
      background-color: #e1306c;
      color: white;
      border-color: #e1306c;
    text-decoration: none;
    }

    @media (max-width: 767.98px) {
      .social-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
      }

      .social-buttons {
        gap: 15px;
    margin-top: 0px;
      }
    }

/* ============================================
   NAVBAR
============================================ */
.navbar-default .navbar-nav > li > a {
    letter-spacing: 2px;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    text-transform: capitalize;
}

nav.navbar.navbar-default {
    padding: 0px;
}

 .navbar a.accent-bg1.accent-color2.active {
    background-color: #8e0303 !important;
    color: #ffffff!important;
}

ul.dropdown-menu a {
    color: #1b1b1b!important;
}

@media (min-width: 768px) {
    ul.nav.navbar-nav {
        position: relative;
}
ul.nav.navbar-nav {
   width: max-content;
}
.nav>li>a {
    padding: 15px 25px;
}
.navbar>.container .navbar-brand, 
.navbar>.container-fluid .navbar-brand {
    visibility: hidden;
    display: none;
}
.navbar-default .navbar-nav > li > a {
    font-size: 18px;
}
}

/* ============================================
   SEARCH FORM
============================================ */
.searchform .form {
    background: #fff;
    padding: 4px;
    border: 1px solid #c0c0c0;
    gap: 4px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: auto;
}

.element-type-inventorysearch .form-control {
background: #fff;
border-bottom: none!important;
color: #121212;
}

.searchform .form-group {
    width: 100%;
}

.searchform label {
    display: none;
}

.searchform input {
    border: none;
    width: 100% !important;
    box-shadow: none;
    height: 44px;
}

.form-control:focus {
    border-color: #000;
    box-shadow: none;
}

.searchform .form {
    display: flex;
    align-items: flex-end;
}

.searchform .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    margin-bottom: 0px;
}

.searchform .btn {
    height: 44px;
    transition: all 0.3s ease;
    font-size: 14px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.searchform h4 {
    font-size: var(--fs-primary-heading);
    text-align: center;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.searchform .element-heading-inventorysearch {
    padding-bottom: 0px;
}

@media (min-width: 768px) {
   .searchform .form {
        margin-inline: 40px;
}
}