.breadcrumb {
    width: 100%;
    display: flex;
    justify-content: center;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-family: var(--montserrat);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
	white-space: nowrap;
    color: var(--color-taupe);
    opacity: 0.8;
}

.breadcrumb-item a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.breadcrumb-item a:hover {
    opacity: 1;
}

.breadcrumb-current {
    opacity: 1;
    font-weight: 600;
}

.breadcrumb-separator {
    color: var(--color-taupe);
    opacity: 0.5;
    user-select: none;
    flex-shrink: 0;
}

/* Tablette */
@media (max-width: 768px) {
    
    .breadcrumb-list {
        gap: 6px;
        font-size: 11px;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex-wrap: nowrap;
    }
    
    .breadcrumb-list::-webkit-scrollbar {
        display: none;
    }
}

/* Mobile - Scroll horizontal */
@media (max-width: 480px) {
    .breadcrumb {
        justify-content: flex-start;
        margin-bottom: 20px;
    }
    
    .breadcrumb-list {
        gap: 6px;
        font-size: 10px;
        letter-spacing: 0.8px;
        flex-wrap: nowrap;
    }
}
