/**
 * Hyva Theme - Breadcrumbs CSS Override
 * RTL support for Arabic + Hyva-compatible icons
 */

.replacebreadcrumbs {
    display: flex !important;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    /* RTL: align to right */
    direction: rtl;
    justify-content: flex-start;
    margin-right: 20px;
}

.replacebreadcrumbs a {
    color: #858585;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.replacebreadcrumbs a:hover {
    color: #EE3E54;
    text-decoration: none;
}

span.breadcrumbsseparator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    color: #858585;
    font-size: 12px;
}

/* Use SVG arrow for separator - works without icon fonts */
span.breadcrumbsseparator::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10' fill='none'%3E%3Cpath d='M5 1L1 5L5 9' stroke='%23858585' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
