/* /public_html/css/components/breadcrumb.css */
/* FitHasti Breadcrumb Component */

.fh-breadcrumb {
    width: 100%;
    margin: 0 0 18px;
    direction: rtl;
    font-family: inherit;
}

.fh-breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;

    margin: 0;
    padding: 0;
    list-style: none;
}

.fh-breadcrumb__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #8a8f9c;
    font-size: 13px;
    line-height: 1.8;
}

.fh-breadcrumb__item:not(:last-child)::after {
    content: "/";
    color: #c7ccd8;
    font-size: 13px;
}

.fh-breadcrumb__link {
    color: #7b8190;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fh-breadcrumb__link:hover {
    color: #ec4899;
}

.fh-breadcrumb__current {
    color: #202433;
    font-weight: 700;
}

@media (max-width: 640px) {
    .fh-breadcrumb {
        margin-bottom: 14px;
    }

    .fh-breadcrumb__item {
        font-size: 12px;
    }
}

@media (max-width: 820px) {
    .fh-breadcrumb {
        position: static;
        top: auto;
        z-index: auto;
        margin-bottom: 14px;
        padding-bottom: 0;
        background: transparent;
    }
}