.breadcrumb-nav {
  font-size: 1.25em;
  white-space: nowrap;
  margin-left: 64px;
  position: relative; /* or absolute/fixed/sticky depending on your layout needs */
}


.breadcrumb-nav ol,
.breadcrumb-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  max-width: calc(var(--page-width, 1320px) + var(--gutter) * 2);
}


.breadcrumb-nav li {
  display: inline-flex;
  align-items: center;
  color: rgb(174, 2, 12);
  font-weight: 1000;
}

/* Automatic divider between list items */
.breadcrumb-nav li::after {
  content: "›";
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  color: rgb(174, 2, 12);
}

.breadcrumb-nav li:last-child::after {
  content: "";
}

.breadcrumb-nav li:last-child {
  color: #AE020C;
  pointer-events: none;
  font-weight: 600;
}

.breadcrumb-nav a {
  color: #686868;
  text-decoration: none;
  font-weight: 400;
}

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





/*.breadcrumb-nav.is-collection {
position: absolute;
}*/

.breadcrumb-nav li:last-child a {
  color: #AE020C;
  pointer-events: none;
  cursor: default;
  font-weight: 600;
  text-decoration: none;
}

/* Pasted from assets/product-page.css
}*/

  .product-breadcrumbs .breadcrumbs {
    width: calc(100% - var(--product-info-width));
    padding-inline-end: var(--product-column-padding);
    overflow: visible;
  }
  .product-breadcrumbs + .product-main .product-media,
.product-breadcrumbs + .product-main .product-info {
    padding-top: 0;
  }
  .product-breadcrumbs + .product-main .product-info::before,
.product-breadcrumbs + .product-main .product-info::after {
    top: calc(-10 * var(--space-unit) - 1em - 2px);



/*.Product breadcrumb hidden by right panel issue: fix*/
.breadcrumb-nav.is-product,
.breadcrumb-nav.is-collection {
  width: 100%;
  max-width: calc(var(--page-width, 1320px) + var(--gutter) * 2);
  margin: 16px auto;
  margin-left: 64px; /* ← Add this line */
  padding: 0 var(--gutter);
}

