/* Public site breadcrumbs – RTL-safe, high visibility */
.sj-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #475569;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  z-index: 2;
}

.sj-breadcrumb--visible {
  width: 100%;
  box-sizing: border-box;
}

.sj-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sj-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sj-breadcrumb li + li::before {
  content: "›";
  color: #94a3b8;
  font-weight: 600;
  speak-as: none;
}

[dir="rtl"] .sj-breadcrumb li + li::before {
  content: "‹";
}

.sj-breadcrumb a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.sj-breadcrumb a:hover {
  text-decoration: underline;
}

.sj-breadcrumb [aria-current="page"] {
  color: #0f172a;
  font-weight: 600;
}

.shop-container > .sj-breadcrumb,
.info-content > .sj-breadcrumb {
  max-width: none;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

main > .sj-breadcrumb {
  margin-top: 0;
}

@media (max-width: 600px) {
  .sj-breadcrumb {
    font-size: 0.82rem;
    padding: 0.55rem 0.75rem;
  }
}
