/* Breadcrumbs Navigation */
.breadcrumbs-wrapper {
    margin: 0 0 30px 0;
    padding: 15px 0;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin: 0 10px;
    color: #999;
    font-size: 18px;
    font-weight: 300;
}

.breadcrumbs a {
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 5px 0;
}

.breadcrumbs a:hover {
    color: #d32f2f;
    text-decoration: underline;
}

.breadcrumbs a:focus {
    outline: 2px solid #d32f2f;
    outline-offset: 2px;
}

/* Ostatnia pozycja - aktualna strona */
.breadcrumbs li:last-child a {
    color: #333;
    font-weight: 500;
    /* pointer-events: none; */
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumbs-wrapper {
        margin-bottom: 20px;
        padding: 10px 0;
    }
    
    .breadcrumbs {
        font-size: 13px;
    }
    
    .breadcrumbs li:not(:last-child)::after {
        margin: 0 7px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .breadcrumbs {
        font-size: 12px;
    }
    
    .breadcrumbs li:not(:last-child)::after {
        margin: 0 5px;
    }
}

/* Wydruk - ukryj breadcrumbs */
@media print {
    .breadcrumbs-wrapper {
        display: none;
    }
}