
    .range-red {
      -webkit-appearance: none;
      width: 100%;
      height: 6px;
      background: #212221;
      border-radius: 9999px;
    }
    .range-red::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 18px;
      height: 18px;
      background: #212221;
      border-radius: 9999px;
      cursor: pointer;
      border: 2px solid white;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .filter-checkbox {
      accent-color: #212221;
      width: 13px;
      height: 13px;
      border:1pt solid #212221;
      margin-right: 0.5rem;
    }
    .scrollbar-thin::-webkit-scrollbar {
      width: 4px;
    }
    .scrollbar-thin::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    .scrollbar-thin::-webkit-scrollbar-thumb {
      background: #cbd5e1;
      border-radius: 20px;
    }
    /* thumbnail carousel */
    .thumbnail-container {
      display: flex;
      gap: 6px;
      overflow: hidden;
      scroll-behavior: smooth;
      transition: transform 0.2s;
    }
    .thumbnail-item {
      flex: 0 0 auto;
      width: calc(25% - 4.5px); /* 4 thumbnails with gap */
      height: 45px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      transition: border 0.1s;
    }
    .thumbnail-item.active {
      border-color: #212221;
    }
    .thumbnail-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .thumb-scroll-btn {
      background: white;
      border-radius: 9999px;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      cursor: pointer;
      color: #374151;
      font-size: 12px;
      transition: all 0.1s;
    }
    .thumb-scroll-btn:hover {
      background: #f3f4f6;
    }
    .thumb-scroll-btn.disabled {
      opacity: 0.3;
      pointer-events: none;
    }
    /* list view adjustments */
    .list-view .card-item {
      display: flex;
      flex-direction: row;
      gap: 1rem;
    }
    .list-view .carousel-main {
      width: 200px;
      height: 140px;
      flex-shrink: 0;
    }
    .list-view .thumbnail-strip {
      width: 200px;
    }
    #sortMenu{
      backdrop-filter: blur(1px) saturate(150%);
      -webkit-backdrop-filter: blur(1px) saturate(158%);
      background-color: rgba(255, 255, 255, 0.52);
      border-radius: 0px;
      border: 2px solid rgba(255, 255, 255, 0.8);
    }

    /* ================= HERO BASE ================= */
.inventory-hero-section {
  background-color: #0b0c0d;
  background-image: url("./image/Auto_Inventory_Hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.inventory-hero-inner {
  max-width: 1920px;
  margin: 0 auto;
  height: 680px;
  display: flex;
  align-items: center;
}

/* breadcrumb  */
  .card{
    padding-top: 90px;
    padding-bottom: 50px;
  }
  .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0px;
  }
  .crumb {
    display: inline-flex;
    align-items: center;
    font-size: 16pt;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #635f5e;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.2s ease;
    background: transparent;
    line-height: 1.4;
  }
  .crumb:not(.last) {
    cursor: pointer;
  }

  .crumb:not(.last):hover {
    text-decoration: underline;
  }
  .crumb.last {
    color: #212221;
    font-weight: 400;
    pointer-events: none;
  }
  .separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16pt;
    font-weight: 400;
    line-height: 1;
    margin: 0 0.1rem;
    width: 1.2rem;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    user-select: none;
  }
.addtoCompare input[type="radio"]:checked::after {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	top: 49%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: #212221;
}
.addtoCompare input[type="radio"] {
	appearance: none;
	width: 22px;
	height: 22px;
	border: 2px solid #212221;
	border-radius: 50%;
	margin-right: 8px;
	position: relative;
	cursor: pointer;
}

/* ================= SECTION ================= */
.here-section {
  background: #dde1e7;
  padding-top: 360px;
  padding-bottom: 200px;
}

/* ================= CONTAINER ================= */
.here-container {
  max-width: 1920px;
  margin: 0 auto;
  padding-left: 70px;
  padding-right: 70px;
  display: flex;
  justify-content: space-between;
  gap: 170px;
  font-family: "DM Sans", sans-serif;
}

/* ================= LEFT ================= */
.here-left {
  width: 100%;
}

/* ================= TITLE ================= */
.here-title {
  font-size: 110px;
  line-height: 1em;
}

/* ================= DESC ================= */
.here-desc {
  font-size: 24pt;
  line-height: 1.5em;
  max-width: 723px;
  margin-top: 42px;
  display: flex;
  flex-direction: column;
}
.here-desc span{
  margin-top: 35px;
}
.here-right {
  width: 100%;
}

.here-right img {
  width: 100%;
  height: auto;
}
.live-chat-btn{
  position: relative;
  margin-top: 40px;
}
.live-chat-btn span {
	position: absolute;
	left: 51px;
	top: 24px;
	font-size: 18pt;
  font-family: "DM Sans", sans-serif;
}
.filter-checkbox {
  -webkit-appearance: none;
  appearance: none;

  width: 22px;
  height: 22px;
  border: 2px solid #212221;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Hover */
.filter-checkbox:hover {
  border-color: black;
}

/* Checked state */
.filter-checkbox:checked {
  background-color: #212221;
  border-color: #212221;
}

/* Checkmark */
.filter-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}


/* ===== CUSTOM PROPERTIES (from your Tailwind config) ===== */
:root {
  --primary-500: #212221;
  --secondary-400: #C5CAD1;
  --gray-light: #e2e8f0;
  --white: #ffffff;
  --font-dm: 'DM Sans', sans-serif;
  --gray-500: #6B7280; 
}

.hidden {
  display: none !important;
}

.header-container {
  z-index: 30;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-dm);
  flex: 1 1 0%;
  gap: 15px;
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  gap: 15px;
}

@media (min-width: 1024px) {
  .header-left {
    gap: 20px;
  }
}

.search-filters-btn {
  display: flex;
  align-items: center;
  color: var(--primary-500);
  padding: 8px 20px;
  border-radius: 9999px;
  border: 2pt solid var(--primary-500);
  height: 55px;
  font-weight: 400;
  font-size: 15pt;
  line-height: 1em;
  text-transform: uppercase;
  background: transparent;
}

@media (min-width: 1024px) {
  .search-filters-btn {
    padding: 12px 40px;
    height: 70px;
    font-size: 18pt;
  }
}

.sort-btn {
  display: flex;
  align-items: center;
  color: var(--primary-500);
  padding: 8px 20px;
  border-radius: 9999px;
  border: 2pt solid var(--primary-500);
  height: 55px;
  font-weight: 400;
  font-size: 15pt;
  line-height: 1em;
  text-transform: uppercase;
  background: transparent;
}

/* ===== UTILITY CLASSES (keep for JS toggling) ===== */
.hidden {
  display: none !important;
}
/* ===== MAIN LAYOUT ===== */
.main-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
@media (min-width: 1024px) {
  .main-layout {
    flex-direction: row;
  }
}
/* ===== SIDEBAR ===== */
.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  min-width: 328px;
  background-color: var(--secondary-500);
  transform: translateX(-100%);
  transition: transform 300ms ease-in-out;
  padding: 1.25rem;
  height: 100%;
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: thin;
  background: #dde1e7;
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}
.sidebar::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.sidebar::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

/* @media (min-width: 1024px) {
  .sidebar {
    position: static;
    transform: translateX(0);
    max-height: none;
    overflow-y: visible;
  }
} */

.sidebar.open {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
}

.sidebar-title {
  text-transform: uppercase;
  color: var(--primary-500);
  font-size: 28pt;
  font-weight: 400;
  font-family: var(--font-dm);
}
.close-sidebar-btn {
  display: block;
  color: var(--gray-500);
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .close-sidebar-btn {
    display: none;
  }
}
/* ===== FILTER SECTIONS CONTAINER ===== */
.filter-sections {}

.filter-sections > * + * {
  margin-top: 0.25rem;
}
.filter-section {
  padding: 0.75rem 0;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.filter-section .section-header {
  border-bottom: 1px solid var(--primary-500);
}
.section-title {
  font-size: 16pt;
  color: var(--primary-500);
  font-family: var(--font-dm);
}
.toggle-icon {
  color: var(--primary-500);
  font-size: 0.875rem; /* text-sm */
}
/* ===== COLLAPSIBLE CONTENT ===== */
.collapsible-content {
  margin-top: 0.75rem;
}
.collapsible-content > * + * {
  margin-top: 0.75rem;
}
.filter-input {
  width: 100%;
  border: 1pt solid var(--primary-500);
  padding: 0.25rem 0.75rem;
  font-size: 18px;
  outline: none;
  box-sizing: border-box;
}

.filter-input:focus {
  outline: none;
  ring: none;
}
.brand-list {
  max-height: 600px;
  overflow-y: auto;
  font-size: 16pt;
  scrollbar-width: thin;
}

.brand-list > * + * {
  margin-top: 0.5rem;
}
.brand-list::-webkit-scrollbar {
  width: 6px;
}
.brand-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.brand-list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}
/* ===== FILTER LABEL ===== */
.filter-label {
  display: flex;
  align-items: center;
  gap: 0.25rem; /* gap-1 */
  font-size: 16pt;
  cursor: pointer;
}

.filter-label-text {
  flex: 1 1 0%;
}

.filter-count {
  color: var(--primary-500);
  font-size: 16pt;
}

/* ===== FILTER CHECKBOX ===== */
.filter-checkbox {
  margin: 0;
}
/* ===== RANGE SLIDER (range-red) ===== */
/* ===== RANGE LABEL ===== */
.range-label {
  display: flex;
  justify-content: flex-start;
  font-size: 0.875rem;
  color: #4B5563;
}
.main-content {
  flex-grow: 1;
  min-width: 0;
}
.product-section {
  padding: 0;
}
/*     // Render all cards with thumbnail carousel */
.promo-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-title {
  font-weight: 400;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--primary-500);
  font-family: var(--font-dm);
}

@media (min-width: 1024px) {
  .promo-title {
    font-size: 64px;
  }
}
.promo-text {
  font-size: 24px;
  color: var(--primary-500);
  margin-top: 0.75rem;
  line-height: 1.625;
}

@media (min-width: 1024px) {
  .promo-text {
    font-size: 32px;
  }
}
.promo-button {
  margin-top: 1.25rem;
  width: 254px;
  height: 55px;
  padding: 0;
  border: 2pt solid var(--primary-500);
  background-color: transparent;
  border-radius: 9999px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15pt;
  letter-spacing: 0.025em;
  color: var(--primary-500);
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .promo-button {
    height: 72px;
    padding: 0.75rem 1rem;
    font-size: 18pt;
  }
}
.promo-button:hover {
  background-color: var(--primary-500);
  color: white;
}

.card-item {
  display: flex;
  flex-direction: column;
  position: relative;
}
/* ===== FAVORITE ICON ===== */
.favorite-icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 20;
  color: #212221;
  font-size: 1.25rem;
  transition: color 0.15s ease;
}
.favorite-icon:hover {
  color: #212221;
}
/* ===== MAIN IMAGE CONTAINER ===== */
.main-image-container {
  width: 100%;
  height: 281px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* ===== THUMBNAIL STRIP ===== */
.thumb-strip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: -60px;
  margin-bottom: 18px;
  padding: 0 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 720px) {  /* md */
  .thumb-strip {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 1024px) { /* lg */
  .thumb-strip {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Scroll buttons */
.thumb-scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;         /* adjust as needed */
  height: 24px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: white;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.2s;
}
.thumb-scroll-btn:hover {
  background: rgba(0,0,0,0.8);
}

/* Thumbnail wrapper */
.thumb-wrapper {
  flex: 1 1 0%;        /* flex-1 */
  overflow: hidden;
}

/* Thumbnail container */
.thumbnail-container {
  display: flex;
  gap: 0.375rem;       /* gap-1.5 */
}

/* ===== CARD DETAILS ===== */
.card-details {
  margin-top: 0.5rem;  /* mt-2 */
}

/* Card title */
.card-title {
  font-weight: 600;
  font-size: 19.31pt;
  color: #363736;
  font-family: var(--font-dm, 'DM Sans', sans-serif);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Specs container */
.card-specs {
  font-size: 19pt;
  color: #212221;
  margin-top: 0.25rem;   /* mt-1 */
}
.card-specs p {
  margin: 0;
}
.card-specs p + p {
  margin-top: 0.125rem;  /* space-y-0.5 */
}

/* Price */
.card-price {
  margin-top: 0.5rem;    /* mt-2 */
  color: #000000;
  font-size: 19pt;
}
.card-price span {
  font-weight: 600;
  color: #363736;
  font-family: var(--font-dm, 'DM Sans', sans-serif);
}

/* Stock */
.card-stock {
  font-size: 19pt;
  color: #212221;
  margin-top: 0.25rem;   /* mt-1 */
}
.card-stock p {
  margin: 0;
}

/* Add to compare wrapper */
.compare-wrapper {
  display: flex;
  align-items: center;
  margin-top: 1rem;      /* mt-4 */
  margin-bottom: 1rem;   /* mb-4 */
}

/* Radio button */
.compare-radio {
  margin-right: 0.5rem;  /* mr-2 */
  accent-color: #212221; /* red-500 */
  border: 2px solid #212221;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

/* Label */
.compare-label {
  font-size: 14pt;
  font-weight: 600;
  color: #363736;
  font-family: var(--font-dm, 'DM Sans', sans-serif);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .product-section {
    padding: 2rem; /* lg:p-8 = 2rem */
  }
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}

@media (min-width: 380px) { /* sm */
  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 720px) { /* md */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1370px) { /* xl */
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1600px) { /* 2xl */
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== PAGINATION ===== */
.pagination-wrapper {
  margin-top: 3rem; /* mt-12 = 3rem */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 170px; /* pt-[170px] */
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== PAGE BUTTONS ===== */
.page-btn {
  width: 45px;
  height: 45px;
  border: 1.4pt solid var(--primary-500);
  border-radius: 9999px;
  background: transparent;
  font-size: 22px;
  color: var(--primary-500);
  font-family: var(--font-dm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page-btn:hover{
  background: var(--white);
}

.page-btn.active {
  background-color: var(--white);
}

@media (min-width: 1024px) {
  .page-btn {
    width: 66px;
    height: 66px;
    font-size: 25px;
  }
}

/* ===== PAGINATION ARROWS ===== */
.pagination-arrow {
  width: 45px;
  height: 45px;
  border: 1.4pt solid var(--primary-500);
  border-radius: 9999px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pagination-arrow img {
  width: 18px;
  margin: auto;
}

.pagination-arrow:hover {
  background-color: var(--white);
}

.prev {
  transform: rotate(180deg);
}
.sidebar.translate-x-0 {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .pagination-arrow {
    width: 66px;
    height: 66px;
  }
}
@media (min-width: 1024px) {
  .sort-btn {
    padding: 12px 40px;
    height: 70px;
    font-size: 18pt;
  }
}
.btn-icon {
  width: 25px;
  padding-left: 10px;
}
@media (min-width: 1024px) {
  .btn-icon {
    width: 35px;
  }
}

.view-toggle {
  display: flex;
  gap: 15px;
}

.view-btn {
  height: 55px;
  width: 55px;
  padding: 0;
  border-radius: 9999px;
  border: 2pt solid var(--primary-500);
  color: var(--primary-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .view-btn {
    height: 71px;
    width: 71px;
    padding: 16px;
  }
}

.list-view-btn {}

.view-icon {
  width: 25px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .view-icon {
    width: auto;
  }
}

.sort-dropdown {
  position: relative;
}

.sort-menu {
  position: absolute;
  right: 0;
  margin-top: 0.5rem; 
  width: 14rem;
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  z-index: 50;
}

.sort-item {
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.05em; 
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--primary-500);
}

.sort-item:hover {
  background-color: #d7dbe1;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1536px) {
  .here-title {
    font-size: 50pt;
  }
}

@media (max-width: 1370px) {
  .here-container {
    padding-left: 30px;
    padding-right: 30px;
    flex-direction: column;
  }
  .here-desc {
    max-width: 100%;
    font-size: 18pt;
  }
}

@media (max-width: 1024px) {
  .here-title {
    font-size: 40pt;
  }
  .here-desc {
    font-size: 18pt;
  }
  .here-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
}


/* ================= RESPONSIVE ================= */

/* Tablet / Mobile */
@media (max-width: 1024px) {

}

/* Small Mobile */
@media (max-width: 600px) {

}
@media (max-width: 550px) {
}