@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== CONTAINER (оставляем как у тебя) ===== */
.breadcrumb-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px; /* как у container */
}

/* ===== В ОДНУ СТРОКУ (ВАЖНО) ===== */
.breadcrumb-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;

  white-space: nowrap;   /* 🔥 всегда в линию */
  overflow-x: auto;      /* если не влазит — скролл */
  overflow-y: hidden;
}

/* ===== ЭЛЕМЕНТ ===== */
.breadcrumb-item {
  display: inline-block;
  margin: 5px;
  vertical-align: middle;
}

/* ===== ОСНОВНАЯ ПЛАШКА (ТВОЙ СТИЛЬ) ===== */
.breadcrumb-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 40px;
  height: 20px;

  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #252525;
  background: #fff;

  border-radius: 7px;

  transform: skew(-21deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.26);

  transition: all 0.3s ease;

  text-decoration: none;
}

/* текст обратно */
.breadcrumb-badge span {
  display: inline-block;
  transform: skew(21deg);
}

/* ===== HOVER (заменил фиолетовый на голубой) ===== */
.breadcrumb-badge:hover {
  background: #0073c6;
  color: #fff;
}

/* ===== CURRENT ===== */
.breadcrumb-badge.current {
  opacity: 0.6;
  pointer-events: none;
}

/* ===== MOBILE ===== */
@media all and (max-width: 1000px) {
  .breadcrumb-badge {
    height: 35px;
    padding: 0 30px;
    font-size: 13px;
  }
}

@media all and (max-width: 710px) {
  .breadcrumb-badge {
    height: 30px;
    padding: 0 20px;
    font-size: 11px;
  }
}