/* ============================================================
   ICONIC Human Design Education, PMA — Breadcrumbs
   Warm Cosmic Bento aesthetic. Gold/teal styling.
   ============================================================ */

#ico-breadcrumbs-root {
  position: relative;
  z-index: 100;
}

.ico-breadcrumbs {
  width: 100%;
  padding: 0.55rem 1.75rem;
  background: rgba(26, 15, 31, 0.6);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ico-bc-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

.ico-bc-item {
  display: flex;
  align-items: center;
  line-height: 1;
}

/* Separator icon */
.ico-bc-sep-item {
  color: rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
}
.ico-bc-sep {
  width: 12px;
  height: 12px;
  color: rgba(212, 175, 55, 0.35);
  flex-shrink: 0;
}

/* Clickable links */
.ico-bc-link {
  font-size: 0.75rem;
  color: #8A7A6A;
  text-decoration: none;
  font-family: 'Inter', 'Manrope', 'Barlow', sans-serif;
  font-weight: 400;
  padding: 0.15rem 0.3rem;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.ico-bc-link:hover {
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.08);
}

/* Section label (non-linked middle crumbs) */
.ico-bc-text {
  font-size: 0.75rem;
  color: #6A6060;
  font-family: 'Inter', 'Manrope', 'Barlow', sans-serif;
  font-weight: 400;
  padding: 0.15rem 0.3rem;
  white-space: nowrap;
}

/* Current page (last crumb) */
.ico-bc-current span {
  font-size: 0.75rem;
  color: #00BFA5;
  font-family: 'Inter', 'Manrope', 'Barlow', sans-serif;
  font-weight: 500;
  padding: 0.15rem 0.3rem;
  white-space: nowrap;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

/* Mobile: slightly more compact */
@media (max-width: 768px) {
  .ico-breadcrumbs {
    padding: 0.45rem 1rem;
  }
  .ico-bc-link,
  .ico-bc-text,
  .ico-bc-current span {
    font-size: 0.7rem;
  }
  .ico-bc-sep {
    width: 10px;
    height: 10px;
  }
}

/* Light mode overrides */
[data-theme="light"] .ico-breadcrumbs {
  background: rgba(250, 246, 240, 0.8);
  border-bottom-color: rgba(212, 175, 55, 0.15);
}
[data-theme="light"] .ico-bc-link {
  color: #8A7A6A;
}
[data-theme="light"] .ico-bc-link:hover {
  color: #B8940A;
  background: rgba(212, 175, 55, 0.1);
}
[data-theme="light"] .ico-bc-text {
  color: #9A8A7A;
}
[data-theme="light"] .ico-bc-current span {
  color: #009A88;
}
[data-theme="light"] .ico-bc-sep {
  color: rgba(212, 175, 55, 0.4);
}
