/* =============================================================================
   breadcrumb.css — مسار التنقّل الموحّد للخبير التقني
   المستهدَف: nav.ek-breadcrumb فقط — لا يؤثر على أي عنصر آخر في الموقع
   ============================================================================= */

/* ── الحاوية الرئيسية ── */
nav.ek-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 6px 0 20px;
    padding: 0;
    list-style: none;
    font-size: 13px;
    line-height: 1;
}

/* ── كل عنصر = كبسولة ── */
nav.ek-breadcrumb a,
nav.ek-breadcrumb span.ek-bc-current {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f4f4f5;
    color: #6b7280;
    text-decoration: none;
    padding: 8px 7px;
    border-radius: 7px;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

nav.ek-breadcrumb a:hover {
    background: #eceef0;
    color: #c62828;
}

/* ── العنصر الحالي (آخر خطوة) ── */
nav.ek-breadcrumb span.ek-bc-current {
    background: #ececec;
    color: #1a1a1a;
    font-weight: 600;
    cursor: default;
}

/* ── الفاصل ── */
nav.ek-breadcrumb span.ek-bc-sep {
    color: #d1d5db;
    font-size: 20px;
    line-height: 1;
    user-select: none;
    padding: 0 1px;
}

/* ── أيقونة البيت ── */
nav.ek-breadcrumb .ek-bc-home-icon {
    font-size: 12px;
    line-height: 1;
}
