.single-product .hm-breadcrumb {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 13px;
  overflow: hidden;
  border: 1px solid rgba(196, 122, 68, .14);
  border-radius: 16px;
  background: linear-gradient(120deg, #fff, #fffaf6);
  box-shadow: 0 8px 26px rgba(76, 45, 27, .045);
  color: #8b817a;
  white-space: nowrap;
}

.single-product .hm-breadcrumb a,
.single-product .hm-breadcrumb-current {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  color: #786e67;
  line-height: 1.5;
}

.single-product .hm-breadcrumb-home {
  flex: 0 0 auto;
  gap: 7px;
  padding: 5px 9px;
  border-radius: 11px;
  background: #fff;
  color: var(--hm-brown) !important;
  box-shadow: inset 0 0 0 1px rgba(196, 122, 68, .12);
}

.single-product .hm-breadcrumb-home > i {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border-radius: 9px;
  background: rgba(196, 122, 68, .1);
  color: var(--hm-copper);
  font-size: 16px;
  line-height: 1;
}

.single-product .hm-breadcrumb-separator {
  display: grid;
  width: 20px;
  height: 28px;
  flex: 0 0 20px;
  place-items: center;
}

.single-product .hm-breadcrumb-separator svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--hm-copper);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.single-product .hm-breadcrumb-current {
  overflow: hidden;
  color: #9a9089;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .single-product .hm-breadcrumb {
    min-height: 50px;
    gap: 4px;
    padding: 6px 8px;
    border-radius: 13px;
    font-size: 9px;
  }

  .single-product .hm-breadcrumb-home {
    gap: 5px;
    padding: 4px 6px;
  }

  .single-product .hm-breadcrumb-home > i {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 14px;
  }

  .single-product .hm-breadcrumb-separator {
    width: 15px;
    flex-basis: 15px;
  }
}
