/* ==========================================================================
   Breadcrumbs — refined, editorial trail (WooCommerce / Storefront)
   "Accueil › Animaux › Corbeau" — muted links, soft chevron, strong current.
   ========================================================================== */

/* Storefront wraps the trail in .storefront-breadcrumb with a large margin; drop it. */
.storefront-breadcrumb { margin: 0; }

.woocommerce-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.6em;
  font-family: var(--jl-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--jl-ink); /* the current (last) item — no link, strongest */
}

/* Links: muted, no underline; bordeaux + underline on hover */
.woocommerce-breadcrumb a {
  color: var(--jl-text-50);
  text-decoration: none;
  transition: color .15s ease;
}
.woocommerce-breadcrumb a:hover {
  color: var(--jl-bordeaux);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Drop Storefront's Font Awesome home icon — keep it text-only and clean */
.woocommerce-breadcrumb a:first-child::before { content: none; }

/* Separator: replace the "/" (and Storefront's FA chevron) with a soft "›" */
.woocommerce-breadcrumb .breadcrumb-separator {
  margin: 0 12px;
  font-size: 0; /* hide the literal " / " text node */
}
.woocommerce-breadcrumb .breadcrumb-separator::after {
  content: "\203A"; /* › */
  font-family: var(--jl-sans);
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: var(--jl-text-40);
}
