.cafe-breadcrumbs {
  width: 100%;
  margin: 56px 0 34px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--theme-border, #ded9d1);
  overflow: hidden;
  color: #8a8378;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}
.cafe-breadcrumbs__list {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.cafe-breadcrumbs__item {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
  white-space: nowrap;
}
.cafe-breadcrumbs__item + .cafe-breadcrumbs__item::before {
  content: "/";
  flex: 0 0 auto;
  color: #b6afa4;
}
.cafe-breadcrumbs__item:last-child {
  flex: 1 1 auto;
  overflow: hidden;
}
.cafe-breadcrumbs__item:last-child [aria-current="page"] {
  overflow: hidden;
  text-overflow: ellipsis;
}
.cafe-breadcrumbs a {
  color: #8a8378;
  text-decoration: none;
}
.cafe-breadcrumbs a:hover,
.cafe-breadcrumbs a:focus-visible {
  text-decoration: underline;
  color: var(--theme-text, #2f271c);
  text-underline-offset: 4px;
}
.cafe-breadcrumbs [aria-current="page"] {
  color: #9a9388;
  font-weight: 400;
}
