.oem-section-title {
  text-align: center;
  font-size: 13px;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: Arial, sans-serif;
}
.oem-slider-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 10px;
}
.oem-track {
  display: flex;
  gap: 20px;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: stretch;
}
.oem-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 260px;
  background: #fafafa;
  border: 0px solid #e2e2e2;
  border-radius: 0px;
  padding: 36px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.oem-card:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(0,0,0,0.13);
}
.oem-card-brand {
  font-size: 17px;
  font-weight: 800;
  font-style: italic;
  color: #111111;
  letter-spacing: 0.02em;
  text-align: center;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oem-card-sub {
  font-size: 12px;
  color: #888888;
  text-align: center;
  line-height: 1.5;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oem-card-screen {
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
  margin: 12px 0;
  flex-shrink: 0;
}
.oem-card-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.oem-see-link {
  text-decoration: none;
  display: inline-block;
  margin-top: 14px;
  flex-shrink: 0;
}
.oem-see-btn {
  background: #f28f15;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 11px 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.15s;
  font-family: Arial, sans-serif;
}
.oem-see-btn:hover {
  background: #d97d0e;
}
.oem-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.oem-arr {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background 0.15s;
}
.oem-arr:hover {
  background: #f0f0f0;
}
/* Tablet: 3 cards */
@media (max-width: 960px) {
  .oem-card {
    flex: 0 0 calc(33.33% - 14px);
    min-width: 0;
  }
}
/* Small tablet: 3 cards */
@media (max-width: 700px) {
  .oem-card {
    flex: 0 0 calc(33.33% - 14px);
    min-width: 0;
  }
}
/* Mobile: 2 cards per slide */
@media (max-width: 480px) {
  .oem-card {
    flex: 0 0 calc(50% - 10px);
    width: calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: 0;
    padding: 20px 10px 16px;
  }
  .oem-card-brand {
    font-size: 12px;
    min-height: 40px;
  }
  .oem-card-sub {
    font-size: 10px;
    min-height: 30px;
  }
  .oem-see-btn {
    padding: 9px 16px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  /* ✅ ONLY CHANGE — hide arrows on mobile */
  .oem-nav { display: none; }
}