@import url("style.css");

.logo-brand {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.logo-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo-brand span {
  display: flex;
  flex-direction: column;
}

.logo-brand strong {
  font-size: 21px;
  line-height: 1;
}

.logo-brand small {
  color: #cfd0d9;
  margin-top: 4px;
  font-size: 11px;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: end;
  padding: 66px 0 24px;
}

.home-hero-content h1 {
  max-width: 780px;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: -2px;
}

.home-hero-content p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: #d9dae3;
  font-size: 20px;
  line-height: 1.45;
}

.home-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.home-hero-actions a,
.contact-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  background: #e72f27;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-hero-actions a:nth-child(2),
.contact-buttons a:nth-child(2) {
  background: #ffffff;
  color: #151726;
}

.home-trust-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.home-trust-panel span {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.home-trust-panel i {
  color: #f2c300;
}

.home-section {
  margin-bottom: 34px;
}

.home-slider-window {
  overflow: hidden;
  width: 100%;
}

.home-slider-track {
  display: flex;
  gap: 18px;
  transition: transform 0.25s ease;
  will-change: transform;
}

.home-slider-track .card {
  flex: 0 0 calc((100% - 36px) / 3);
  cursor: default;
}

.slider-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-controls button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: #151726;
  color: #ffffff;
  cursor: pointer;
}

.slider-controls button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.home-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 999px;
  background: #f2c300;
  color: #151726;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-card-description {
  min-height: 46px;
  margin: 0 0 10px !important;
  line-height: 1.45;
  white-space: pre-wrap;
}

.home-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 34px;
  border-radius: 4px;
  background: #151726;
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
}

.why-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-grid article,
.testimonial-grid article {
  padding: 18px;
  border: 1px solid #e8e9ef;
  border-radius: 8px;
  background: #ffffff;
}

.why-grid i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #151726;
  color: #f2c300;
  margin-bottom: 14px;
}

.why-grid h3 {
  margin: 0 0 8px;
  color: #37536d;
  font-size: 16px;
}

.why-grid p,
.testimonial-grid p {
  margin: 0;
  color: #777d89;
  font-size: 13px;
  line-height: 1.55;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #f2c300;
  letter-spacing: 1px;
}

@media (max-width: 1100px) {
  .home-hero-content {
    grid-template-columns: 1fr;
  }

  .home-slider-track .card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .why-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .home-hero-content {
    padding-top: 34px;
  }

  .home-hero-content h1 {
    font-size: 38px;
  }

  .home-hero-content p:not(.eyebrow) {
    font-size: 17px;
  }

  .home-slider-track .card,
  .why-grid,
  .testimonial-grid {
    flex-basis: 100%;
    grid-template-columns: 1fr;
  }

  .slider-controls {
    margin-top: 12px;
  }
}

.nav-bar {
  position: relative;
  justify-content: center;
}

.logo-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-bar nav {
  margin-left: auto;
}

.home-slider-window {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.home-slider-window::before,
.home-slider-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 74px;
  pointer-events: none;
}

.home-slider-window::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.home-slider-window::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.home-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: rgba(21, 23, 38, 0.72);
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}

.home-slider-arrow:hover {
  background: rgba(231, 47, 39, 0.88);
}

.home-slider-arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.home-slider-prev {
  left: 8px;
}

.home-slider-next {
  right: 8px;
}

.slider-controls {
  display: none;
}

@media (max-width: 760px) {
  .logo-brand {
    position: static;
    transform: none;
  }

  .nav-bar {
    justify-content: space-between;
  }

  .nav-bar nav {
    margin-left: 0;
  }

  .home-slider-window::before,
  .home-slider-window::after {
    width: 42px;
  }
}

.review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 210px;
  padding: 18px;
  border: 1px solid #e8e9ef;
  border-radius: 8px;
  background: #ffffff;
}

.review-stars {
  color: #f2c300;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.review-card h3 {
  margin: 0 0 4px;
  color: #37536d;
  font-size: 16px;
}

.review-date {
  margin: 0 0 12px;
  color: #777d89;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.review-card p:last-child {
  margin: 0;
  color: #555c68;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 760px) {
  .review-card {
    flex-basis: 100%;
  }
}

.home-nav-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.centered-logo {
  grid-column: 2;
  position: static !important;
  left: auto !important;
  transform: none !important;
  justify-self: center;
}

.centered-logo img {
  width: 270px;
  max-width: 42vw;
  height: auto;
  object-fit: contain;
}

.home-nav-bar nav {
  grid-column: 3;
  justify-self: end;
  margin-left: 0 !important;
}

.home-slider-track .card,
.review-card {
  flex: 0 0 calc((100% - 36px) / 3);
}

.saved-home-section[hidden] {
  display: none;
}

#savedNavLink[hidden] {
  display: none;
}

@media (max-width: 1100px) {
  .home-slider-track .card,
  .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 760px) {
  .home-nav-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }

  .centered-logo {
    grid-column: 1;
  }

  .centered-logo img {
    max-width: 260px;
  }

  .home-nav-bar nav {
    grid-column: 1;
    justify-self: center;
  }

  .home-slider-track .card,
  .review-card {
    flex-basis: 100%;
  }
}

.home-card-description {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-arrival-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 999px;
  background: #151726;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-arrival-badge.hot {
  background: #e72f27;
}

.home-arrival-badge.warm {
  background: #f2c300;
  color: #151726;
}

.home-slider-arrow[hidden] {
  display: none;
}

.single-spotlight-track {
  display: block;
  transform: none !important;
}

.home-spotlight-card {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(340px, 0.9fr);
  gap: 0;
  border: 1px solid #e8e9ef;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.home-spotlight-media {
  background: #22252b;
}

.home-spotlight-main-image {
  height: 560px;
  display: grid;
  place-items: center;
  background: #1f2228;
}

.home-spotlight-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.home-spotlight-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 18px;
  background: linear-gradient(90deg, #3a3d42, #2b2e33);
}

.home-spotlight-gallery button {
  flex: 0 0 64px;
  width: 64px;
  height: 54px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 7px;
  overflow: hidden;
  background: #11131f;
  cursor: pointer;
  opacity: 0.72;
}

.home-spotlight-gallery button.active {
  border-color: #ffffff;
  opacity: 1;
}

.home-spotlight-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-spotlight-details {
  padding: 22px;
  background: #ffffff;
}

.home-spotlight-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.home-spotlight-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f2c300;
  color: #151726;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-spotlight-tags .arrival-now,
.home-spotlight-tags .arrival-hot {
  background: #e72f27;
  color: #ffffff;
}

.home-spotlight-tags .arrival-warm {
  background: #f2c300;
  color: #151726;
}

.home-spotlight-tags .arrival-soft {
  background: #151726;
  color: #ffffff;
}

.home-spotlight-details h3 {
  margin: 0 0 8px;
  color: #252832;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.8px;
}

.home-spotlight-price {
  display: block;
  margin-bottom: 18px;
  color: #252832;
  font-size: 24px;
}

.home-spotlight-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  padding: 18px 0;
  border-top: 1px solid #e8e9ef;
  border-bottom: 1px solid #e8e9ef;
}

.home-spotlight-meta div {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #252832;
  font-size: 15px;
  line-height: 1.35;
}

.home-spotlight-meta i {
  color: #7c808a;
  font-size: 18px;
  margin-top: 1px;
}

.home-spotlight-description {
  margin-top: 20px;
}

.home-spotlight-description h4 {
  margin: 0 0 8px;
  color: #252832;
  font-size: 21px;
}

.home-spotlight-description p {
  max-height: 170px;
  overflow: auto;
  margin: 0;
  color: #555c68;
  font-size: 15px;
  line-height: 1.5;
  white-space: pre-wrap;
}

.home-spotlight-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.home-spotlight-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  background: #e72f27;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-spotlight-actions a:nth-child(2) {
  background: #151726;
}

@media (max-width: 1000px) {
  .home-spotlight-card {
    grid-template-columns: 1fr;
  }

  .home-spotlight-main-image {
    height: 430px;
  }
}

@media (max-width: 640px) {
  .home-spotlight-main-image {
    height: 320px;
  }

  .home-spotlight-details h3 {
    font-size: 28px;
  }

  .home-spotlight-meta {
    grid-template-columns: 1fr;
  }
}

.single-spotlight-window .home-slider-arrow {
  display: none !important;
}

.single-spotlight-track {
  display: block;
  transform: none !important;
}

.home-spotlight-card {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.72fr) minmax(
      260px,
      0.55fr
    );
  border: 1px solid #e8e9ef;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.home-spotlight-media {
  min-width: 0;
  background: #24272d;
}

.home-spotlight-main-image {
  height: 560px;
  display: grid;
  place-items: center;
  background: #202328;
}

.home-spotlight-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.home-spotlight-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 16px;
  background: linear-gradient(90deg, #3a3d42, #2b2e33);
}

.home-spotlight-gallery button {
  flex: 0 0 66px;
  width: 66px;
  height: 54px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 7px;
  overflow: hidden;
  background: #11131f;
  cursor: pointer;
  opacity: 0.72;
}

.home-spotlight-gallery button.active {
  border-color: #ffffff;
  opacity: 1;
}

.home-spotlight-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-spotlight-description-panel {
  padding: 24px;
  border-right: 1px solid #e8e9ef;
}

.home-spotlight-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.home-spotlight-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f2c300;
  color: #151726;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-spotlight-tags .arrival-now,
.home-spotlight-tags .arrival-hot {
  background: #e72f27;
  color: #ffffff;
}

.home-spotlight-tags .arrival-warm {
  background: #f2c300;
  color: #151726;
}

.home-spotlight-tags .arrival-soft {
  background: #151726;
  color: #ffffff;
}

.home-spotlight-description-panel h3 {
  margin: 0 0 8px;
  color: #252832;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.8px;
}

.home-spotlight-description-panel > strong {
  display: block;
  margin-bottom: 22px;
  color: #252832;
  font-size: 25px;
}

.home-spotlight-description h4,
.home-spotlight-facts h4 {
  margin: 0 0 12px;
  color: #252832;
  font-size: 21px;
}

.home-spotlight-description p {
  max-height: 330px;
  overflow: auto;
  margin: 0;
  color: #555c68;
  font-size: 15px;
  line-height: 1.5;
  white-space: pre-wrap;
}

.home-spotlight-facts {
  padding: 24px;
  background: #fbfbfd;
}

.home-fact-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #e8e9ef;
}

.home-fact-row i {
  color: #7c808a;
  font-size: 18px;
  margin-top: 2px;
}

.home-fact-row span {
  display: block;
  margin-bottom: 3px;
  color: #777d89;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.65px;
}

.home-fact-row strong {
  color: #252832;
  font-size: 15px;
  line-height: 1.35;
  word-break: break-word;
}

.home-spotlight-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.home-spotlight-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  background: #e72f27;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-spotlight-actions a:nth-child(2) {
  background: #151726;
}

@media (max-width: 1200px) {
  .home-spotlight-card {
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
  }

  .home-spotlight-facts {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .home-spotlight-facts h4,
  .home-spotlight-actions {
    grid-column: 1 / -1;
  }

  .home-fact-row {
    border: 1px solid #e8e9ef;
    border-radius: 8px;
    padding: 12px;
    background: #ffffff;
  }
}

@media (max-width: 850px) {
  .home-spotlight-card {
    grid-template-columns: 1fr;
  }

  .home-spotlight-main-image {
    height: 390px;
  }

  .home-spotlight-description-panel {
    border-right: 0;
    border-bottom: 1px solid #e8e9ef;
  }

  .home-spotlight-facts {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .home-spotlight-main-image {
    height: 300px;
  }

  .home-spotlight-description-panel h3 {
    font-size: 28px;
  }

  .home-spotlight-facts {
    grid-template-columns: 1fr;
  }
}

.single-spotlight-window::before,
.single-spotlight-window::after {
  display: none !important;
}

.home-nav-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.logo-brand,
.centered-logo {
  position: static !important;
  left: auto !important;
  transform: none !important;
}

.logo-brand img,
.centered-logo img {
  display: none !important;
}

.logo-brand::before {
  content: "Star Auto Group";
  display: block;
  color: #ffffff;
  font-size: 23px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.logo-brand::after {
  content: "Quality Used Vehicles";
  display: block;
  margin-top: 2px;
  color: #cfd0d9;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.home-nav-bar nav {
  margin-left: auto !important;
}

.section-view-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 4px;
  background: #151726;
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  align-items: center;
}

.home-card-actions button,
.home-spotlight-actions button {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid #e8e9ef;
  background: #fafafa;
  border-radius: 4px;
  padding: 7px 5px;
  color: #4b6f85;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.home-card-actions button:hover,
.home-spotlight-actions button:hover {
  border-color: #e72f27;
  color: #e72f27;
}

.home-spotlight-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.home-slider-window:not(.slider-active)::before,
.home-slider-window:not(.slider-active)::after {
  display: none !important;
}

@media (max-width: 760px) {
  .home-nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-nav-bar nav {
    margin-left: 0 !important;
  }
}

#featuredSection .section-heading::before,
#savedVehiclesHomeSection .section-heading::before,
#recentSection .section-heading::before {
  display: none !important;
}

#featuredSection .section-heading,
#savedVehiclesHomeSection .section-heading,
#recentSection .section-heading {
  justify-content: space-between;
}

#featuredSection .section-heading > div,
#savedVehiclesHomeSection .section-heading > div,
#recentSection .section-heading > div {
  flex: 1;
  text-align: left;
}

#featuredSection .home-slider-window,
#savedVehiclesHomeSection .home-slider-window,
#recentSection .home-slider-window {
  width: calc(100% - 36px);
  margin: 0 auto;
}

.home-compare-modal-box {
  width: min(1320px, calc(100vw - 52px));
  max-width: 1320px;
}

.home-compare-shell {
  max-width: 1320px;
  margin: 0 auto;
}

.home-compare-top-grid {
  display: grid;
  grid-template-columns: repeat(var(--compare-count), minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.home-compare-vehicle {
  display: grid;
  grid-template-rows: auto 286px auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e8e9ef;
  border-radius: 10px;
  background: #ffffff;
}

.home-compare-vehicle-title {
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(90deg, #151726, #24283a);
}

.home-compare-vehicle-title h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.home-compare-remove {
  border: 0;
  border-radius: 6px;
  padding: 8px 12px;
  background: #f2c300;
  color: #151726;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.home-compare-image-wrap {
  position: relative;
  height: 286px;
  padding: 14px;
  border-bottom: 1px solid #e8e9ef;
  background: transparent;
}

.home-compare-image {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 1px solid #e2e4eb;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
}

.home-compare-image img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
  display: block;
}

.home-compare-thumb-row {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}

.home-compare-thumb-nav,
.home-compare-image-strip button {
  pointer-events: auto;
}

.home-compare-thumb-nav {
  width: 38px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: rgba(21, 23, 38, 0.78);
  color: #ffffff;
  cursor: pointer;
}

.home-compare-image-strip {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  background: transparent;
}

.home-compare-image-strip::-webkit-scrollbar {
  display: none;
}

.home-compare-image-strip button {
  flex: 0 0 56px;
  width: 56px;
  height: 42px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  opacity: 0.34;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.22);
}

.home-compare-image-strip button.active {
  opacity: 1;
  border-color: #f2c300;
  background: rgba(255, 255, 255, 0.32);
}

.home-compare-image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-compare-detail-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 10px 16px 14px;
  background: #ffffff;
}

.home-compare-detail {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 25px;
  padding: 3px 0;
  border-bottom: 1px solid #edf0f5;
  background: transparent;
}

.home-compare-detail:last-child {
  border-bottom: 0;
}

.home-compare-detail span {
  color: #7b8190;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.home-compare-detail strong {
  color: #555c68;
  font-size: 13px;
  font-weight: 900;
}

.home-compare-detail.best strong {
  color: #047857;
}

.home-compare-detail.middle strong {
  color: #92400e;
}

.home-compare-detail.worst strong {
  color: #b91c1c;
}

@media (max-width: 900px) {
  .home-compare-top-grid {
    grid-template-columns: 1fr;
  }
}

.home-spotlight-media {
  position: relative;
}

.home-spotlight-gallery-row {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}

.home-spotlight-gallery,
.home-spotlight-gallery-row button {
  pointer-events: auto;
}

.home-spotlight-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  background: transparent !important;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.home-spotlight-gallery::-webkit-scrollbar {
  display: none;
}

.home-spotlight-gallery button {
  flex: 0 0 74px;
  width: 74px;
  height: 54px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  opacity: 0.42;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.home-spotlight-gallery button.active {
  opacity: 1;
  border-color: #f2c300;
  background: rgba(255, 255, 255, 0.32);
}

.home-spotlight-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-spotlight-gallery-nav {
  width: 38px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: rgba(21, 23, 38, 0.78);
  color: #ffffff;
  cursor: pointer;
}

.why-buy,
#featuredSection,
#savedVehiclesHomeSection,
#recentSection,
.reviews-section,
.contact-home {
  border: 1px solid #e8e9ef;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  padding-bottom: 26px;
}

.why-buy .section-heading,
#featuredSection .section-heading,
#savedVehiclesHomeSection .section-heading,
#recentSection .section-heading,
.reviews-section .section-heading,
.contact-home .section-heading {
  margin: 0 0 18px;
  padding: 16px 18px;
  border-bottom: 1px solid #e8e9ef;
  background: linear-gradient(90deg, #151726, #24283a);
  color: #ffffff;
  justify-content: space-between;
}

.why-buy .section-heading h2,
#featuredSection .section-heading h2,
#savedVehiclesHomeSection .section-heading h2,
#recentSection .section-heading h2,
.reviews-section .section-heading h2,
.contact-home .section-heading h2 {
  margin: 0 0 4px;
  color: #ffffff;
}

.why-buy .section-heading p,
#featuredSection .section-heading p,
#savedVehiclesHomeSection .section-heading p,
#recentSection .section-heading p,
.reviews-section .section-heading p,
.contact-home .section-heading p {
  color: #d9dae3;
}

.home-compare-modal-box {
  width: min(1320px, calc(100vw - 64px)) !important;
  max-width: 1320px !important;
}

.home-compare-shell {
  max-width: 1320px !important;
  margin: 0 auto !important;
}

.home-compare-top-grid {
  max-width: 1320px !important;
  margin: 0 auto !important;
}

.home-compare-top-grid {
  max-width: 1320px;
  margin: 0 auto;
}

.home-compare-top-grid[style*="--compare-count:1"] {
  display: flex !important;
  justify-content: center !important;
}

.home-compare-top-grid[style*="--compare-count:1"] .home-compare-vehicle {
  width: 420px !important;
  max-width: 420px !important;
  flex: 0 0 420px !important;
}

.why-grid article {
  display: flex;
  align-items: center;
  gap: 18px;
}

.why-grid article i {
  font-size: 30px;
  width: 42px;
  min-width: 42px;
  text-align: center;
  color: var(--yellow);
}

.why-grid article h3 {
  margin: 0 0 4px;
}

.why-grid article p {
  margin: 0;
}

.site-footer {
  margin-top: 44px;
  background: #151726;
  color: #ffffff;
  border-top: 4px solid #f2c300;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.footer-contact i {
  color: #f2c300;
  font-size: 14px;
}

.footer-contact a,
.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-links a {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #f2c300;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 9px 16px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact,
  .footer-links {
    gap: 10px;
  }
}

.home-compare-shell[style*="--compare-count:1"] .home-compare-top-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 420px) !important;
  justify-content: center !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
}

.home-compare-shell[style*="--compare-count:1"] .home-compare-vehicle {
  width: 420px !important;
  max-width: 420px !important;
  justify-self: center !important;
}

.home-compare-shell[style*="--compare-count:2"] .home-compare-top-grid {
  grid-template-columns: repeat(2, minmax(0, 420px)) !important;
  justify-content: center !important;
}

.home-compare-shell[style*="--compare-count:3"] .home-compare-top-grid {
  grid-template-columns: repeat(3, minmax(0, 420px)) !important;
  justify-content: center !important;
}

#compareModal .modal-box,
#homeCompareModal .modal-box {
  padding: 0;
  overflow: hidden;
}

#compareModal .modal-heading,
#homeCompareModal .modal-heading {
  margin: 0;
  padding: 16px 18px;
  background: linear-gradient(90deg, #151726, #24283a);
  color: #ffffff;
}

#compareModal .modal-heading h2,
#homeCompareModal .modal-heading h2 {
  color: #ffffff;
}

#compareModal .modal-heading button,
#homeCompareModal .modal-heading button {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

#compareModalBody,
#homeCompareModalBody {
  padding: 18px;
}

.site-header {
  position: relative;
  z-index: 10;
  padding: 0 26px 22px;
  background: linear-gradient(110deg, #11131f, #181827);
  color: #ffffff;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 18px;
  background: #ffffff;
  clip-path: polygon(0 100%, 50% 35%, 100% 100%);
}

.site-header .top-bar,
.site-header .nav-bar {
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.site-header .nav-bar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 18px;
  padding: 30px 0 34px;
}

.site-header .logo-brand,
.site-header .centered-logo {
  display: flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  gap: 18px;
  position: static !important;
  left: auto !important;
  transform: none !important;
  text-decoration: none;
}

.site-header .logo-brand img,
.site-header .centered-logo img {
  display: none !important;
}

.site-header .logo-brand::before,
.site-header .centered-logo::before {
  content: "Star Auto Group";
  color: #ffffff;
  font-size: 35px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.site-header .logo-brand::after,
.site-header .centered-logo::after {
  content: "Quality Used Vehicles";
  color: #d9dae3;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto !important;
}

.site-header nav a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
}

.site-header nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 2px;
  background: transparent;
}

.site-header nav a.active::before,
.site-header nav a:hover::before {
  background: #f2c300;
}

.home-hero {
  position: relative;
  min-height: 500px;
  padding: 58px 18px 44px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(15, 17, 30, 0.86), rgba(26, 25, 42, 0.72)),
    radial-gradient(
      circle at 80% 25%,
      rgba(214, 35, 28, 0.18),
      transparent 32%
    ),
    url("../images/backdrop.png") center 45% / 50% auto no-repeat,
    url("../images/logo.png") center center / 180px auto repeat,
    #151726;
  color: #ffffff;
}

.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 18px;
  background: #ffffff;
  clip-path: polygon(0 100%, 50% 35%, 100% 100%);
}

.home-hero-content {
  padding-top: 0;
}

@media (max-width: 760px) {
  .site-header .nav-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .site-header .logo-brand,
  .site-header .centered-logo {
    flex-direction: column !important;
    gap: 3px;
  }

  .site-header nav {
    margin-left: 0 !important;
  }
}

.section-heading {
  display: flex;
  align-items: center;
}

.section-heading > div:first-child {
  flex: 1;
  min-width: 0;
}

.section-heading-actions {
  margin-left: auto !important;
  width: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: flex-end !important;
  gap: 10px;
  flex-shrink: 0;
}

.section-collapse-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: #f2c300;
  color: #151726;
  cursor: pointer;
  font-size: 13px;
}

.section-collapse-btn i {
  transform: none !important;
  transition: none !important;
}

.section-collapsed > .home-slider-window,
.section-collapsed > .inventory-saved-window {
  display: none !important;
}

.section-collapsed {
  padding-bottom: 0 !important;
}

@media (max-width: 760px) {
  .section-heading {
    align-items: flex-start;
  }

  .section-heading-actions {
    margin-left: auto !important;
    width: auto !important;
  }
}

.section-heading-actions {
  margin-left: auto !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
}

.section-collapse-btn,
.saved-vehicles-head .section-collapse-btn {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: #f2c300 !important;
  color: #151726 !important;
  cursor: pointer !important;
  font-size: 13px !important;
}

.section-collapse-btn i {
  transform: none !important;
}

.section-collapsed > .home-slider-window,
.section-collapsed > .inventory-saved-window,
.home-slider-window[hidden],
.inventory-saved-window[hidden] {
  display: none !important;
}

.vehicle-page {
  max-width: none !important;
  width: 100% !important;
  padding-left: 26px !important;
  padding-right: 26px !important;
}

.vehicle-detail-shell {
  width: 100%;
}

@media (max-width: 620px) {
  .vehicle-page {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.home-card-actions button,
.home-spotlight-actions button,
.card-actions button {
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-align: center !important;
  border: 1px solid #e8e9ef !important;
  border-radius: 6px !important;
  background: #fafafa !important;
  color: #4b6f85 !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.home-card-actions button i,
.home-spotlight-actions button i,
.card-actions button i {
  width: 14px;
  min-width: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 1;
}

.home-card-actions button.saved-active,
.home-spotlight-actions button.saved-active,
.card-actions button.saved-active {
  background: #f2c300 !important;
  border-color: #f2c300 !important;
  color: #151726 !important;
}

.home-card-actions button.compare-active,
.home-spotlight-actions button.compare-active,
.card-actions button.compare-active {
  background: #151726 !important;
  border-color: #151726 !important;
  color: #ffffff !important;
}

.home-card-actions button:hover,
.home-spotlight-actions button:hover,
.card-actions button:hover {
  border-color: #e72f27 !important;
  color: #e72f27 !important;
}

.home-card-actions button.saved-active:hover,
.home-spotlight-actions button.saved-active:hover,
.card-actions button.saved-active:hover {
  color: #151726 !important;
}

.home-card-actions button.compare-active:hover,
.home-spotlight-actions button.compare-active:hover,
.card-actions button.compare-active:hover {
  color: #ffffff !important;
}

.saved-spotlight-tag {
  background: #151726 !important;
  color: #ffffff !important;
}

.home-spotlight-gallery button.active,
.home-compare-image-strip button.active {
  border-color: #f2c300 !important;
}

.home-card-actions button.compare-active,
.home-spotlight-actions button.compare-active,
.card-actions button.compare-active,
.related-actions button.compare-active,
.vehicle-side-actions button.compare-active {
  background: #f2c300 !important;
  border-color: #f2c300 !important;
  color: #151726 !important;
}

.home-card-actions button.saved-active,
.home-spotlight-actions button.saved-active,
.card-actions button.saved-active,
.related-actions button.saved-active,
.vehicle-side-actions button.saved-active {
  background: #f2c300 !important;
  border-color: #f2c300 !important;
  color: #151726 !important;
}

.home-card-actions button,
.home-spotlight-actions button,
.card-actions button,
.related-actions button,
.vehicle-side-actions button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.home-card-actions button i,
.home-spotlight-actions button i,
.card-actions button i,
.related-actions button i,
.vehicle-side-actions button i {
  width: 14px;
  min-width: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-compare-remove {
  background: #e72f27 !important;
  color: #ffffff !important;
}

.home-compare-detail {
  position: relative;
  padding: 7px 10px 7px 14px !important;
  border: 1px solid transparent;
  border-radius: 7px;
  margin-bottom: 5px;
}

.home-compare-detail.best {
  background: rgba(87, 214, 141, 0.14) !important;
  border-color: rgba(87, 214, 141, 0.38) !important;
  box-shadow: inset 4px 0 0 #047857;
}

.home-compare-detail.middle {
  background: rgba(242, 195, 0, 0.14) !important;
  border-color: rgba(242, 195, 0, 0.38) !important;
  box-shadow: inset 4px 0 0 #f2c300;
}

.home-compare-detail.worst {
  background: rgba(231, 47, 39, 0.11) !important;
  border-color: rgba(231, 47, 39, 0.3) !important;
  box-shadow: inset 4px 0 0 #e72f27;
}

.home-card-actions button,
.home-spotlight-actions button,
.card-actions button,
.related-actions button,
.vehicle-side-actions button {
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-align: center !important;
}

.home-card-actions button i,
.home-spotlight-actions button i,
.card-actions button i,
.related-actions button i,
.vehicle-side-actions button i {
  width: 16px !important;
  min-width: 16px !important;
  height: 16px !important;
  display: inline-grid !important;
  place-items: center !important;
  margin: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
}

.home-card-actions button.saved-active,
.home-card-actions button.compare-active,
.home-spotlight-actions button.saved-active,
.home-spotlight-actions button.compare-active,
.card-actions button.saved-active,
.card-actions button.compare-active,
.related-actions button.saved-active,
.related-actions button.compare-active,
.vehicle-side-actions button.saved-active,
.vehicle-side-actions button.compare-active {
  background: #f2c300 !important;
  border-color: #f2c300 !important;
  color: #151726 !important;
}

.vehicle-tile-gallery {
  position: relative;
}

.vehicle-tile-gallery-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 34px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 7px;
  background: rgba(21, 23, 38, 0.78);
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}

.vehicle-tile-gallery-btn.prev {
  left: 8px;
}

.vehicle-tile-gallery-btn.next {
  right: 8px;
}

.vehicle-tile-gallery-btn:hover {
  background: rgba(231, 47, 39, 0.9);
}

.vehicle-tile-gallery span[data-tile-gallery-count] {
  right: 10px;
  bottom: 10px;
  background: rgba(21, 23, 38, 0.86);
}

.vehicle-card-open-zone {
  cursor: pointer;
}

.vehicle-card-open-zone:hover h3 {
  color: #e72f27;
}

.related-card .vehicle-listing-image,
.related-card .vehicle-placeholder {
  height: 220px;
}

.related-card .vehicle-card-open-zone {
  cursor: pointer;
}

.related-card .vehicle-card-open-zone:hover h3,
.home-vehicle-card .vehicle-card-open-zone:hover h3 {
  color: #e72f27;
}

.home-vehicle-card .vehicle-listing-image,
.home-vehicle-card .vehicle-placeholder,
.related-card .vehicle-listing-image,
.related-card .vehicle-placeholder {
  height: 210px !important;
}

.home-vehicle-card .vehicle-listing-image img,
.related-card .vehicle-listing-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #f2f3f7 !important;
}

.vehicle-tile-gallery-btn {
  pointer-events: auto !important;
}

.vehicle-tile-gallery {
  cursor: default !important;
}

.card .vehicle-listing-image,
.card .vehicle-placeholder,
.home-vehicle-card .vehicle-listing-image,
.home-vehicle-card .vehicle-placeholder,
.related-card .vehicle-listing-image,
.related-card .vehicle-placeholder {
  height: 210px !important;
  background: #f2f3f7 !important;
}

.card .vehicle-listing-image img,
.home-vehicle-card .vehicle-listing-image img,
.related-card .vehicle-listing-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #f2f3f7 !important;
}

.vehicle-tile-gallery {
  cursor: default !important;
}

.vehicle-tile-gallery-btn {
  pointer-events: auto !important;
}

.card .vehicle-listing-image,
.home-vehicle-card .vehicle-listing-image,
.related-card .vehicle-listing-image {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 3 !important;
  display: grid !important;
  place-items: center !important;
  background: #f2f3f7 !important;
}

.card .vehicle-listing-image img,
.home-vehicle-card .vehicle-listing-image img,
.related-card .vehicle-listing-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  background: #f2f3f7 !important;
}

.card .vehicle-placeholder,
.home-vehicle-card .vehicle-placeholder,
.related-card .vehicle-placeholder {
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
}


.home-slider-window:not(.slider-active):not(.single-spotlight-window) .home-slider-track {
  justify-content: center;
  transform: none !important;
}

.home-slider-window:not(.slider-active):not(.single-spotlight-window) .home-slider-track .card,
.home-slider-window:not(.slider-active):not(.single-spotlight-window) .review-card {
  max-width: 420px;
}

.home-slider-track:empty,
.inventory-saved-track:empty {
  display: none !important;
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 16px 18px;
  }

  .site-header .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
  }

  .site-header .nav-bar {
    padding: 22px 0 26px;
  }

  .site-header .logo-brand::before,
  .site-header .centered-logo::before {
    font-size: 28px;
  }

  .site-header .logo-brand::after,
  .site-header .centered-logo::after {
    font-size: 12px;
  }

  .home-hero {
    min-height: auto;
    padding: 42px 16px 34px;
    background-size:
      min(90vw, 460px) auto,
      130px auto;
  }

  .home-hero-content {
    gap: 20px;
  }

  .why-grid article {
    align-items: flex-start;
  }

  .footer-content {
    padding: 18px 16px;
  }
}

@media (max-width: 560px) {
  .site-header .logo-brand::before,
  .site-header .centered-logo::before {
    font-size: 23px;
  }

  .site-header nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .home-hero-content h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .home-hero-actions a {
    width: 100%;
  }

  #featuredSection .home-slider-window,
  #savedVehiclesHomeSection .home-slider-window,
  #recentSection .home-slider-window {
    width: calc(100% - 16px);
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .section-heading-actions {
    width: 100% !important;
    justify-content: space-between !important;
  }

  .section-view-link {
    flex: 1;
  }

  .home-card-actions,
  .home-spotlight-actions {
    grid-template-columns: 1fr;
  }
}


.home-spotlight-gallery-row.spotlight-gallery-no-scroll {
  grid-template-columns: 1fr !important;
  justify-items: center;
}

.home-spotlight-gallery-row.spotlight-gallery-no-scroll .home-spotlight-gallery {
  width: 100%;
  justify-content: center;
}

.home-spotlight-gallery-row.spotlight-gallery-no-scroll .home-spotlight-gallery-nav {
  display: none !important;


}


.home-spotlight-tags .spotlight-badge.featured {
  background: #f2c300 !important;
  color: #151726 !important;
}

.home-spotlight-tags .spotlight-badge.saved,
.home-spotlight-tags .saved-spotlight-tag,
.inventory-card-badge.saved {
  background: #151726 !important;
  color: #ffffff !important;
}

.home-spotlight-main-image {
  overflow: hidden !important;
  background: #f2f3f7 !important;
}

.home-spotlight-main-image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #f2f3f7 !important;
}

.home-spotlight-gallery button {
  background: rgba(255, 255, 255, 0.22) !important;
}

.home-spotlight-gallery img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #f2f3f7 !important;
}