/* --------------------------
   Gallery (TOP)
   -------------------------- */

.kfz-gallery {
  display: grid;
  gap: 12px;
}

.kfz-gallery__main {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e9ecef;
}

.kfz-gallery__img {
  width: 100%;
  height: auto;
  display: block;
}

/* BIG, BOLD arrows */
.kfz-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.92);
  font-size: 34px;        /* <-- größer */
  font-weight: 900;       /* <-- fett */
  line-height: 38px;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
}

.kfz-gallery__prev { left: 12px; }
.kfz-gallery__next { right: 12px; }

.kfz-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 6px 2px;
  scroll-snap-type: x mandatory;
}

.kfz-gallery__thumb {
  flex: 0 0 auto;
  width: 86px;
  height: 86px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  background: #fff;
  scroll-snap-align: start;
  display: block;
}

.kfz-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kfz-gallery__thumb.is-active {
  outline: 3px solid rgba(13,110,253,.25);
  border-color: rgba(13,110,253,.35);
}

/* Fitment table area fine-tuning */
.kfz-fitment__table .table-responsive {
  margin: 0;
}
