.breadcrumbs {
    font-family: 'tildasans', sans-serif;
    font-size: 14px;
    color: #000;
    margin-bottom: 15px;
}

.breadcrumbs a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Общий фон блока убираем, оставляем только «плавающую» панель */
.t503 {
  background-color: transparent !important;
}

/* Основная плашка меню */
.t503 .t503__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;

  margin: 10px 8px 14px;
  padding: 8px 10px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);           /* эффект стекла */
}

/* Один пункт меню */
.t503 .t503__item {
  flex: 1 0 auto;
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;

  text-decoration: none !important;
}

/* Иконки (svg / картинки) */
.t503 .t503__item svg,
.t503 .t503__item img {
  display: block;
  width: 22px;
  height: 22px;
}

/* Подпись под иконкой */
.t503 .t503__item-title {
  font-family: "Lora", Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3b3b3b;
  white-space: nowrap;
}

/* Состояние наведения (для тех, кто с мышью) */
@media (hover:hover) {
  .t503 .t503__item:hover .t503__item-title {
    color: #117243;
  }
}

/* Активный пункт (класс t-active ставится Тильдой) */
.t503 .t503__item.t-active .t503__item-title {
  color: #117243;
}

.t503 .t503__item.t-active svg path,
.t503 .t503__item.t-active svg rect,
.t503 .t503__item.t-active svg circle {
  fill: #117243;
  stroke: #117243;
}

/* Убираем некрасивый скролл, если пунктов много */
.t503 .t503__wrapper {
  scrollbar-width: none;
}
.t503 .t503__wrapper::-webkit-scrollbar {
  display: none;
}
