
/*
  Sizing, opacities and easings below are the OEM's own, read off
  suzuki.com.au's stylesheet (.model-carousel-2025-refresh) rather than
  eyeballed, so the deck reads identically at every breakpoint.
*/
.szk-picker[data-v-1f485d86] {
  position: relative;
  text-align: center;
  overflow: hidden;
  background: #fff;
  padding: 45px 0 55px;
}
.szk-picker__heading[data-v-1f485d86] {
  font-family: "Loos Extd Bd", "SuzukiSlider", Helvetica, Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #121212;
  margin: 0;
  letter-spacing: 0.5px;
}

/*
  The deck is a flex row pushed sideways so the chosen car lands dead centre.

  `left: 50%` puts the track's origin at the middle of the section, then the
  transform pulls it back by the active item's centre — (i + 0.5) item widths.
  Because both the offset and the `.is-active` flag come from the same
  `activeIndex`, the centred car and the copy below it cannot drift apart.
*/
.szk-picker__viewport[data-v-1f485d86] {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  /* Slot width. The hero is scaled up past its slot and the neighbours are
     scaled down, so the slot has to be wide enough that a 1.45x hero still
     clears a 0.7x ghost — see the note on --img-w below. */
  --item-w: 320px;
  --img-w: 240px;
}
.szk-picker__track[data-v-1f485d86] {
  position: relative;
  left: 50%;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(calc(-1 * (var(--i) + 0.5) * var(--item-w)));
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.szk-picker__item[data-v-1f485d86] {
  flex: 0 0 var(--item-w);
  width: var(--item-w);
}
.szk-picker__img[data-v-1f485d86] {
  padding: 0 20px;
  margin-bottom: 15px;
  transform: scale(0.7);
  opacity: 0.2;
  cursor: pointer;
  transition: transform 300ms linear, opacity 300ms linear;
}
.szk-picker__img.is-active[data-v-1f485d86] {
  transform: scale(1.45);
  opacity: 1;
  cursor: default;
}

/*
  The rendered width, before scaling. It is deliberately well under --item-w:
  at 1.45x the hero is ~1.45*--img-w wide, the ghosts ~0.7*--img-w, and the
  slot has to swallow half of each plus a gap or the hero grows over the top
  of its neighbours. These pairs are set so the geometry matches what
  suzuki.com.au actually renders — hero ~810px with ghosts ~390px sitting
  ~160px clear of it at desktop width.
*/
.szk-picker__img img[data-v-1f485d86] {
  width: 100%;
  max-width: var(--img-w);
  height: auto;
  margin: 0 auto;
  display: block;
}

/* White scrims that feather the ghosts out toward the page edges. */
.szk-picker__fade[data-v-1f485d86] {
  position: absolute;
  top: 50%;
  width: 22vw;
  max-width: 420px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
  background: linear-gradient(270deg, #fff 27.19%, rgba(255, 255, 255, 0) 91.23%);
}
.szk-picker__fade--left[data-v-1f485d86] {
  left: 0;
  transform: matrix(-1, 0, 0, 1, 0, 0) translateY(-50%);
}
.szk-picker__fade--right[data-v-1f485d86] {
  right: 0;
}
.szk-picker__arrow[data-v-1f485d86] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #121212;
  color: #121212;
  background: #fff;
  transition: background-color 300ms ease, color 300ms ease;
}
.szk-picker__arrow[data-v-1f485d86]:hover {
  background: #121212;
  color: #fff;
}
.szk-picker__arrow[data-v-1f485d86] {
  padding: 0;
  cursor: pointer;
}
.szk-picker__arrow--prev[data-v-1f485d86] {
  left: 4vw;
}
.szk-picker__arrow--next[data-v-1f485d86] {
  right: 4vw;
}
.szk-picker__content[data-v-1f485d86] {
  margin-top: 30px;
}
.szk-picker__logo[data-v-1f485d86] {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
  The dealer's logo assets are a mix: some white (Swift, Jimny, Ignis,
  S-Cross), some already black (Fronx, Vitara), one pale blue (e-Vitara).
  The OEM's are uniformly black on white. Every asset is a transparent PNG or
  SVG, so flattening to black normalises the set — without it the white ones
  are invisible on this section's white background.
*/
.szk-picker__logo img[data-v-1f485d86] {
  max-width: 135px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 100%;
  filter: brightness(0);
}
.szk-picker__logo-text[data-v-1f485d86] {
  font-family: "Loos Extd Bd", "SuzukiSlider", Helvetica, Arial, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  color: #121212;
}
.szk-picker__text[data-v-1f485d86] {
  font-family: "TT Commons Pro Bold", "TTCommons_Bold", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #121212;
  margin: 20px 0 25px;
}
.szk-picker__buttons[data-v-1f485d86] {
  font-size: 0;
}
.szk-picker__buttons .szk-cta[data-v-1f485d86] {
  margin: 0 5px 10px;
}
@media (min-width: 1025px) {
.szk-picker__heading[data-v-1f485d86] {
    font-size: 24px;
}
.szk-picker__viewport[data-v-1f485d86] {
    --item-w: 760px;
    --img-w: 560px;
}
.szk-picker__logo[data-v-1f485d86] {
    height: 65px;
}
.szk-picker__logo img[data-v-1f485d86] {
    max-width: 220px;
}
.szk-picker__text[data-v-1f485d86] {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
    margin: 35px 0 20px;
}
}
@media (max-width: 1024px) {
.szk-picker__viewport[data-v-1f485d86] {
    --item-w: 320px;
    --img-w: 240px;
}
}
@media (max-width: 640px) {
.szk-picker__arrow[data-v-1f485d86] {
    width: 44px;
    height: 44px;
}
}

