/* ==========================================================================
   BOKAJA DESIGN SYSTEM — TARGETED FIXES
   Append-only patch file for issues found during review
   ========================================================================== */

/* FIX: Category page has duplicate headers.
   The full mega-menu header has id="siteHeader".
   The duplicate simplified header has no id.
   Hide the duplicate. */
header.site-header:not([id="siteHeader"]) {
  display: none !important;
}

/* FIX: Product page rating stars overlap with score number.
   Ensure stars and score are on separate lines with proper gap. */
.rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-1, 0.25rem);
}
.rating__stars {
  display: block;
  margin-bottom: var(--space-1, 0.25rem);
}
.product-card__meta .stars {
  display: block;
  margin-bottom: var(--space-2, 0.5rem);
}
.product-card__meta .stars__count {
  display: block;
}

/* FIX: Product page breadcrumb centering — force full-width center */
.breadcrumb {
  text-align: center !important;
  justify-content: center !important;
}
.breadcrumb ol,
.breadcrumb ol li {
  justify-content: center !important;
}
nav.breadcrumb {
  width: 100%;
  display: flex;
  justify-content: center !important;
}
nav.breadcrumb ol {
  width: 100%;
  justify-content: center !important;
}
