/* Inventory list styling is here  */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");

:root {
  --goldColor: #d4af37;
  --darkBg: #1a1a1d;
  --cardBg: #252529;
  --textPrimary: #ffffff;
  --textSecondary: #cccccc;
  --textTertiary: #888888;
  --badgeBg: #333333;
  --tagFeatured: #d4af37;
  --tagAvailable: #4ade80;
  --tagInactive: #ff4757;
  --filterBg: #2c3e50;
}

/* Inventory Style  */
.custom-modal {
  max-width: 600px;
  width: 100%;
  height: 80vh;
  overscroll-behavior-y: none;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: hidden;
}

.custom-modal .modal-content {
  height: 100%;
}

.mainContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Inventory Detail  */
.modal-dialog.custom-size {
  max-width: 600px;
}

.modal-content {
  height: 800px;
}

header {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.toggle-filters-btn {
  width: 120px;
  border-radius: 8px;
  background: linear-gradient(103.36deg, #d4af37 0%, #b87333 100%);
}

.search-input {
  flex: 1;
  padding: 5px 40px;
  border-radius: 5px;
  border: none;
  background: #333;
  color: white;
  font-size: 16px;
}

.search-input::placeholder {
  color: #aaa;
}
.filterButton {
  display: flex;
  justify-content: space-around;
  align-items: center;
  align-content: space-around;
  flex-wrap: nowrap;
}
.image-wrapper img#mainImage {
  height: unset;
}
.filters-container {
  background-color: #1a1a1d;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.filters-container.visible {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.filtersGroups {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
button#dropdownButton {
  background: #333333;
}
li.FeaturedList {
  color: white;
  font-size: 12px;
}
li.FeaturedList:hover {
  color: goldenrod;
}
.slider {
  margin-top: 15px;
  width: 170px;
}

.filter-group {
  margin-bottom: 15px;
}

.filter-title {
  font-size: 10px;
  margin-bottom: 5px;
  color: var(--textPrimary);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-checkbox input {
  width: 18px;
  height: 18px;
}

.filter-checkbox label {
  color: var(--textSecondary);
  font-size: 0.9rem;
}

.range-slider {
  width: 100%;
  margin: 10px 0;
}

.range-values {
  display: flex;
  justify-content: space-between;
  color: var(--textSecondary);
  font-size: 0.9rem;
  width: 170px;
}

.products-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
}

.cardContainer {
  background: var(--cardBg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.image-container {
  position: relative;
  width: 300px;
  height: 250px;
  overflow: hidden;
  flex-shrink: 0;
}

.image-container img {
  height: 100%;
  display: block;
}

.tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
}

.tag {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  color: #000;
  user-select: none;
}

.tag.featured {
  background-color: var(--tagFeatured);
}

.tag.available {
  background-color: var(--tagAvailable);
}

.tag.inactive {
  background-color: var(--tagInactive);
  color: white;
}

.fav-button {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(85, 85, 85, 0.5);
  border: none;
  border-radius: 6px;
  padding: 8px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s ease;
}

.fav-button:hover {
  color: #fff;
}

.details {
  flex-grow: 1;
  color: var(--textSecondary);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 20px;
}

.cardTitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.details h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--textPrimary);
  margin: 0 0 0px 0;
}

.details p.subinfo {
  margin: 0 0 16px 0;
  color: var(--textSecondary);
  font-size: 14px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px 10px;
  margin-bottom: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.info-item i {
  font-size: 14px;
  min-width: 16px;
  text-align: center;
}

.badgeButtons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  justify-content: flex-end;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
}

.badge {
  background-color: var(--badgeBg);
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--textSecondary);
  user-select: none;
}

.actions {
  display: flex;
  gap: 8px;
}
div#Appliedfilters {
  background: #1a1a1d;
  padding: 10px;
  width: 100%;
  margin-left: 0px !important;
}

.btn-finance:hover,
.btn-inquire:hover {
  background: linear-gradient(to right, var(--goldColor), #b8952a);
}

.price {
  color: var(--goldColor);
  font-weight: 800;
  font-size: 24px;
  align-self: flex-start;
  min-width: 140px;
  text-align: right;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding: 15px;
  border-radius: 8px;
}

.pagination button {
  background: var(--goldColor);
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.pagination button:disabled {
  background: #555;
  color: #999;
  cursor: not-allowed;
}

.pagination select {
  background: #222;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 6px 12px;
  font-family: "Inter", sans-serif;
  font-weight: bold;
}

.pagination span {
  color: #fff;
  font-weight: 500;
}

.filtersHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* bootstrap Model styling */
h5#appModalLabel {
  color: black;
}

@media only screen and (max-width: 767px) {
  .image-container img {
    width: 100%;
  }
  .price {
    font-weight: 600;
    font-size: 16px;
  }
  .cardTitle {
    align-items: center;
    justify-content: space-between;
    align-items: center;
  }
  .badgeButtons {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .actions {
    width: unset;
    justify-content: unset;
  }

  .card.inventoryCardTheme {
    flex-direction: column;
    padding: 0px 0px;
  }
  i.fas.fa-sliders-h {
    left: 4% !important;
  }
  .image-container {
    width: 100%;
    height: 250px;
    background: gray;
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters-container {
    grid-template-columns: 1fr;
  }
}

.logo-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo-nav img {
  width: 80px;
  height: 50px;
  object-fit: contain;
}

.logo-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo-nav img {
  width: 80px;
  height: 50px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 400;
}

nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  padding-bottom: 2px;
}

nav a:hover {
  color: #fff;
}

nav a.inventory {
  background: linear-gradient(to right, #d4af37, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* for Firefox */
  border-bottom: 2px solid;
  /* thickness of border */
  border-image: linear-gradient(to right, #d4af37, white) 1;
  font-weight: 500;
}

nav a i {
  font-size: 14px;
}

.search-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 20px;
  gap: 15px;
}

.header.search-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-container input[type="search"] {
  width: 100%;
  padding: 8px 12px 8px 36px;
  border-radius: 6px;
  border: none;
  background-color: #222222;
  color: #999999;
  font-size: 14px;
  outline: none;
}

.header.search-container input[type="search"] {
  width: 400px;
  margin-bottom: -20px;
  padding: 8px 12px 8px 36px;
  border-radius: 6px;
  border: none;
  background-color: #333333;
  color: #999999;
  font-size: 14px;
  outline: none;
}

.search-container input::placeholder {
  color: #666666;
}

.header.search-container i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  font-size: 14px;
  margin-top: 10px;
}

.inventorySearchContainer i.fas.fa-search {
  color: gray !important;
  position: absolute;
  left: 0;
  margin-left: 6px;
  width: 20px;
}

.search-container i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: black;
  font-size: 14px;
}

header {
  background-color: #181818;
  padding: 16px 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.dropdown {
  position: relative;
  width: 160px;
  font-size: 12px;
  font-weight: 400;
}

.dropdown-button {
  width: 100%;
  background-color: #2a2a2a;
  color: #c7c7c7;
  border-radius: 8px;
  padding: 8px 12px;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-button:focus {
  outline: none;
}

.dropdown-button .chevron {
  border-style: solid;
  border-width: 0.15em 0.15em 0 0;
  content: "";
  display: inline-block;
  height: 0.45em;
  left: 0.15em;
  position: relative;
  top: 0.15em;
  transform: rotate(-45deg);
  vertical-align: top;
  width: 0.45em;
  border-color: #c7c7c7;
  transition: transform 0.3s ease;
  /* smooth rotation */
}

.dropdown-button.active .chevron {
  margin-top: -5px;
  transform: rotate(135deg);
  /* arrow rotates down when active */
}

li.menuitem {
  font-size: 10px;
  font-weight: unset;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 160px;
  background-color: #2a2a2a;
  border-radius: 8px;
  margin-top: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 10;
}

.dropdown-menu.show {
  display: block;
}

ul#dropdownMenu {
  padding-left: 0px;
}

.dropdown-menu li {
  list-style: none;
  padding: 8px 12px;
  cursor: pointer;
  user-select: none;
  border-radius: 8px;
}

.dropdown-menu li:hover {
  background-color: #3a3a3a;
}

.range-slider {
  position: relative;
}

.range-slider input[type="range"] {
  position: absolute;
  width: 100%;
  pointer-events: none;
  background: none;
  -webkit-appearance: none;
}

.range-slider input[type="range"]::-webkit-slider-runnable-track {
  height: 15px;
  background: gray;
  border-radius: 8px;
}

.range-slider input[type="range"]::-moz-range-track {
  height: 15px;
  background: gray;
  border-radius: 8px;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: black;
  cursor: pointer;
  pointer-events: auto;
  margin-top: 0px;
  position: relative;
  z-index: 2;
}

.range-slider input[type="range"]::-moz-range-thumb {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: black;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.range-slider .slider-track {
  position: absolute;
  height: 15px;
  border-radius: 8px;
  background: gold;
  z-index: 1;
  top: 22px;
}
.filterButton i,
.filterButton span {
  color: black;
}

.headerSection {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.8rem 1rem;
  background: #222;
  color: #fff;
  position: relative;

  width: 100%;
  border-bottom: 1px solid gray;
}

.logo-nav img {
  height: 45px;
}

.menuBar nav {
  display: flex;
  gap: 1rem;
}

.menuBar nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.search-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-container input {
  padding: 0.4rem 0.6rem;
  border: none;
  border-radius: 4px;
  outline: none;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 24px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animate to X when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.carfax {
  background: var(--goldColor);
  border-radius: 5px;
  line-height: 10px;
  padding: 2px;
}

.inventoryFilterDropdown {
  display: flex;
  column-gap: 10px;
}

.inventoryFilters.search-container {
  justify-content: space-between;
}

.inventoryFilters.search-container input.search-input {
  width: 100%;
}

.inventorySearchContainer input.search-input {
  width: 500px;
}

.inventory-search-container {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  margin-top: 15px;
}

/* ===== Mobile Styles ===== */
@media only screen and (max-width: 430px) {
  /* hide nav + search by default on mobile */
  .menuBar,
  .header.search-container {
    display: none;
    flex-direction: column;
    background: #222222;
    padding: 1rem;
    width: 100%;
    position: absolute;
    top: 45%;
    left: 0;
    z-index: 999;
  }

  /* when active */
  .menuBar.active {
    display: flex;
  }

  .search-container.active {
    display: flex;
    position: relative;
  }
  /* Inventory Pagination previous and next button on Inventory list page  */
  .pagination select,
  .pagination span,
  .pagination button,
  .theme-gradient-button,
  .dropdown-button {
    padding: 6px 9px;
    font-size: 12px;
  }
  span#totalPages {
    font-size: 12px;
  }

  button#toggleFiltersBtn {
    width: 100px;
    line-height: 30px;
    height: 30px;
    display: flex;
    justify-content: center !important;
  }
  i.fas.fa-sliders-h {
    left: 5%;
  }
  .filterButton span {
    margin-right: -30px;
  }
  .inventorySearchContainer input.search-input {
    font-size: 12px;
  }

  .menuBar nav {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 60px;
    flex-wrap: wrap;
    align-content: flex-start;
    margin-left: 10px;
  }
  .menuBar nav a.homeLink {
    margin-left: -25px;
  }

  .header.search-container input[type="search"] {
    width: 100%;
  }

  .search-container {
    margin-top: 0.5rem;
  }

  i.fas.fa-search {
    color: gray;
    position: absolute;
    left: 5%;
    margin: 10px;
  }

  .headerSection {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px 10px;
  }

  .inventory-search-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
  }

  .inventorySearchContainer input.search-input {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
  }

  .inventory-search-container .fas.fa-search {
    position: absolute;
    left: 0%;
    top: -2%;
  }

  i.fas.fa-sliders-h {
    position: absolute;
    left: 8%;
  }

  .filtersGroups {
    flex-direction: column;
  }

  .hamburger {
    display: flex;
  }

  .slider {
    width: 100%;
  }

  .badges {
    justify-content: space-between;
  }
}

.dark {
  background-color: #0a0a0b;
}

.bg-dark-grey {
  background-color: #1a1a1d;
}
.custom-card {
  border-radius: 10px;
  padding: 1.8rem;
  text-align: center;
  max-width: 250px;
  margin: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-height: 369px;
  width: 100%;
  height: 100%;
}
.custom-card .card-img-wrapper {
  position: relative;
  display: block;
  margin-bottom: 1rem;
}
.custom-card .card-img-wrapper img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}
.custom-card .card-img-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  border-radius: 8px;
}
.custom-card .card-img-wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffc107;
  font-size: 3rem;
  z-index: 1;
}

.custom-card .card-text,
.button-text {
  color: #ffffff;
  font-size: 12px;
  opacity: 0.8;
  line-height: 1.4;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}
.carmakeModel {
  font-style: normal;
  font-weight: 700;
  font-size: 42px;
  line-height: 42px;
  align-items: center;

  background: linear-gradient(94.7deg, #d4af37 40%, #e5e4e2 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.theme-heading {
  font-style: normal;
  font-weight: 700;
  font-size: 42px;
  line-height: 42px;
  align-items: center;

  background: linear-gradient(94.7deg, #d4af37 40%, #e5e4e2 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.theme-subheading {
  font-style: normal;
  font-weight: 400;
  font-size: 17.5px;
  line-height: 28px;
  align-items: center;
  color: white;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}
.makeCard {
  width: 12rem;
}
.link-text-color {
  color: #d4af37;
}
.Theme-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 7px;
  background: linear-gradient(103.36deg, #d4af37 0%, #b87333 100%);
  border-radius: 5px;
  flex: none;
  order: 0;
  flex-grow: 0;
  font-weight: 500;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.brand-logo {
  height: 60px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}
.brand-count {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #d4af37;
}
.brand-text {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 0px !important;
}
.brand-link {
  color: #d4af37 !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}
.brand-link:hover {
  color: #b87333;
}
.carousel-container {
  margin: 0 28px;
  position: relative;
}
.carousel-wrapper {
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.brand-card {
  border-radius: 10px;
  padding: 25px 15px;
  text-align: center;
  transition: transform 0.3s;
  height: 100%;
  min-width: 180px;
  margin: 0 10px;
  flex-shrink: 0;
}
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.brand-logo {
  height: 60px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}
.brand-text {
  font-size: 0.9rem;
  color: white;
  margin-bottom: 15px;
}
.brand-link {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}
.brand-link:hover {
  text-decoration: underline;
}
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 10;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-control:hover {
  background: rgba(0, 0, 0, 0.8);
}
.carousel-control.prev {
  left: 10px;
}
.carousel-control.next {
  right: 10px;
}
.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 8px;
}
.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #555;
  cursor: pointer;
  transition: background 0.3s;
}
.carousel-indicator.active {
  background-color: #fff;
}
.carousel-status {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #aaa;
}
#carouselIndicators,
#carouselStatus {
  display: none;
}

/* why chose premium motor  */
.them-chose-premium-icon {
  background: #2d2920;
  padding: 10px;
  border-radius: 50%;
  line-height: 10px;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Home Page hero section */
span.lg-error-msg {
  display: none !important;
}
#lg-inner-1 {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1583121274602-3e2820c69888?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: darken;
  pointer-events: none !important;
  z-index: 0;
}
.detailButton,
.balckThemButton {
  z-index: 232334 !important;
  cursor: pointer !important;
}
.car-info-overlay {
  z-index: 100000;
}

/*vehicle detail  */
#appModalBody p,
#appModalBody h3 {
  color: black;
}
h5#appModalLabel {
  color: black;
}
.unique-feature-row span {
  font-size: 14px;
}
/* Visit our showroom */
.button-border {
  border: 1px solid #8080805e;
}

/* car slider  */

.car-gallery-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inline-gallery-container {
  width: 100%;
  height: 600px;
  position: relative;
  margin-bottom: 20px;
}

.car-info-overlay {
  position: absolute;
  top: 100px;
  left: 10%;
  right: 0;
  color: white;
  padding: 30px 20px 20px;
  z-index: 10;
  pointer-events: none;
  row-gap: 40px;
}

.car-specs {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.car-spec {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Caption animation styles */
.lightGallery-captions h4 {
  transform: translate3d(60px, 0, 0px);
  opacity: 0;
}

.lightGallery-captions p {
  transform: translate3d(-60px, 0, 0px);
  opacity: 0;
}

.lg-current .lightGallery-captions h4,
.lg-current .lightGallery-captions p {
  transform: translate3d(0, 0, 0px);
  opacity: 1;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in;
  transition-delay: 500ms;
}

.lg-slide-progress .lightGallery-captions h4 {
  transform: translate3d(-60px, 0, 0px);
  opacity: 0;
}

.lg-slide-progress .lightGallery-captions p {
  transform: translate3d(60px, 0, 0px);
  opacity: 0;
}

.lg-slide-progress .lightGallery-captions h4,
.lg-slide-progress .lightGallery-captions p {
  transition-delay: 0ms;
}

.thumbnail-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  margin-top: 15px;
}

.car-thumbnail {
  width: 250px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.car-thumbnail:hover,
.car-thumbnail.active {
  border-color: #0e3481;
  transform: scale(1.05);
}

.car-details {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.detail-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.detail-tab {
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}

.detail-tab.active {
  color: #0e3481;
  border-bottom-color: #0e3481;
}

.detail-content {
  display: none;
}

.detail-content.active {
  display: block;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-section {
  background-color: #0e3481;
  color: white;
  padding: 30px;
  border-radius: 8px;
  margin-top: 20px;
}

.contact-btn {
  background-color: #ffcc00;
  color: #0e3481;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}
.thumbnail-container,
#lg-toolbar-1 {
  display: none;
}
#lg-content-1 {
  left: 0px;
  bottom: 0px !important;
}

.carButton {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.inline-gallery-container {
  height: 80vh;
}

#lg-components-1 {
  position: absolute;
  top: 70%;
  background-color: unset;
  background: unset;
}

.lg-object.lg-image {
  height: 100vh;
}
.lg-outer .lg-thumb-outer {
  background-color: unset;
}
button#lg-next-1,
button#lg-prev-1 {
  display: none;
}

.lg-outer .lg-thumb-item {
  border-radius: 8px;
  outline: none;
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: goldenrod !important;
}
.position-relative {
  width: 100%;
  max-width: 1200px;
}
#car-makemodel {
  margin-top: 10px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.shopebyMake {
  padding: 0px 30px 0px 50px;
}
.them-chose-premium-icon i {
  font-size: 20px;
}

/* Inventory Detail  */
/* Layout */
.main-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.left-column {
  width: 100%;
  height: 0%;
  margin-bottom: 40px;
}

.right-column {
  flex: 1 1 400px;
  min-width: 320px;
}

/* Image container */
.image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 700px;
}

.image-wrapper img.main-image {
  display: block;
  border-radius: 12px;
  width: 100%;
  height: 600px;
}

/* Labels top-left */
.labels-top-left {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}

.label-featured {
  background-color: #b8860b;
  color: black;
  font-weight: 600;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 6px;
  user-select: none;
}

.label-available {
  background-color: #3ee8b5;
  color: black;
  font-weight: 600;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 6px;
  user-select: none;
}

/* Arrows */
.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(55, 55, 55, 0.7);
  border: none;
  color: #ccc;
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-btn:hover {
  background-color: rgba(55, 55, 55, 0.9);
}

.arrow-left {
  left: 12px;
}

.arrow-right {
  right: 12px;
}

/* Image count bottom-right */
.image-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ccc;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 8px;
  user-select: none;
}

/* Thumbnails container */
.thumbnails {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  justify-content: center;
  align-items: center;
}

.thumbnail-btn {
  flex: 0 0 auto;
  width: 96px;
  height: 64px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumbnail-btn img {
  width: 100%;
  object-fit: cover;
}

.thumbnail-btn.active {
  border-color: #b8860b;
}

/* Placeholder thumbnails */
.thumbnail-placeholder img {
  object-fit: contain;
  padding: 3px;
}

/* Right column headings */
.car-title {
  font-weight: 800;
  font-size: 28px;
  color: white;
  margin: 0 0 6px 0;
}

.car-subtitle {
  font-size: 14px;
  color: #999;
  margin: 0 0 12px 0;
}

.car-price {
  font-weight: 800;
  font-size: 28px;
  color: #b8860b;
  margin: 0 0 24px 0;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  color: #b8860b;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-card i {
  font-size: 20px;
  margin-bottom: 8px;
}

.stat-value {
  font-weight: 700;
  font-size: 18px;
  color: white;
  margin: 2px;
}

.stat-label {
  font-size: 12px;
  color: #999;
  margin: 2px;
}

.action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  width: 100%;
  justify-content: center;
}

.btn-contact {
  background-color: #b8860b;
  border: none;
  color: black;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease;
}

.btn-contact:hover {
  background-color: #a77f0a;
}

.btn-testdrive {
  background-color: transparent;
  border: 2px solid #b8860b;
  color: #b8860b;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-testdrive:hover {
  background-color: #b8860b;
  color: black;
}

.btn-finance {
  background-color: transparent;
  border: 2px solid #444;
  color: #999;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-finance:hover {
  background-color: #222;
  color: #ccc;
}

/* Description box */
.description-box {
  margin: 20px 0px;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
}

.description-box h2 {
  margin: 0 0 12px 0;
  font-weight: 700;
  color: white;
  font-size: 18px;
}

.description-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
}

/* Tabs container */
.tabs {
  margin-top: 48px;
  display: inline-flex;
  background-color: #222;
  border-radius: 12px;
  padding: 8px 12px;
  gap: 12px;
  font-size: 13px;
}

.tab-btn {
  background-color: transparent;
  border: none;
  color: #ccc;
  padding: 6px 14px;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-weight: 400;
}

.tab-btn:hover {
  color: white;
}

.tab-btn.active {
  background-color: #b8860b;
  color: black;
  font-weight: 700;
}

/* Tab content grid */
.tab-content {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Cards inside tab content */
.card {
  background-color: #222;
  border-radius: 12px;
  color: #ccc;
  font-size: 14px;
}

.card h3 {
  font-weight: 400;
  font-size: 16px;
  color: #ccc;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card h3 i {
  font-size: 18px;
  color: #b8860b;
}

/* Warranty info dl */
.card dl {
  margin: 0;
}

.card dl div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card dl div:last-child {
  margin-bottom: 0;
}

.card dl dt {
  font-weight: 400;
}

.card dl dd {
  color: #888;
  margin: 0;
}

/* Service history list */
.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.card ul li:last-child {
  margin-bottom: 0;
}

.card ul li i {
  color: #3bbf7f;
  font-size: 16px;
}

/* Condition report dl */
.condition-dl div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.condition-dl div:last-child {
  margin-bottom: 0;
}

.condition-dl dt {
  font-weight: 400;
}

.condition-dl dd {
  margin: 0;
}

.condition-badge {
  background-color: #14532d;
  color: #4ade80;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  user-select: none;
}

.inentoryHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Privacy Plicy page Css  */

a.back-home:hover {
  background-color: #2a2a2a;
  color: #e5e5e5;
  text-decoration: none;
}

.header-icon svg {
  stroke: #d4b94f;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  height: 1.5rem;
  width: 1.5rem;
}
h1.title {
  color: #d4b94f;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0;
  line-height: 1.2;
}
.last-updated {
  color: #555555;
  font-size: 0.75rem;
}
.section-subtitle {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: #d4d4d4;
}
.icon-box {
  color: #d4b94f;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-right: 0.75rem;
}
.icon-box svg {
  stroke: #d4b94f;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 1.5rem;
  height: 1.5rem;
}
.list-custom {
  font-size: 0.875rem;
  color: #d4d4d4;
  padding-left: 1.25rem;
}
.list-custom li {
  margin-bottom: 0.25rem;
}
.list-custom li span {
  font-size: 14px;
  font-weight: 600;
}
hr.divider {
  border-color: #333333;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.text-yellow {
  color: #d4af37;
}
.icon-large {
  font-size: 1.5rem;
}
.list-disc {
  list-style-type: disc;
  padding-left: 1.25rem;
}
.list-inside {
  list-style-position: inside;
}
.text-gray-light {
  color: #9ca3af;
}
.card-custom {
  background-color: #1f1f1f;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.icon-color-yellow {
  color: #d4af37;
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}
.small-text {
  font-size: 0.75rem;
}
.note-box {
  background-color: #2c2c2c;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  color: #e5e7eb;
}
.badge-green {
  color: #22c55e;
  border: 1px solid #22c55e;
  font-size: 0.625rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}
.badge-yellow {
  color: #fbbf24;
  border: 1px solid #fbbf24;
  font-size: 0.625rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}
.badge-red {
  color: #dc2626;
  border: 1px solid #dc2626;
  font-size: 0.625rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}
hr {
  border-color: #444444;
}
.btn-outline-light-custom:hover {
  color: white;
  border-color: #d1d5db;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .OverAll-Background {
    padding: 16px 20px;
  }
  .tab-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .image-wrapper img.main-image {
    height: unset;
  }
  .main-flex {
    flex-direction: column;
  }
  .vehicleHistory {
    flex-direction: row;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .left-column,
  .right-column {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .image-wrapper {
    height: unset;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-content {
    grid-template-columns: 1fr;
  }

  .inentoryHeader {
    flex-direction: column;
  }
  .d-md-flex {
    flex-direction: column !important;
  }
  .gap-md-5 {
    gap: 1.5rem !important;
  }
}

/* details section of car  */

/* body.unique-body {
  margin: 0;
  background-color: #0a0a0a;
  color: #d1d5db;
  font-family: "Inter", sans-serif;
  padding: 24px;
  line-height: 1.4;
} */

.unique-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

button.unique-tag {
  background-color: #d6b42a;
  color: black;
  font-size: 13px;
  font-weight: 400;
  border: none;
  border-radius: 9999px;
  padding: 4px 12px;
  width: fit-content;
  cursor: default;
}

/* Overview Section */
.unique-overview {
  background-color: #161616;
  border-radius: 12px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.unique-overview h3 {
  font-weight: 600;
  font-size: 14px;
  color: white;
  margin: 0 0 12px 0;
}

.unique-overview ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unique-overview li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}

.unique-overview li i {
  color: #d6b42a;
  font-size: 14px;
}

/* Specifications Section */
.unique-specifications {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.unique-spec-box {
  background-color: #161616;
  border-radius: 12px;
  padding: 24px;
  font-size: 14px;
  color: #d1d5db;
}

.unique-spec-box h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: white;
  margin: 0 0 16px 0;
}

.unique-spec-box h4 i {
  color: #d6b42a;
  font-size: 16px;
}

.unique-warranty-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px 12px;
  align-items: center;
}

.unique-warranty-grid span:nth-child(3n) {
  text-align: right;
}

.unique-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unique-service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #d1d5db;
}

.unique-service-list li i {
  color: #00a651;
  font-size: 14px;
}

.unique-condition-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px 12px;
  align-items: center;
}

.unique-condition-grid span:nth-child(3n) {
  background-color: #007a33;
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  padding: 2px 8px;
  text-align: center;
  width: fit-content;
}

/* Features Section */
.unique-features {
  background-color: #161616;
  border-radius: 12px;
  padding: 24px;
  font-size: 14px;
  color: #d1d5db;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.unique-features h4 {
  background-color: #d6b42a;
  color: black;
  font-size: 13px;
  font-weight: 400;
  border-radius: 9999px;
  padding: 4px 12px;
  width: fit-content;
  margin-bottom: 12px;
}

.unique-feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-bottom: 1px solid #2c2c2c;
  padding-bottom: 8px;
  gap: 12px;
}

.unique-feature-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.unique-feature-row span:first-child {
  white-space: nowrap;
}

.unique-feature-row span:nth-child(2) {
  font-weight: 600;
  color: white;
  text-align: right;
  word-break: break-word;
}

.vehicleHistory {
  margin: 0 auto;
  background-color: #1e1e1e;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vehicleHistory__left,
.vehicleHistory__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vehicleHistory__title {
  font-weight: 600;
  color: #d1d1d1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  margin: 0;
}

.vehicleHistory__list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #d1d1d1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vehicleHistory__list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
}

.vehicleHistory__list-item i {
  color: #22c55e;
  font-size: 16px;
  flex-shrink: 0;
}

.vehicleHistory__button {
  background-color: #2a2a2a;
  border: none;
  color: #d1d1d1;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease;
  font-weight: 400;
  width: max-content;
}

.vehicleHistory__button:hover {
  background-color: #3a3a3a;
}

.vehicleHistory__button i {
  font-size: 14px;
}

.vehicleHistory__card {
  background-color: #2a2a2a;
  border-radius: 8px;
  padding: 16px;
  color: #d1d1d1;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vehicleHistory__card p {
  margin: 0;
}

.vehicleHistory__card-title {
  font-weight: 600;
  font-size: 14px;
}

.image-wrapper {
  height: 70vh;
  max-height: 70vh;
  width: 100%;
}

.image-wrapper img#mainImage {
  width: 100%;
  height: 70vh;
  background-repeat: no-repeat;
  background-size: contain !important;
}

/* Theme Style css is here  */
:root {
  --Theme-card: #1a1a1d;
}
.theme-heading {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 42px;
  align-items: center;
  background: linear-gradient(94.7deg, #d4af37 40%, #e5e4e2 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: sans-serif;
}
.ThemeHeadingPrice {
  font-style: normal;
  font-weight: 600;
  font-size: 42px;
  line-height: 42px;
  align-items: center;
  background: linear-gradient(94.7deg, #d4af37 40%, #e5e4e2 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: sans-serif;
}

.car-price {
  font-style: normal;
  font-weight: 600;
  font-size: 42px;
  line-height: 42px;
  align-items: center;
  background: linear-gradient(94.7deg, #d4af37 40%, #e5e4e2 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: sans-serif;
}
.balckThemButton button {
  outline: none;
  color: white;
  background-color: black;
  padding: 7px 12px;
  border: 1px solid white;
  border-radius: 5px;
}

.theme-subheading {
  font-style: normal;
  font-weight: 400;
  font-size: 17.5px;
  line-height: 28px;
  align-items: center;
  color: white;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.Theme-cardTitle {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Inventory List Styling */

.inventoryCardTheme {
  background: #1a1a1d;
  flex-direction: row;
}

/* Contact styling is here  */

.form-select {
  background-color: #2a2a2a;
  border: none;
  color: #ccc;
}
.form-select::placeholder {
  color: #6b6b6b;
}

.form-select:focus {
  background-color: #2a2a2a;
  color: #fff;
  border: 2px solid #d4af37;
  outline: none;
  box-shadow: none;
}

.icon-bg-yellow {
  background-color: #3c2f00;
  color: #d4af37;
  border-radius: 0.375rem;
  padding: 0.375rem 0.5rem;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
hr {
  border-color: #444;
}

.location-icon {
  color: #d4af37;
  font-size: 1.1rem;
  margin-right: 0.5rem;
}
.small-text-gray {
  color: #ccc;
  font-size: 0.875rem;
}
.small-text-gray strong {
  color: #fff;
}
.showroom-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}
.showroom-overlay i {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.showroom-btn:hover {
  filter: brightness(110%);
  color: black;
}
.form-label {
  font-size: 0.8rem;
}
.form-text {
  font-size: 0.875rem;
  color: #ccc;
}
.contact-icon {
  color: #d4af37;
  font-size: 1rem;
  margin-right: 0.5rem;
}

.location-details i {
  color: #d4af37;
  font-size: 0.9rem;
  margin-right: 0.3rem;
}

@media (min-width: 640px) {
  .unique-overview {
    grid-template-columns: 1fr 1fr;
  }
  .showroom-overlay {
    font-size: 0.9rem;
  }
  .showroom-btn {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }
  .unique-specifications {
    grid-template-columns: repeat(3, 1fr);
  }

  .unique-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .unique-feature-row {
    grid-template-columns: auto 1fr;
  }

  .image-wrapper img.main-image {
    height: unset;
  }

  .image-wrapper {
    height: unset;
  }

  .image-wrapper {
    height: unset;
  }
}

@media (max-width: 430px) {
  .unique-feature-row span:nth-child(2) {
    text-align: left;
  }
  .heroSection {
    padding: 0px !important;
  }
  .brandSlider {
    padding: 0px 0px;
  }
  .carfax.Theme-button img {
    height: 15px;
  }
  .image-wrapper img#mainImage {
    height: 30vh;
  }
  .image-wrapper img.main-image {
    height: unset;
  }

  .inentoryHeader {
    flex-direction: column;
  }

  .image-wrapper {
    height: unset;
  }

  .btn-contact,
  .btn-finance,
  .btn-testdrive {
    padding: 6px 9px;
    font-size: 12px;
    font-weight: 600;
    height: 30px;
    line-height: 30px;
  }

  .inentoryHeader {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
  }
  .car-title {
    font-size: 20px;
  }
  .stat-value {
    font-size: 14px;
  }
}

@media only screen and (max-width: 430px) {
  .custom-card {
    border-radius: 10px;
    padding: 1.8rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-height: 369px;
    margin: 50px auto;
  }
  .card-custom {
    padding: 0.5rem;
    margin-bottom: 2rem;
  }
  .theme-heading {
    font-size: 24px !important;
  }
  .Theme-section {
    padding: 20px;
    overflow: hidden;
  }

  .carButton {
    display: flex;
    flex-direction: column;
    margin-top: 3px;
  }
  .carButton .detailButton,
  .carButton .balckThemButton {
    width: 100%;
  }
  .details {
    padding: 10px;
  }
  .carButton .detailButton button,
  .carButton .balckThemButton button,
  .certified-badge button,
  .Theme-button {
    font-size: 12px;
    padding: 6px 9px;
  }
  .shopebyMake {
    padding: 0px 10px 0px 10px;
  }
  .car-info-overlay {
    top: 0%;
    right: unset;
    left: 0%;
    color: white;
    padding: 30px 10px 10px 10px;
    z-index: 10;
    pointer-events: none;
    row-gap: 40px;
  }
  .car-gallery-container {
    padding: 5px;
  }
  .ThemeHeadingPrice {
    font-size: 18px;
  }
  /* Home page brand carousel */
  .carousel-container {
    margin: 0 0px;
  }
  .carousel-control.prev {
    left: 0px;
  }
  .carousel-control.next {
    right: 0px;
  }

  .car-price {
    font-size: 20px !important;
    margin: -10px 0px -10px 0px;
  }
  .car-specs {
    display: flex;
    gap: 5px;
    margin-top: 3px;

    flex-wrap: wrap;
  }
  .carmakeModel {
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    margin: 0px;
  }
  #footer {
    padding: 20px;
  }
  .otherHeading {
    margin-top: 20px;
  }

  .inline-gallery-container {
    height: 50vh;
  }
  .lg-object.lg-image {
    top: -10%;
    height: 50vh;
  }
  .position-relative {
    width: 100%;
    max-width: 100%;
  }
  .lg-thumb-item {
    width: 250px !important;
    height: 150px !important;
  }
}


/* Footer styling is here  */
    a.social-icon {
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.375rem;
      background-color: #2a2a2a;
      color: #d4af37;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    a.social-icon.linkedin {
      background-color: #d4af37;
      color: #b38f00;
    }
    a.social-icon:hover {
      color: #f0d86b;
    }
    a.social-icon.linkedin:hover {
      color: #f7e28b;
    }
    .footer-link {
      color: #ccc;
      font-size: 0.875rem;
      text-decoration: none;
    }
    .footer-link:hover {
      text-decoration: underline;
      color: #fff;
    }
    .footer-heading {
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 1rem;
      color: white;
    }
    .footer-text {
      font-size: 0.875rem;
      color: #ccc;
      line-height: 1.5;
      max-width: 280px;
    }
    .footer-contact-icon {
      color: #d4af37;
      margin-right: 0.75rem;
      min-width: 18px;
      text-align: center;
    }
    .brand-card p {
    margin-bottom: 0px;
}
    .footer-contact-text {
      font-size: 0.875rem;
      color: #ccc;
      line-height: 1.3;
    }
    .footer-bottom {
      border-top: 1px solid #2a2a2a;
      font-size: 0.75rem;
      color: #888;
      padding-top: 1rem;
      padding-bottom: 1rem;
    }
    .footer-bottom a {
      color: #888;
      text-decoration: none;
      margin-left: 1.5rem;
    }
    .footer-bottom a:hover {
      color: #fff;
      text-decoration: underline;
    }



