/* ==========================================================
   Dimar Product Hierarchy — Frontend breadcrumb
   Shortcode: [dph_breadcrumb]
   ========================================================== */

.dph-breadcrumb {
    font-size: 13px;
    line-height: 1.5;
}

.dph-bc-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.dph-bc-li {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Separatore › inserito come <span> tra i <li> */
.dph-bc-li + .dph-bc-li::before {
    content: none; /* usiamo il sep esplicito, non pseudo-elemento */
}

.dph-bc-sep {
    color: #999;
    font-size: 12px;
    user-select: none;
    line-height: 1;
}

/* ---- Elementi ---- */
.dph-bc-item {
    color: #555;
    text-decoration: none;
    white-space: nowrap;
}

a.dph-bc-item:hover {
    color: #111;
    text-decoration: underline;
}

.dph-bc-home {
    color: #777;
}

.dph-bc-parent {
    color: #555;
}

.dph-bc-default {
    color: #888;
    font-style: italic;
}

.dph-bc-current {
    color: #111;
    font-weight: 600;
}
