.sync-vehicle-products h2 {
  font-family: Oswald, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.sync-vehicle-products .product-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1200px) {
  .sync-vehicle-products .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .sync-vehicle-products .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .sync-vehicle-products .product-grid {
    grid-template-columns: 1fr;
  }
}
.sync-vehicle-products .product-card {
  display: block;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .08);
  transition: transform .18s ease, box-shadow .18s ease;
  overflow: hidden;
  border-radius: 5px;
}
.sync-vehicle-products .product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}
.sync-vehicle-products .product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: #fff;
  overflow: hidden;
}
.sync-vehicle-products .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.sync-vehicle-products .product-code-pill {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #171717;
  color: #ef7d00;
  border-radius: 999px;
  font-weight: 700;
  padding: 0px 15px;
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.9;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .25);
  pointer-events: none;
}
.sync-vehicle-products .product-terninated {
  position: absolute;
  background: #000000bf;
  color: #ef7d00;
  font-weight: 700;
  padding: 0px 15px;
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.9;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .25);
  pointer-events: none;
  left: 0px;
  width: 100%;
  height: 100%;
  top: 0;
  align-items: center;
  display: flex;
  justify-content: center;
}
.sync-vehicle-products .product-title-ribbon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  display: flex;
  align-items: center;
  padding-left: 24px;
  padding-right: 60px;
  background-color: transparent;
  background-image: linear-gradient(118deg, #ef7d00 81%, #ffffff03 82%);
  color: #111;
  z-index: 1;
}
.sync-vehicle-products .product-title-ribbon::after {
  content: "";
  position: absolute;
  right: -88px;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 42px solid transparent;
  border-bottom: 42px solid transparent;
  border-left: 88px solid #F2A20D;
}
.sync-vehicle-products .product-title {
  text-align: left !important;
  font-family: 'Overpass', sans-serif !important;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -1.4px;
  font-variation-settings: "wght" 400, "wdth" 100, "SOFT" 0;
  text-transform: inherit !important;
  margin-top: 2px;
  line-height: 0.9;
}
.sync-vehicle-products .product-card:focus-visible {
  outline: 3px solid #ffb000;
  outline-offset: 2px;
}
.sync-vehicle-products .raven-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin: 1.25rem 0;
  font-family: "Roboto", Arial, sans-serif;
}
.sync-vehicle-products .rp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 .6rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  color: #111827;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  transition: all .15s ease;
  font-weight: 500;
}
.sync-vehicle-products .rp-link:hover {
  border-color: #d1d5db;
  transform: translateY(-1px);
}
.sync-vehicle-products .rp-link.is-active {
  background: #F28C00;
  color: #fff;
  border-color: #F28C00;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(242, 140, 0, .25);
  cursor: default;
}
.sync-vehicle-products .rp-link.is-disabled {
  opacity: .4;
  pointer-events: none;
}
.sync-vehicle-products .rp-edge,
.sync-vehicle-products .rp-step {
  font-weight: 700;
  min-width: 2.25rem;
}
@media (max-width: 480px) {
  .sync-vehicle-products .raven-pager {
    gap: .35rem;
  }
  .sync-vehicle-products .rp-link {
    min-width: 2rem;
    height: 2rem;
    padding: 0 .5rem;
  }
}
